Solve the following system of equations - (4).

114 Views Asked by At

Solve the following system of equations: $$\large \left \{ \begin{align*} xy^2 - 2y + 3x^2 = 0\\ x^2y + 2x + y^2 = 0 \end{align*} \right. $$

Here's what I did.

If $x = y = 0$ then the system of equations is solved.

If $x \ne 0$ and $y \ne 0$ then we have that

$\left \{ \begin{align*} xy^2 - 2y + 3x^2 = 0\\ x^2y + 2x + y^2 = 0 \end{align*} \right. $ $ \implies $ $ \left \{ \begin{aligned} x^2y^2 = 2xy - 3x^3\\ x^2y^2 = -2xy - y^3 \end{aligned} \right. $ $ \implies $ $ 2xy - 3x^3 = -2xy - y^3 $

$ \implies $ $ 3x^3 - 4xy - y^3 = 0 $

And I am stuck.

5

There are 5 best solutions below

0
On BEST ANSWER

One way we could go is to subtract $x$ times the second equation from the first, getting us: $$xy^2 - 2y + 3x^2-x(x^2y + 2x + y^2) = 0\\xy^2 - 2y + 3x^2-x^3y - 2x^2 -xy^2 = 0\\x^2-x^3y-2y=0\\x^2=x^3y+2y\\x^2=(x^3+2)y$$ Note that if we had $x^3+2=0,$ then the last equation above would become $x^2=0,$ so $x=0,$ contradicting our assumption that $x\ne 0.$ Thus, we don't have to worry about $x^3+2$ being zero, and so $$y=\frac{x^2}{x^3+2}.\tag{$\star$}$$ Substituting for $y$ in the second equation gets us $$x^2\cdot\frac{x^2}{x^3+2}+2x+\left(\frac{x^2}{x^3+2}\right)^2=0,$$ or $$x\left(\frac{x^3}{x^3+2}+\frac{x^3}{(x^3+2)^2}+2\right)=0,$$ which (since $x\ne 0$) is equivalent to $$\frac{x^3}{x^3+2}+\frac{x^3}{(x^3+2)^2}+2=0\\x^3(x^3+2)+x^3+2(x^3+2)^2=0\\x^6+3x^3+2(x^6+4x^3+4)=0\\3x^6+11x^3+8=0\\3\left(x^3\right)^2+11x^3+8=0\\x^3=\frac{-11\pm\sqrt{121-96}}6\\x^3=\frac{-11\pm \sqrt{25}}6\\x^3=\frac{-11\pm 5}6\\x^3=-1\textrm{ or }x^3=-\frac83$$

If we're looking for real solutions, then we have $x=-1$ or $x=-\frac{2}{\sqrt[3]3},$ but if we're interested in non-real solutions, too, then since $-\frac12\pm\frac{\sqrt3}2$ are cube roots of $-1,$ too, we also have $x=\frac12\pm\frac{\sqrt3}2$ and $x=-\frac{2}{\sqrt[3]3}\left(-\frac12\pm\frac{\sqrt3}2\right).$ (For brevity, I will denote $\omega=-\frac12+\frac{\sqrt3}2$ and $\overline\omega=-\frac12-\frac{\sqrt3}2.$)

When $x\in\left\{-1,\omega,\overline\omega\right\},$ we have $x^3=-1,$ so $x^3+2=1,$ and so $(\star)$ becomes $$y=x^2.$$ Thus, we obtain the solutions $(-1,1),$ $\left(\omega,\omega^2\right)=\left(\omega,-\overline\omega\right),$ and $\left(\overline\omega,\overline\omega^2\right)=\left(\overline\omega,-\omega\right).$

When $x\in\left\{-\frac{2}{\sqrt[3]3},-\frac{2\omega}{\sqrt[3]3},-\frac{2\overline\omega}{\sqrt[3]3}\right\},$ we have $x^3=-\frac83,$ so $x^3+2=-\frac23,$ and so $(\star)$ becomes $$y=-\frac32x^2.$$ Thus, we obtain the solutions $\left(-\frac{2}{\sqrt[3]3},-2\sqrt[3]3\right),$ $\left(-\frac{2\omega}{\sqrt[3]3},2\overline\omega\sqrt[3]3\right),$ and $\left(-\frac{2\overline\omega}{\sqrt[3]3},2\omega\sqrt[3]3\right).$

In summary, our solutions are: $$(0,0),(-1,1),\left(-\frac{2}{\sqrt[3]3},-2\sqrt[3]3\right),\left(\omega,-\overline\omega\right),\left(\overline\omega,-\omega\right),\left(-\frac{2\omega}{\sqrt[3]3},2\overline\omega\sqrt[3]3\right),\left(-\frac{2\overline\omega}{\sqrt[3]3},2\omega\sqrt[3]3\right),$$ with the first three being the real solutions.

3
On

The integral solution are given by $(x,y)=(0,0),(-1,1)$, the real solutions in addition by $x=-\frac{y^2}{6}$ and $y$ being a real root of $y^3+24=0$. This follows from computing the resultant. The complex non-real solutions are given, in addition, by $$ x= \frac{\pm \sqrt{-3}+1}{2}, y=\frac{\pm \sqrt{-3}-1}{2} $$

0
On

Well, I've computed a reduced Groebner basis for the ideal $I=\langle xy^2-2y+3x^2,x^2y+2x+y^2\rangle$ w.r.t. the lex ordering $x>y$ using Singular. The result is $\{y^7+23y^4-24y, 30x+y^5+29y^2\}$. Thus every root of the first polynomial in $y$ gives a solution of the whole system.

Here is the code:

ring r = 0, (x,y), lp;

ideal i = xy2-2y+3x2, x2y+2x+y2;

ideal j = std(i);

j;

...

This is a general procedure to tackle those systems.

0
On

HINT: Use the discriminant for the two you will find you answer

0
On

You make a most part of the work.

Now, we can use homogenization.

Indeed, if $x=0$, so $y=0$.

Also, if $y=0$, so $x=0$, which gives a solution $(0,0)$ and we can assume now that $xy\neq0.$

Thus, by your work $$\frac{3x^3-y^3}{4xy}=1,$$ which gives $$xy^2-2y\left(\frac{3x^3-y^3}{4xy}\right)^2+3x^2\cdot\frac{3x^3-y^3}{4xy}=0$$ or $$(x-y)(9x^3-y^3)(x^2+xy+y^2)=0$$ and the rest is smooth.