Hello currently I have started a project for my school. The project is a program that can
factor a trinomial. So far I have it set up to take the users inputs. then it
multiplies two of the inputs to get a new number. My problem is that i need it to factor
that new number and list it out. Once I have an idea of how to do that I know how I want
to go about the rest.
Example of how it should factor the trinomail:
Trinomial- 5x^2+16x+12
Multiplication- 5*12
New number- 60
Factors [1,2,3,4,5,6,10,12,15,20,30,60]
The factors that equal the middle number when added- [6,10]
then Divide the first number by those factors- 5/6, 5/10
then print out answer- (5x+6)(x-2)