Simple Interest Calculator
A $1,000 balance at 5% simple interest for 3 years earns $150, so the ending total is $1,150. This simple interest calculator estimates interest from three inputs: principal, annual rate, and time in years. Use it when a loan, note, or deposit uses a flat non-compounding structure and you want the interest amount, total amount, and average monthly interest without writing the formula yourself. Because simple interest stays tied to the original principal, the growth pattern is linear. That makes this page useful for quick classroom checks, private loan estimates, short-term lending scenarios, and deposit comparisons where the terms clearly state simple interest instead of compound interest.
Quick answer
Simple interest uses the starting principal only, so the balance that earns interest does not grow from one period to the next.
What this tells you
- •Simple interest uses the starting principal only, so the balance that earns interest does not grow from one period to the next.
- •If the rate and term stay fixed, each additional year adds the same dollar amount of interest.
- •The tool converts the percent rate to a decimal, multiplies by the principal, then multiplies by time in years.
- •The total amount equals principal plus interest, which makes it easy to compare the cost of borrowing or the return on a deposit.
- •Monthly interest on this page is an average monthly equivalent across the full term, not a promise about how a bank or lender posts interest each month.
How to Use
- 1Enter the principal, which is the original amount borrowed or deposited before any interest is added.
- 2Enter the annual interest rate as a percentage. Type 7.5 for 7.5%, not 0.075.
- 3Enter the time in years. For partial years, use a decimal such as 0.25 for 3 months or 1.5 for 18 months.
- 4Click Calculate to view the total interest, final amount, original principal, and average monthly interest for the term entered.
- 5Review the result against your actual agreement if the account uses fees, changing rates, day-count rules, or compounding, because those terms can change the real amount due or earned.
How It Works
Formula
Simple Interest = Principal x Rate x TimeThe formula in `lib/formulas/simple-interest-calculator.ts` calculates interest as `principal x (ratePercent / 100) x years`. That means a 5% rate becomes 0.05 before the multiplication happens. After the tool finds the interest amount, it adds that interest back to the original principal to get the total amount. It also calculates average monthly interest by dividing the total interest by the number of months in the term. This method assumes a constant annual rate, a fixed original principal, and no compounding during the period you enter.
Calculation note: values are processed in the order shown above, using the current input units.
Worked Examples
Three-year savings deposit
The formula is 1000 x 0.05 x 3 = 150, so the deposit earns $150 in simple interest. Add that to the original $1,000 principal and the ending amount is $1,150. The tool's monthly equivalent is $150 divided by 36 months, which rounds to $4.17.
Eighteen-month personal note
Convert 6.5% to 0.065, then multiply 2500 x 0.065 x 1.5 to get $243.75 in interest. Add the interest to the principal and the total payoff becomes $2,743.75. Because the term is 18 months, the average monthly interest is $243.75 divided by 18, which rounds to $13.54.
Two-year fixed-rate loan estimate
This example uses 5000 x 0.04 x 2 = 400, so the interest cost over the full two years is $400. Add the interest to the original $5,000 balance and the total amount is $5,400. Spread across 24 months, the average monthly interest works out to $16.67 after rounding.
Five-year deposit quote
Write 3.2% as 0.032 and multiply 12000 x 0.032 x 5 to get $1,920 of total interest. The final amount is the original $12,000 plus $1,920, which equals $13,920. Over 60 months, the average monthly interest is exactly $32.
Ninety-day short-term advance
A 90-day period is one quarter of a year, so the time value is 0.25. The interest is 800 x 0.09 x 0.25 = 18, which brings the total amount to $818. Since 0.25 years equals 3 months, the average monthly interest is $18 divided by 3, or $6.
Simple interest on $1,000
Use this quick table to estimate how interest changes when the same $1,000 principal stays at a fixed simple interest rate for longer terms.
| Annual rate | 1 year | 3 years | 5 years |
|---|---|---|---|
| 2% | $20 | $60 | $100 |
| 3% | $30 | $90 | $150 |
| 4% | $40 | $120 | $200 |
| 5% | $50 | $150 | $250 |
| 6% | $60 | $180 | $300 |
| 8% | $80 | $240 | $400 |
Because this is simple interest, doubling the time doubles the interest and doubling the rate doubles the interest when principal stays the same.
Common mistakes
- Entering the rate as a decimal in the percent field, such as 0.05 instead of 5, which makes the result 100 times too small.
- Typing months as whole years, such as entering 18 instead of 1.5 for an 18-month term.
- Assuming the monthly interest value is a lender's exact posted monthly charge instead of an average monthly equivalent for the full term.
- Using the tool for compound interest products where interest is added back to the balance and future interest grows from that larger amount.
- Ignoring fees, taxes, penalties, or required payments that may change the real payoff amount on a note or loan agreement.
Limitations
This tool assumes one original principal amount, one constant annual rate, and a term measured in years with no compounding. It does not model changing balances, periodic payments, late fees, origination charges, taxes, minimum finance charges, day-count conventions, or APR rules that can apply to real financial products. It also treats monthly interest as a simple average across the term, so that figure is best used for rough comparison rather than statement-level accounting.
Embed this calculator on your site
Drop this single line where you want the calculator to appear. It is responsive, mobile-friendly, resizes automatically, and is free to use with attribution.
<script src="https://calctide.com/embed.js" data-tool="simple-interest-calculator" async></script>Preview the embed at /embed/simple-interest-calculator/.