Future value of savings functions
The savings functions differ from the previous functions, that in addition to the interest, you also have periodic deposits or withdrawals from the account.
Those functions can be used in different ways, depending on the situations. We go through them all on this page.
The first function is for calculating the future value of savings.
FutureValueOfSavings(x; y; z; a; b )
Where
x= Present valuey= Periodical payment amountz= No of annual payments(12)a= No of yearsb= annual interest rate
The following formulas are used:
Example:
Lets say, that we have 10.000 on a bank account now. Then we deposit 500 on this account every month. The interest rate on the account is 2%. What is the future value after 10 years.
FutureValueOfSavings(10000;500;12;10;2)=78571.824497
The next function calculates the payment needed to reach a specific future value.
PaymentSavings(x; y; z; a; b )
Where
x= Savings targety= Present valuez= No of annual payments(12)a= No of yearsb= annual interest rate
This function uses the following formulas:
Example:
Lets say, that we have 10.000,- on a savings account. We want this to be 100.000,- in the next 10 years. The interest rate is 2%. How much do we need to deposit every month for this to happen.
PaymentSavings(100000;10000;12;10;2)=661.454418
Another example:
Suppose a savings account contains 1,000,000. We want to withdraw a monthly amount while making the balance last for ten years. What is the maximum monthly withdrawal?
PaymentSavings(0;1000000;12;10;2)=-9201.345384
After that, the account will be empty. The result is negative because money is withdrawn rather than deposited.
Next function in this series, is "Years to reach a savings target".
SavingsYearsToTarget(x; y; z; a; b )
Where
x= Savings targety= Present valuez= No of annual payments(12)a= Periodic payment sumb= annual interest rate
The formulas used for this function are:
Example:
We have 10.000 on a bank account. We deposit 2.000 each month on this. The bank interest rate is 2%. How long time will it take to get 1.000.000 on that account.
SavingsYearsToTarget(1000000;10000;12;2000;2)=29.916753
This completes the savings functions.
*There is much more to see in the Geometric section if that would be of interest.
RELATED TOPICS
