Someone please help me solve this equation for y. (x^2)(y^2)+xy=1 I need to solve for y so that i can graph it!

y^2 + y/x - 1/x^2 = 0
Treat 1/x as b and -1/x^2 as c in the quadratic equation ax^2 + bx + c = 0
There are two solutions
y = [-1/x + sqrt(1/x^2 + 4/x^2)]/2
and
y = [-1/x - sqrt(1/x^2 + 4/x^2)]/2

To solve the equation (x^2)(y^2) + xy = 1 for y, we can rearrange the terms to form a quadratic equation in y. Here's how you can do it step by step:

1. Start with the given equation:
(x^2)(y^2) + xy = 1

2. Multiply (x^2) and (y^2) using the distributive property:
x^2 * y^2 + xy = 1

3. Rearrange the terms to isolate y:
x^2 * y^2 + xy - 1 = 0

Now, the equation is in quadratic form: ax^2 + bx + c = 0, where:
a = 1
b = x
c = -1

To solve this quadratic equation for y, we can use the quadratic formula:
y = [-b ± sqrt(b^2 - 4ac)] / (2a)

Substituting the values into the formula:
y = [-x ± sqrt(x^2 - 4(-1)(1))] / (2 * 1)
y = [-x ± sqrt(x^2 + 4)] / 2

So, the two solutions for y are:
y = [-x + sqrt(x^2 + 4)] / 2
y = [-x - sqrt(x^2 + 4)] / 2

Now, you can plot these solutions on a graph. For each value of x, calculate the corresponding values of y using the above formulas. This will give you the points to plot, and then you can connect them to form the graph of the equation.