document.write( "Question 24940: What are the definitons of recursive sequence and explicit sequence? \n" ); document.write( "
Algebra.Com's Answer #13791 by venugopalramana(3286)![]() ![]() You can put this solution on YOUR website! IF NTH.TERM OF A SEQUENCE IS EXPRESSED EXPLICITLY AS A FUNCTION OF N THEN WE CALL IT AN EXPLICIT SEQUENCE.FOR EXAMPLE \n" ); document.write( "TN=N*(N+1).... \n" ); document.write( "FROM THIS WE CAN FIND ALLTERMS OF SEQUENCE BY JUST SUBSTITUTING DIFFERENT VALUES FOR N FROM 1,2,3....ETC. \n" ); document.write( "T1=1*2 \n" ); document.write( "T2=2*3 \n" ); document.write( "T3=3*4...ETC. \n" ); document.write( "ON THE OTHER HAND IF A SEQUENCE IS DEFINED BY RELATING THE N TH. TERM TO (N-1)TH. TERM BY A FORMULA AND ONE OF THE TERMS,USUALLY THE FIRST TERM,IS GIVEN EXPLICITLY,THEN WE CALL IT RECURSIVE SEQUENCE. \n" ); document.write( "FOR EXAMPLE IF IT IS GIVEN THAT \n" ); document.write( " TN=2*T(N-1)...AND T1=3, \n" ); document.write( "THEN WE CAN ONLY FIND THE TERMS OF THE SEQUENCE RECURSIVELY STARTING FROM FIRST TERM OR ANY TERM NEEDED.HERE WE HAVE \n" ); document.write( "T1=3...GIVEN \n" ); document.write( "T2=2*T1=2*3 \n" ); document.write( "T3=2*T2=2*(2*3) \n" ); document.write( "T4=2*T3=2*(2*(2*3))....ETC... \n" ); document.write( " |