2

Today, we learnt about the quadratic formula, and I noticed a strange property of (seemingly) all quadratic equations. If we call the two solutions of any arbitrary quadratic equation $x_1$ and $x_2$:

$$When \ a=1: b=-(x_1+x_2)$$ Why is this? I've tried some feeble attempts at solving this algebraically but nothing has come close to working. I can guess that the answer (as is the case with a lot of these odd, seemingly coincidental identities) will lie in a geometric interpretation of the quadratic formula. No research has yielded any results.

So my questions are: Is this a known result? And how is this identity derived or explained?

Nico A
  • 4,934
  • 4
  • 23
  • 49
  • This page has a post that will tell you everything you need to know about quadratic equations: http://math.stackexchange.com/questions/49229/why-can-all-quadratic-equations-be-solved-by-the-quadratic-formula – Sarvesh Ravichandran Iyer Apr 06 '16 at 01:11
  • 3
    That’s a great observation to make without being taught it. The quadratic formula gives you the values $x_1$ and $x_2$. What happens if you write the $+$ and $-$ roots out from the formula and then add them to see what the quadratic formula tells you $x_1+x_2$ is? (It is known, but it’s still satisfying to find these things on your own.) – Steve Kass Apr 06 '16 at 01:23
  • 1
    Hint: if the roots are ${x_1, x_2}$ then you can write: $(x - x_1)(x - x_2) = 0$--what is $b$ in this case?? – Jared Apr 06 '16 at 01:32
  • It happens again and again: what we once thought to be “weird” turns out to be fundamental. – Lubin Apr 06 '16 at 01:36

1 Answers1

6

All quadratic equations are in the form of $$a(x-x_1)(x-x_2).$$ In the special case of $a=1$ the equation is simply $$(x-x_1)(x-x_2).$$ Expanding gives $$x^2-x_1x-x_2x+x_1x_2,$$ and combining like-terms gives $$x^2-(x_1+x_2)x+x_1x_2.$$ So $b=-(x_1+x_2)$ and $c=x_1x_2$ when $a=1$.

Jacob
  • 2,387
  • 12
  • 20