document.write( "Question 199257: Could someone help me with these:
\n" );
document.write( "What is the sum of the roots of the equation ax^2+bx+c=0 ?
\n" );
document.write( "What is the product of their roots?
\n" );
document.write( "How would I solve this equation x^3+2x^2+x+2=0, if -2 is a root? \n" );
document.write( "
Algebra.Com's Answer #149711 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! The roots are: \n" ); document.write( "(-b/2a) + sqrt(b^2-4ac)/2a and (-b/2a) - sqrt(b^2-4ac)/(2a) \n" ); document.write( "====================================================================\r \n" ); document.write( "\n" ); document.write( "What is the sum of the roots of the equation ax^2+bx+c=0 ? \n" ); document.write( "sum = 2(-b/2a) = -b/a \n" ); document.write( "------------------------------------------------------------------ \n" ); document.write( "What is the product of their roots? \n" ); document.write( "product is [b/2a]^2 - [sqrt(b^2-4ac)/2a]^2 \n" ); document.write( "= [b^2/4a^2] - [(b^2-4ac)/(4a^2) \n" ); document.write( "------------------------------------------------------------------ \n" ); document.write( "How would I solve this equation x^3+2x^2+x+2=0, if -2 is a root? \n" ); document.write( "Use synthetic division: \n" ); document.write( "-2)....1....2....1....2 \n" ); document.write( ".........1...0....1....|..0\r \n" ); document.write( "\n" ); document.write( "Quotient: x^2 +1 \n" ); document.write( "Remainder:0 \n" ); document.write( "------------------------ \n" ); document.write( "Solving x^2+1 = 0 \n" ); document.write( "(x+i)(x-i) = 0 \n" ); document.write( "========================== \n" ); document.write( "Solutions: x = -2, x = i, x = -i\r \n" ); document.write( "\n" ); document.write( "------------------------------------------------------------------ \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |