document.write( "Question 819899: I am working on trying to write an equation for 2 different certificates of deposit starting with $5000.00 in each. The first is 2 years @ 1.410% APY
\n" );
document.write( "The second is 5 years @ 3.04% APY. The two equations that I came up with are
\n" );
document.write( "F(X)= 5000(1.410)^2x
\n" );
document.write( "F(X)= 5000(3.040)^5x
\n" );
document.write( "They don't seem to work \n" );
document.write( "
Algebra.Com's Answer #493291 by jsmallt9(3758) ![]() You can put this solution on YOUR website! You're pretty close. \n" ); document.write( "First of all, never use percents in an equation. Use the decimal or fraction equivalent for the percent instead. So the equations should have 0.01410 (for 1.0410%) and 0.03040 (for 3.040%) in them instead of the percent numbers. \n" ); document.write( "Second, the expression in the parentheses should be: (1 + percent-as-a-decimal) for exponential growth or (1 - percent-as-a-decimal). So the expressions in the parentheses in your functions should be: \n" ); document.write( "(1 + 0.01410) or (1.01410) \n" ); document.write( "and \n" ); document.write( "(1 + 0.03040) or (1.03040) \n" ); document.write( " \n" ); document.write( " |