document.write( "Question 55720: Hello, I am having trouble figuring out this problem
\n" );
document.write( "Write a recursive formula that generates the terms of the following:
\n" );
document.write( "1,3,9,27,...\r
\n" );
document.write( "\n" );
document.write( "Thanks in advanced \n" );
document.write( "
Algebra.Com's Answer #37802 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Write a recursive formula that generates the terms of the following: \n" ); document.write( "1,3,9,27,... \n" ); document.write( "--------- \n" ); document.write( "a(n) is the nth term. \n" ); document.write( "a(n+1) is the (n+1)th term. \n" ); document.write( "a(n+1)= 3(a(n)) \n" ); document.write( "That is the recursive equation. \n" ); document.write( "Another way to write it would be: \n" ); document.write( "a(n) = 3* a(n-1) \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |