3

I have looked at this question, and also at this one, but I don't understand how the quadratic formula can change from $ax^2+bx+c=0$ to $x = \frac{-b\pm\sqrt{b^2-4ac}}{2a}$. I am not particularly good at maths, so can someone prove the quadratic formula in a simple way, with no complicated words? All help appreciated.

imulsion
  • 869

3 Answers3

5

Look at each step here: $$ \begin{align*} a x^2 + b x + c &= 0 \\ a \left( x^2 + \frac{b}{a} x \right) + c &= 0 \\ a \left( x^2 + \frac{b}{a} x + \frac{b^2}{4 a^2} \right) - \frac{b^2}{4 a} + c &= 0 \\ a \left( x + \frac{b}{2 a} \right)^2 &= \frac{b^2}{4 a} - c \\ \left( x + \frac{b}{2 a} \right)^2 &= \frac{b^2 - 4 a c}{4 a^2} \\ x + \frac{b}{2 a} &= \frac{\pm\sqrt{b^2 - 4 a c}}{2 a} \\ x &= \frac{-b \pm\sqrt{b^2 - 4 a c}}{2 a} \end{align*} $$

vonbrand
  • 27,812
  • 1
    Try multiplying through with $4a$ and then complete the square. Then you end up dividing by $2a$ only at the end and the rest of the manipulations are less messy. – kahen May 14 '13 at 18:10
  • thank you! Maths is not my strong point :) – imulsion May 15 '13 at 09:34
0

There are several ways to prove the quadratic formula. Using "completion of squares" is the simplest: rather than write it all out again, I can refer you to a post I wrote as part of a series of proofs.

Actually, though, it seems like a number of the links other people have pointed to have laid out the steps just as well. What specifically is the part that you don't understand?

colormegone
  • 10,842
0

You should work this way to prove it: $ax^2+bx+c=0 \quad \iff \quad (\sqrt{a}x + \frac{1}{2}b/\sqrt{a})^2 + (c-\frac{1}{4}b^2/a) = 0$

$\iff \quad (\sqrt{a}x + \frac{1}{2}b/\sqrt{a})= + - \sqrt{\frac{1}{4}b^2/a -c}$

$\iff \quad \sqrt{a}x = -\frac{1}{2}b/\sqrt{a} + - \sqrt{\frac{1}{4}b^2/a -c} $

$\iff \quad x=-\frac{1}{2}b/a +- \sqrt{\frac{1}{4}b^2/a -c}/\sqrt{a}$

$\iff \quad x=-\frac{1}{2}b/a +- \sqrt{\frac{1}{4}b^2/a^2 -c/a}$

$\iff \quad \dots$

After some manipulations you will end up with the desired result.

dreamer
  • 3,379