5

I spent hours trying to solve this system of equations, they're two equations with two variables, and both are 2nd degree equations, I don't know, both equal zero, so each one equals the other, but I came to a step where I'm stuck.

The system is: \begin{cases} x^2+y^2-xy=21\\ x^2-8y^2+2xy = 0 \end{cases}

Jens
  • 1,133

2 Answers2

10

Hint

Start setting $y=kx$ which makes the equations to be $$k^2 x^2-k x^2+x^2-21=0$$ $$-8 k^2 x^2+2 k x^2+x^2=0$$ From the second one, assuming $x\neq 0$ you end with $$8 k^2 -2 k+1=0$$ the roots of which being $k=-\frac 14$ and $k=\frac 12$. For each root, go back to the first equation which is simple.

  • I looked into your method, it's quite nice, but, I can't use it anywhere right? I mean, a variable can hold anything, even 0, but I can't use this method in any equation unless they told me x is not equal to 0, right?

    Though, yours worked here.

    – Stephen Alexander Dec 17 '16 at 09:44
  • You don't need to be told x is not equal to 0. Just check it yourself. Assume x is 0. Then per the 1st equation y=sqrt(21) and per the 2nd equation y=0. CONTRADICTION!; hence we have proved that x is not 0. https://en.wikipedia.org/wiki/Proof_by_contradiction – Anonymous Coward Dec 17 '16 at 13:03
  • 2
    @JoseAntonioDuraOlmos. I totally agree ! What was appealin (to me) was the homogeneous aspect of the equation. Cheers. – Claude Leibovici Dec 17 '16 at 13:34
5

Take second eq as $8\cdot y^2-2\cdot x\cdot y-x^2=0$

Solve for $y$

$y=\frac{x}{2},\frac{-x}{4}$

Put in first equation

You would get

$x=\pm\sqrt{28},\pm4$ and $y=\pm\sqrt{7},\mp1$

Elias Costa
  • 14,658
  • Very nice--this is simple, straightforward, the kind of solution anyone could do. But your final line is confusing and could use some editing in MathJax. Shall I do it for you? – Rory Daulton Dec 17 '16 at 19:17