THIS IS NOT FOR HOMEWORK

Since factoring a quadratic equation in my head just happens, and has done that since I learned it - how would I go about starting to write a quadratic factorer in Python?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Improving Keiths's answer:

Start with a polynomial P(x) = a*x^2 + b*x + c. Use the quadratic formula (or another another method of your choice) to find the roots r1 and r2 to P(x) = 0.

You can now factor P(x) as a*(x-r1)(x-r2).


If your factor (3x - 4)(x - 9) the solution will be 3*(x - 4/3)(x - 9). You might want to find a way to multiply the 3 into the factors to get rid of fractions / look pretty. In this case, it might help to use fraction arithmetic instead of doubles so you can know the denominators better.

link|improve this answer
say it results in (x-(2/3)) im trying to get it to say (3x-2) instead – tekknolagi Feb 17 '11 at 6:37
nicely answered, btw though not quite what i am looking for – tekknolagi Feb 17 '11 at 6:37
feedback

Use the quadratic formula.

link|improve this answer
to FACTOR it? not solve – tekknolagi Feb 15 '11 at 1:05
1  
they are essentially equivalent. Look at the Quadratic Factorization section of the referenced page. – Keith Randall Feb 15 '11 at 1:06
2  
@tekk The results you get from solving the quadratic are basically the factors. a parabola with roots 3 and 5 has the factored form (x-3)(x-5) :D – CrazyJugglerDrummer Feb 15 '11 at 1:07
the issue is what if its like this (3x - 4)(x + 9) i got as far as to where x has no coefficient – tekknolagi Feb 15 '11 at 1:13
You'll see from the referenced page that the factorization is a(x-r1)(x-r2) where r1 and r2 come from the quadratic formula. You could equally write that as (a*x-a*r1)(x-r2) if you'd like. – Keith Randall Feb 15 '11 at 1:27
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.