How would I simplify $\sqrt{x^3y^2}$ where $x>0$ and $y<0$? The answer key says $-xy\sqrt x$ but I don't understand the answer.
-
Thanks for helping me with the formatting! – John Kim Aug 19 '17 at 01:46
-
Remember the basic definitions. $\sqrt{a^2}=|a|$ and $|a| = a$ if $a>0$ and $|a|=-a$ if $a<0$ – sharding4 Aug 19 '17 at 01:46
-
Just use what you learned from your previous question https://math.stackexchange.com/questions/2398660/how-do-i-simplify-the-square-root-of-a-negative-number-squares... – Hans Lundmark Aug 19 '17 at 14:34
2 Answers
Note that $\sqrt{z^2} = |z|$. Consequently, if $z>0$ then $\sqrt{z^2} = +z$ otherwise $\sqrt{z^2} = -z$.

- 15,153
I guess you can see that it's $\sqrt{x^2}\sqrt{y^2}\sqrt{x}$.
Now $\sqrt{a^2}$ is the "positive" version of $a$, since squaring would remove the sign and then the square root would return the number back to its original magnitude, but is always nonnegative. In other words, squaring and then taking the square root effectively strips away any sign the number might carry.
The "ranges" you mention are really just telling you that $x$ is positive and $y$ is negative. So the corresponding positive versions are "$x$" (already known to be positive) and "$-y$" (positive because its opposite is the negative number $y$).
So the expression is then $x\cdot (-y)\cdot\sqrt{x}$, i.e., $-xy\sqrt{y}$.
Addendum: At the end of the day, you should take away from this that $-a$ is a positive number if it is known that $a$ is negative. Don't be fooled by the presence of the "minus sign" into thinking that it is a negative number. A minus sign only indicates a negative number if the thing it is applied to is known to be positive. So "$-2$" is negative because "$2$" is positive, but you don't know whether "$-w$" is negative or not because you don't know whether "$w$" itself is negative or not.

- 43,638