document.write( "Question 287538: Upon graduation Sheldon decides to go to work for a local police department. His starting salary is $30000 per year and he expects to get a 3% raise per year. Write the recursion formula for a sequence that represents his salary n years on the job. Assume n=0 represents his first year making $30000. \n" ); document.write( "
| Algebra.Com's Answer #208341 by stanbon(75887)      You can put this solution on YOUR website! Upon graduation Sheldon decides to go to work for a local police department. His starting salary is $30000 per year and he expects to get a 3% raise per year. Write the recursion formula for a sequence that represents his salary n years on the job. Assume n=0 represents his first year making $30000. \n" ); document.write( "-------------- \n" ); document.write( "1st Yr: 1------30000 \n" ); document.write( "2nd Yr: 2------30000+30000(0.03) = 30000(1.03) \n" ); document.write( "3rd Yr: 3------30000(1.03)^2 \n" ); document.write( "... \n" ); document.write( "... \n" ); document.write( "nth Yr: n-1------30000(1.03)^(n-1) \n" ); document.write( "======================================== \n" ); document.write( "a(n) = 30000(1.03)^(n-1) \n" ); document.write( "======================================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |