document.write( "Question 35194This question is from textbook
\n" );
document.write( ": find the third, fourth and fifth terms.\r
\n" );
document.write( "\n" );
document.write( "t sub(1) = 6; t sub(n) = t sub(n-1) + 4 \n" );
document.write( "
Algebra.Com's Answer #21388 by venugopalramana(3286)![]() ![]() You can put this solution on YOUR website! find the third, fourth and fifth terms. \n" ); document.write( "t sub(1) = 6; t sub(n) = t sub(n-1) + 4 \n" ); document.write( "T1=6 \n" ); document.write( "TN=T(N-1)+4 \n" ); document.write( "PUT N=1,2,3,4,5,6.... \n" ); document.write( "N=1............T1=6...GIVEN \n" ); document.write( "N=2....T2=T1+4=6+4=10 \n" ); document.write( "N=3....T3=T2+4=10+4=14 \n" ); document.write( "N=4....T4=T3+4=14+4=18 \n" ); document.write( "N=5....T5=T4+4=18+4=22 \n" ); document.write( " |