Have a quick math question.
I have this math problem:
| x^-2y | ^-2
|x^-3y^5|
Or if you prefer to have it written out correctly:
Code: Select all
((x^-2y)/(x-3y^5))^-2
1) Distribute
Code: Select all
^-2
Code: Select all
x^4 y^-2 / x^6 y^-10
Code: Select all
x^4 y^10 / x^6 y^2
Code: Select all
y^8 / x^2