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?
|
feedback
|
|
Improving Keiths's answer: Start with a polynomial You can now factor P(x) as 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. | |||||
feedback
|
|
Use the quadratic formula. | |||||||||||||||
feedback
|