document.write( "Question 1115926: Write the next four terms of the sequence defined recursively.\r
\n" );
document.write( "\n" );
document.write( "a1=14\r
\n" );
document.write( "\n" );
document.write( "an+1=(-2)an \n" );
document.write( "
Algebra.Com's Answer #730762 by greenestamps(13198)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "The recursive definition \n" ); document.write( "a(n+1) = (-2)*a(n) \n" ); document.write( "means that each term is found by multiplying the previous term by -2. \n" ); document.write( "So the definition of this sequence says that the first term is 14, and each of the following terms is the preceding term, multiplied by -2: \n" ); document.write( "a(1) = 14 \n" ); document.write( "a(2) = -2(14) = -28 \n" ); document.write( "a(3) = -2(-28) = 56 \n" ); document.write( "a(4) = -2(56) =-112 \n" ); document.write( " |