Understanding Compound Interest 💰
Compound interest is essentially earning interest on your interest. It's a powerful concept in finance and is crucial for understanding investments and loans. Let's break it down:
Simple vs. Compound Interest 🧮
* **Simple Interest:** Interest is calculated only on the principal amount (the initial amount of money).
* **Compound Interest:** Interest is calculated on the principal amount *and* the accumulated interest from previous periods.
The Formula 📝
The formula for compound interest is:
$A = P(1 + \frac{r}{n})^{nt}$
Where:
* $A$ = the future value of the investment/loan, including interest
* $P$ = the principal investment amount (the initial deposit or loan amount)
* $r$ = the annual interest rate (as a decimal)
* $n$ = the number of times that interest is compounded per year
* $t$ = the number of years the money is invested or borrowed for
Example 1: Annual Compounding 🗓️
Suppose you deposit $1000 into a savings account that pays 5% interest compounded annually. How much will you have after 3 years?
* $P = 1000$
* $r = 0.05$ (5% as a decimal)
* $n = 1$ (compounded annually)
* $t = 3$
$A = 1000(1 + \frac{0.05}{1})^{(1)(3)}$
$A = 1000(1.05)^3$
$A = 1000 * 1.157625$
$A = 1157.63$
After 3 years, you'll have $1157.63.
Example 2: Compounding More Frequently 🏦
Let's say you deposit $5000 into an account that pays 6% interest compounded monthly. How much will you have after 5 years?
* $P = 5000$
* $r = 0.06$
* $n = 12$ (compounded monthly)
* $t = 5$
$A = 5000(1 + \frac{0.06}{12})^{(12)(5)}$
$A = 5000(1 + 0.005)^{60}$
$A = 5000(1.005)^{60}$
$A = 5000 * 1.34885$
$A = 6744.25$
After 5 years, you'll have $6744.25.
Code Example (Python) 💻
Here's a Python function to calculate compound interest:
def compound_interest(principal, rate, n, time):
amount = principal * (1 + (rate / n)) ** (n * time)
return amount
# Example usage:
principal = 1000
rate = 0.05
n = 1 # annually
time = 3
future_value = compound_interest(principal, rate, n, time)
print(f"The future value is: ${future_value:.2f}")
Key Takeaways 🔑
- The more frequently interest is compounded (e.g., monthly vs. annually), the faster your money grows.
- Compound interest is a powerful tool for wealth building over time.
- Understanding the formula helps you predict the future value of your investments or the total cost of a loan.
By understanding these examples and the formula, you should be able to tackle compound interest problems in your Integrated Math 1 class with confidence! 👍