find all points on the curve x^2y^2+xy=2 where the slope of the tangent line is -1

I know that you have to find the derivative when it equals -1
i got

y'=(2x*y^2-y)/(2x^2*y+x)
(i don't know if it is correct or not)

but i don't know how to go from here. any help would be good

Thanks

To find all the points on the curve where the slope of the tangent line is -1, you're on the right track by finding the derivative and setting it equal to -1. However, let's double-check your derivative calculation.

To differentiate the equation, start by rewriting it as a function y(x):
x^2y^2 + xy = 2

Now, differentiate both sides of the equation with respect to x using the product and chain rule:

(2xy^2 + y^2) + (x)(2y(dy/dx)) = 0

Simplify the equation:

y^2(2x + 1) + 2xy(dy/dx) = 0

Next, solve for dy/dx:

dy/dx = -y^2(2x + 1) / (2xy)

Now, to find the points on the curve where the slope of the tangent line is -1, set dy/dx equal to -1 and solve for x and y:

-1 = -y^2(2x + 1) / (2xy)

Cross-multiply and simplify:

2xy = -y^2(2x + 1)

2xy = -2xy^2 - y^2

Rearrange the terms:

2xy + 2xy^2 + y^2 = 0

Combine like terms:

4xy + y^2 = 0

Factor out y:

y(4x + y) = 0

Now, there are two possibilities:

1. y = 0
When y = 0, substitute it back into the original equation:
x^2(0)^2 + x(0) = 2
0 = 2
This equation has no solution. Therefore, y = 0 does not give any points where the slope of the tangent line is -1.

2. 4x + y = 0
Rearrange the equation for y:
y = -4x
Substitute this value of y back into the original equation:
x^2(-4x)^2 + x(-4x) = 2
Simplify:
16x^4 - 4x^2 = 2
16x^4 - 4x^2 - 2 = 0

Now you have a fourth-degree polynomial equation. To find the x-values where this equation equals to 0, you can use numerical methods such as the Newton-Raphson method or graphing software/calculator.

Once you have the x-values, substitute them into y = -4x to find the corresponding y-values.

These x and y values will represent the points on the curve where the slope of the tangent line is -1.