Why (ax^2 + bx + c) = a(x-α)(x-β)?

  • Context: High School 
  • Thread starter Thread starter Atran
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 5K views
Atran
Messages
93
Reaction score
1
Say, 3x2 - 2x - 1 = 0
Then: x1 = -1/3, x2 = 1
Therefore: k * (x + 1/3) (x - 1) = 3x2 - 2x - 1
Why is k = 3?

Why, [itex]Ax^{2} + Bx + C = A (x-\alpha) (x-\beta)[/itex]?

Thanks for help.
 
Last edited by a moderator:
Mathematics news on Phys.org
Well the polynomial ##3x^2 - 2x -1 = (3x+1)(x-1) = 3 (x+1/3)(x-1)##.

Also solving the equation ##3x^2-2x-1 = 0## is equivalent to ##x^2 - \frac{2}{3}x - \frac{1}{3} = 0##.

And even further notice that when you take ##A(x-\alpha)(x-\beta)## and expand the coefficient of ##x^2## is equal to A.
 
To answer the question:

Atran said:
Why, [itex]Ax^{2} + Bx + C = A (x-\alpha) (x-\beta)[/itex]?

Thanks for help.

Well, you have in general
[tex]x_{1,2}=\frac{-b\pm \sqrt{b^2-4ac}}{2a}[/tex]

and

[tex]x_1=\frac{-b+ \sqrt{b^2-4ac}}{2a}[/tex]

[tex]x_2=\frac{-b - \sqrt{b^2-4ac}}{2a}[/tex]We also have

[tex]a(x_1 + x_2)=a(\frac{-b+ \sqrt{b^2-4ac}}{2a} + \frac{-b- \sqrt{b^2-4ac}}{2a}) = a(\frac{-2b}{2a}) = a(\frac{-b}{a}) = -b[/tex]

and if [itex]a(x_1+x_2) = -b[/itex],

[tex]a(-x_1-x_2) = b[/tex]

We also have

[tex](x_1)\cdot(x_2)=(\frac{-b+ \sqrt{b^2-4ac}}{2a})\cdot(\frac{-b- \sqrt{b^2-4ac}}{2a})[/tex]

which after a little work gets you [itex](x_1) \cdot (x_2)= \frac{c}{a}[/itex]. Equivalently we can have [tex]a(x_1)\cdot(x_2) = c[/tex]

-----------------

If we substitute our b and c into [itex]ax^2+bx+c[/itex] we get

[tex]ax^2+bx+c = ax^2+ a(-x_1-x_2)x + a(x_1)\cdot (x_2)[/tex]
[tex]= a(x^2 -x\cdot x_1 -x\cdot x_2 + (x_1)\cdot(x_2))[/tex]
[tex]= a(x-x_2)(x-x_1)[/tex]

In the above step you factorize, it should be clear how you get there if you try to expand[itex](x-x_2)(x-x_1)[/itex].

So that's why [itex]ax^2+bx+c = a(x-x_2)(x-x_1)[/itex]
 
Last edited:
  • Like
Likes   Reactions: 1 person
Thank you for the answers.