↧
Answer by Mr.Wizard for How to simplify Sqrt[1/x] Sqrt[x]?
That is only true if C (in your short example) is positive, therefore you must instruct Mathematica to make such assumptions:FullSimplify[expr, Λ> 0]1You could also do this with...
View ArticleHow to simplify Sqrt[1/x] Sqrt[x]?
In my expression, there appear terms of the form A^(B Sqrt[1/C] Sqrt[C]). Mathematica doesn't realize that this is just simply A^B. I tried telling it explicitly by some replacement rule. This works...
View Article