document.write( "Question 1209690: Find all roots of the polynomial f(x) = 3x^3 - 7x^2 - 10x + 4 + 4x^3 - 5x^2 + 18x + 28.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #849819 by CPhill(1959)![]() ![]() You can put this solution on YOUR website! 1. **Combine like terms:** \n" ); document.write( " f(x) = (3x^3 + 4x^3) + (-7x^2 - 5x^2) + (-10x + 18x) + (4 + 28) \n" ); document.write( " f(x) = 7x^3 - 12x^2 + 8x + 32\r \n" ); document.write( "\n" ); document.write( "2. **Rational Root Theorem:** This theorem helps us find possible rational roots. Any rational root will be of the form p/q, where p is a factor of the constant term (32) and q is a factor of the leading coefficient (7).\r \n" ); document.write( "\n" ); document.write( " Possible values for p: ±1, ±2, ±4, ±8, ±16, ±32 \n" ); document.write( " Possible values for q: ±1, ±7\r \n" ); document.write( "\n" ); document.write( " Possible rational roots: ±1, ±2, ±4, ±8, ±16, ±32, ±1/7, ±2/7, ±4/7, ±8/7, ±16/7, ±32/7\r \n" ); document.write( "\n" ); document.write( "3. **Test potential roots:** We can use synthetic division or direct substitution. Let's try x = -2:\r \n" ); document.write( "\n" ); document.write( " ``` \n" ); document.write( " -2 | 7 -12 8 32 \n" ); document.write( " | -14 52 -120 \n" ); document.write( " ------------------ \n" ); document.write( " 7 -26 60 -88 \n" ); document.write( " ```\r \n" ); document.write( "\n" ); document.write( " Since the remainder is not zero, -2 is not a root.\r \n" ); document.write( "\n" ); document.write( " Let's try x = 4:\r \n" ); document.write( "\n" ); document.write( " ``` \n" ); document.write( " 4 | 7 -12 8 32 \n" ); document.write( " | 28 64 288 \n" ); document.write( " ------------------ \n" ); document.write( " 7 16 72 320 \n" ); document.write( " ``` \n" ); document.write( " Since the remainder is not zero, 4 is not a root.\r \n" ); document.write( "\n" ); document.write( "4. **Continue testing or use a calculator:** Testing all the possible rational roots is tedious. It's often more efficient to use a graphing calculator or online polynomial solver to approximate the roots.\r \n" ); document.write( "\n" ); document.write( "Using a calculator or solver, we find the roots are approximately:\r \n" ); document.write( "\n" ); document.write( "* x ≈ -1.089 \n" ); document.write( "* x ≈ 1.402 + 1.494i \n" ); document.write( "* x ≈ 1.402 - 1.494i\r \n" ); document.write( "\n" ); document.write( "Notice that there is one real root and two complex roots. It's difficult to find these roots by hand. Numerical methods are the most practical approach. \n" ); document.write( " \n" ); document.write( " |