document.write( "Question 1068306: Discrete Mathematics.\r
\n" );
document.write( "\n" );
document.write( "An amount of $500 is invested in an account paying 1.2% interest compounded annually.
\n" );
document.write( "a. Write a recursive definition for p(n), the amount in the account at the beginning of the nth year.
\n" );
document.write( "b. After how many years will the amount exceed $570? \n" );
document.write( "
Algebra.Com's Answer #683542 by Boreal(15235) You can put this solution on YOUR website! p(n)=500(1+0.012)^(n-1) \n" ); document.write( "570=500(1.012)^n \n" ); document.write( "570/500=1.012^n \n" ); document.write( "1.14=1.012^n \n" ); document.write( "ln both sides \n" ); document.write( "then divide both sides by ln 1.012 \n" ); document.write( "n > 10.985 years because wants to know when it will exceed. \n" ); document.write( " \n" ); document.write( " |