I get conjugates in output when running this:
Clear[X];
X:={x1,x2,x3};
Assuming[{Element[X, Reals]},StandardDeviation[X]]
What is wrong with the code?
I get conjugates in output when running this:
Clear[X];
X:={x1,x2,x3};
Assuming[{Element[X, Reals]},StandardDeviation[X]]
What is wrong with the code?
Assuming[{Element[X, Reals]}, StandardDeviation[X] // Simplify]is what you are looking for. – m_goldberg Dec 25 '15 at 15:07