I don't understand why this doesn't work:
Problem:
$$x^{2}+x-2=0$$
Solution:
$$x^{2}+x=2$$
$$x+x=\sqrt{2}$$
$$2x≈1.4$$
$$x≈1.4/2$$
$$x≈0.7$$
Checking: (Note: I made the calculation with more decimals than the amount I wrote here; that explain $0.7^{2}=0.5$)
$$0.7^{2}+0.7-2≈0.5+0.7-2≈-0.79$$
This method doesn't work...it gives $-0.79$ and it must give 0.
Instead I must do:
Good Solution: $$\frac{-b±\sqrt{b^{2}-4ac}}{2a}=0$$ $$\frac{-1±\sqrt{1^{2}-4\times1\times(-2)}}{2\times 1}=0$$ $$\frac{-1±\sqrt{1+8}}{2}=0$$ $$\frac{-1±\sqrt{9}}{2}=0$$ $$\frac{-1±3}{2}=0$$ $$x_{1}=\frac{-1+3}{2}=\frac{2}{2}=1$$ $$x_{2}=\frac{-1-3}{2}=\frac{-4}{2}=-2$$ Checking: $$1^{2}+1-2=1+1-2=0$$ $$(-2)^{2}+(-2)-2=4-2-2=0$$ And that gives a good result.
- I don't understand why my first attempt doesn't work.
- Also, I don't understand why it has 2 possible results, $1$ and $-2$.