document.write( "Question 1037912: What sum of money invested at 10% compounded semiannually will grow to $1, 000, 000 in 100
\n" );
document.write( "years? Round the result to two decimal places.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #652574 by addingup(3677) You can put this solution on YOUR website! A = final amount \n" ); document.write( "P = Principal, the sum of money originally invested \n" ); document.write( "r = rate, the interest rate \n" ); document.write( "n = number of compounding periods, in your problem this is 2 \n" ); document.write( "t = time, the number of years, in your problem 100 \n" ); document.write( "`````````````````````````````````````````````````````````````` \n" ); document.write( "A = P(1+r/n)^nt \n" ); document.write( "1,000,000 = P(1+0.10/2)^2*100 \n" ); document.write( "1,000,000 = P(1.05)^200 \n" ); document.write( "1,000,000 = P*17,292.58 divide both sides by 17,292.58 \n" ); document.write( "P = 1.000.000/17.292.58 = 57.83 \n" ); document.write( "This problem is to teach you the power of compounding. \n" ); document.write( " |