I want to get the Real part of this expression - shouldn't be too hard to evaluate. Why is Mathematica not evaluating but returning the same code?
In == Re[χ/(1 + I ω τ)]
Out == Re[χ/(1 + I ω τ)]
Thank you!
I want to get the Real part of this expression - shouldn't be too hard to evaluate. Why is Mathematica not evaluating but returning the same code?
In == Re[χ/(1 + I ω τ)]
Out == Re[χ/(1 + I ω τ)]
Thank you!
Look at the documentation for Re, under Possible Issues
Re can stay unevaluated for numeric arguments:
{Re[Log[2 + I]], Re[Sqrt[1 + I]]}
To get around this, try using Re[ComplexExpand[χ/(1 + I ω τ)]].
ComplexExpand did): Refine[Re[ComplexExpand[\[Chi]/(1+I \[Omega] \[Tau])]],{\[Chi],\[Omega],\[Tau]}\[Element]Reals]
– seismatica
Dec 07 '14 at 08:02