Hey,
I am looking for a more efficient way to factor quadratic equations.
It takes me much too long solving them.
Here an example:
t² + 4t - 672
==> (t - 24)(t + 28)
Rule: x² + px + q
P = a + b
q = a * b
(x + a)(x + b)
My approach is to divide the 672 into factors (2*2*2*2*2*3*7) and then search for pairs that also fit the p=a+b equation. In this case (2*2*2*3=24;2*7*2=28) ==> P=-24+28 ==> a=-24 and b=28
But that way is neither systematic nor fast.
Please give me a hint how to speed this up
Thank you!
Felix
I am looking for a more efficient way to factor quadratic equations.
It takes me much too long solving them.
Here an example:
t² + 4t - 672
==> (t - 24)(t + 28)
Rule: x² + px + q
P = a + b
q = a * b
(x + a)(x + b)
My approach is to divide the 672 into factors (2*2*2*2*2*3*7) and then search for pairs that also fit the p=a+b equation. In this case (2*2*2*3=24;2*7*2=28) ==> P=-24+28 ==> a=-24 and b=28
But that way is neither systematic nor fast.
Please give me a hint how to speed this up
Thank you!
Felix












