Audited ·Last updated 27 Jul 2026·5 citations·Tier 1·0 uses

Simple Interest Calculator

Free simple interest calculator. Solve I = P x r x t for interest, principal, rate, or time. Built for T-bills, short-term loans, and auto financing.

Simple Interest Calculator

Solve For
The starting amount lent, borrowed, or invested. Required unless you are solving for principal.
$
Stated nominal annual rate. Required unless you are solving for rate.
%
Length of the loan or investment in years. Use a decimal (e.g. 0.5 for six months). Required unless you are solving for time.
yrs
Total dollar interest. Only required when solving for principal, rate, or time.
$
Interest
$1,500.00
Total simple interest accrued over the full term, computed as I = P x r x t.
Total (Principal + Interest)
$11,500.00
Principal
$10,000.00
Annual Rate
5.00%
Term (years)
3yrs

Background.

This simple interest calculator solves the single most common equation in introductory finance, I = P x r x t, for whichever variable you don't already know — the interest itself, the principal, the annual rate, or the term in years. Simple interest is the textbook starting point for understanding the time value of money, and unlike compound interest it never pays interest on previously accrued interest. The interest is computed once, on the original principal, and grows in a strictly linear way over the life of the loan or investment.

That property makes it both easy to reason about and surprisingly common in real-world contracts that most people assume must be compounding: short-term consumer loans, most U.S. auto loans documented under the federal Truth in Lending Act, U.S. Treasury bills sold at a discount, many personal lines of credit, payday and pawn-shop loans where state law permits them, and short-dated commercial paper traded in the wholesale money market. Anywhere the term is short or the contract pays out in a single lump sum at maturity, simple interest is usually the right model.

The Consumer Financial Protection Bureau's consumer-loan guidance, the Federal Reserve's H.15 release on selected interest rates, and standard graduate-level finance textbooks such as Bodie, Kane, and Marcus's Investments all introduce the concept in the same way: interest equals principal times the periodic rate times the number of periods, with no recursion and no compounding adjustment. This Quanta calculator implements that formula in arbitrary-precision decimal arithmetic so that rounding errors that show up in spreadsheet-based estimates never appear in the result.

You choose which variable to solve for, supply the other three, and the tool returns the interest, the total amount payable (A = P + I), and the principal-rate-time triple as confirmed values. Use it to size a six-month personal loan, to back-solve the implied rate on a friend-and-family note, to estimate the discount-yield interest on a 26-week T-bill, or to prorate interest for a partial year when a loan is paid off early.

The math is so tractable that it almost feels too simple to need a calculator, but in practice savers and borrowers consistently get it wrong by confusing simple interest with compound interest, by forgetting to convert percentages to decimals before multiplying, or by mixing months and years. The tool below removes all three sources of error.

Below the widget you will find the explicit formula in plain notation, a fully worked example built around the canonical $10,000 / 5% / 3-year textbook problem, five long-tail FAQs answering the questions real users search for — including how simple interest differs from compound, when banks actually use it, how to handle partial-year proration, and how the U.S. Treasury bill bank-discount methodology relates to ordinary simple interest — and primary-source citations to Bodie/Kane/Marcus, Brealey/Myers/Allen, the CFPB, and the U.S. Treasury. Read past the calculator if you want to internalize the formula well enough to estimate any short-term financing decision in your head.

What is simple interest calculator?

Simple interest is the dollar amount earned on a deposit or owed on a loan computed using only the original principal, the stated periodic rate, and the elapsed time — never on any interest that has already accrued. Expressed algebraically, it is I = P x r x t, where P is the principal (the starting amount), r is the rate expressed as a decimal per the same unit of time as t, and t is the term. If the stated rate is annual, t must be in years; if the rate is monthly, t must be in months; the units must agree or the result is meaningless. The total amount payable at maturity is A = P + I, which factors neatly to A = P(1 + rt). What makes simple interest mathematically distinct from compound interest is the absence of recursion. Compound interest reinvests each period's accrued interest into the principal base, so the next period's interest is computed on a larger number — producing exponential growth. Simple interest never folds the accrued interest back into the principal, so the growth is strictly linear. A $1,000 loan at 6% simple interest accrues exactly $60 in year one, exactly $60 in year two, and exactly $60 in year three — for a total of $180. The same loan at 6% compounded annually accrues $60, then $63.60, then $67.42 — a total of $191.02. The gap is small over short horizons and becomes enormous over long ones, which is precisely why simple interest is reserved for short-term contracts in modern finance. When you see a 30-year mortgage, a 401(k), or a high-yield savings account, you can assume it compounds. When you see a 90-day T-bill, a 60-month auto loan, or a 6-month personal loan, it is almost certainly simple-interest math.

How to use this calculator.

  1. Choose what to Solve For. Default is Interest (the unknown is I in I = P x r x t). Switch to Principal, Rate, or Time if one of those is what you need.
  2. Enter the Principal — the original amount of the loan, deposit, or investment in dollars. Leave this field alone if you selected Solve For = Principal.
  3. Enter the Annual Interest Rate as a percentage, not a decimal. For a 5% rate, type 5, not 0.05. Leave this field alone if you selected Solve For = Rate.
  4. Enter the Term in years, using decimals for partial years. Six months is 0.5, 90 days is roughly 0.2466 (90 / 365). Leave this field alone if you selected Solve For = Time.
  5. If you are solving for Principal, Rate, or Time, enter the known Interest dollar amount. This field is ignored when Solve For = Interest.
  6. Read the outputs. Interest is the dollar amount of accrued interest, Total is principal plus interest (A = P + I), and the remaining rows echo or report the solved principal, rate, and term so you can sanity-check the result.
  7. Use the result. The Total field is exactly what is owed at maturity on a simple-interest loan, or exactly what is paid out at maturity on a simple-interest deposit. There is no further compounding adjustment.

The formula.

I = P × r × t

The simple interest formula is I = P x r x t, where I is the total interest in currency units, P is the principal in the same currency, r is the periodic interest rate expressed as a decimal (a 5% annual rate becomes 0.05), and t is the time elapsed in the same period as the rate (years for an annual rate). The total amount A repayable at maturity is the principal plus the interest: A = P + I, which can be factored as A = P(1 + rt). When the unknown is not the interest, the same equation is rearranged: P = I / (r x t) when solving for principal, r = I / (P x t) when solving for rate, and t = I / (P x r) when solving for time. This calculator stores the rate as a percentage in the input (e.g. 5 for 5%) and divides by 100 internally before multiplying, which prevents the single most common user error in financial spreadsheets — multiplying by the percent symbol rather than the decimal equivalent. All arithmetic runs through arbitrary-precision Decimal.js, so values rounded to ten decimal places remain exact across the four rearrangements and the unit conversions in fractional-year scenarios. If you choose Solve For = Principal or Solve For = Time with an annual rate of exactly zero, the formula degenerates and the engine returns a clear error rather than infinity, because dividing the interest by a zero rate has no economic meaning.

A worked example.

Example

Take the canonical textbook problem from chapter five of Bodie, Kane, and Marcus's Investments: lend $10,000 at a 5% simple annual rate for three years and ask what the borrower owes at maturity. Plug the numbers into the calculator with Solve For set to Interest, Principal = 10000, Annual Rate = 5, and Term = 3. Working the formula by hand: I = P x r x t = 10000 x 0.05 x 3 = 1,500. The interest accrued is exactly $1,500, allocated as $500 per year, every year, with no compounding. The total amount payable at maturity is A = P + I = 10,000 + 1,500 = $11,500. Notice that if the same loan had compounded annually at 5%, the total would have been 10,000 x (1.05)^3 = $11,576.25 — about $76 more. That $76 gap is small in absolute terms but represents the entire economic difference between simple and compound interest over this horizon. In a 30-year scenario the gap would have grown to roughly $33,000. The calculator returns Interest = $1,500, Total = $11,500, and echoes Principal = $10,000, Rate = 5%, Term = 3 years so you can audit the result against the formula. To run the inverse problem, switch Solve For to Rate, enter Principal = 10000, Interest = 1500, and Term = 3, and the tool will return r = 5% — confirming the math closes in both directions.

principal10,000
annual Rate Percent5
solve Forinterest
years3

Frequently asked questions.

What is the difference between simple interest and compound interest?
Simple interest is computed only on the original principal, so I = P x r x t and the interest accrued each period is identical. Compound interest reinvests every period's accrued interest back into the principal base, so the next period's interest is computed on a larger number and the dollar amount earned grows period by period. Over short horizons (under a year) the two are nearly indistinguishable. Over decades they diverge dramatically: $10,000 at 7% for 30 years earns $21,000 of simple interest but $66,123 of monthly-compounded interest. The Securities and Exchange Commission's investor education materials and standard finance textbooks (Bodie/Kane/Marcus, Brealey/Myers/Allen) both teach simple interest first because it is the building block, then introduce compound interest as the more economically realistic model for long-horizon savings and investment products.
When do real banks and lenders actually use simple interest?
Simple interest dominates in three contexts. First, most U.S. auto loans are simple-interest contracts: the lender computes interest on the outstanding principal at the stated APR, day by day, but the formula reduces to I = P x r x t inside each payment period — which is why paying ahead on an auto loan reduces total interest. Second, U.S. Treasury bills are sold at a discount and quoted using a simple-interest-style bank-discount yield, regulated by the Treasury and the Federal Reserve. Third, short-term personal loans, payday loans, pawn-shop loans, and many private notes between individuals are simple-interest by contract because the term is short enough that compounding makes little economic difference. By contrast, credit cards, mortgages, savings accounts, money-market funds, and retirement accounts virtually all compound — typically daily or monthly — and should not be modeled with this calculator.
How do I prorate simple interest for a partial year?
Convert the partial period into a decimal fraction of a year and use it as t. Six months is 0.5 years; one quarter is 0.25; 90 days under a 365-day convention is 90 / 365 ≈ 0.2466 years; 90 days under the 360-day banking convention used in some commercial contracts is 90 / 360 = 0.25 years. The Federal Reserve and most U.S. commercial banks use the actual/365 convention for consumer products and actual/360 for many money-market products — so check the contract before deciding which divisor to use. Once you have t as a decimal year, the formula is unchanged: I = P x r x t. For example, $5,000 at 8% simple interest for 90 days under actual/365 = 5000 x 0.08 x (90 / 365) ≈ $98.63.
How does the U.S. Treasury bill bank-discount yield relate to ordinary simple interest?
T-bills are sold at a discount and pay face value at maturity, so the interest is the difference between the purchase price and the par value. The Treasury quotes the rate as a bank-discount yield using d = ((F − P) / F) x (360 / t), where F is face value, P is purchase price, and t is days to maturity — note the divisor is 360, not 365, and the denominator is face value rather than the amount actually invested. That makes the quoted discount yield lower than the equivalent simple-interest yield on the cash you actually put up. To convert a quoted bank-discount yield into the simple-interest equivalent (sometimes called the bond-equivalent yield or money-market yield), use BEY = (365 x d) / (360 − d x t). This Quanta calculator solves the underlying simple-interest math; for the discount-yield conversion specifically, see the Treasury's quote methodology documentation cited below.
Why does my answer come out 100 times too small or 100 times too large?
The single most common error in simple-interest calculations is mixing percent and decimal. The mathematical formula I = P x r x t uses r as a decimal — a 5% rate is r = 0.05, not r = 5. If you type 5 directly into the formula without dividing by 100, the answer comes out 100 times too large. This Quanta calculator avoids that bug by treating the input field as a percentage (you type 5, the engine divides by 100 internally), but if you ever transcribe the math to a spreadsheet remember to divide your percent value by 100 first. The second most common error is mixing months and years. If the rate is annual the term must be in years, not months; if you have a six-month loan, use t = 0.5, not t = 6.

References& sources.

  1. [1]Bodie, Zvi; Kane, Alex; Marcus, Alan J. — Investments, 12th ed., McGraw-Hill, Chapter 5: Risk, Return, and the Historical Record (introduction of simple vs. compound interest).
  2. [2]Brealey, Richard A.; Myers, Stewart C.; Allen, Franklin — Principles of Corporate Finance, 13th ed., McGraw-Hill, Chapter 2: How to Calculate Present Values (simple vs. compound interest, time-value of money foundations).
  3. [3]Consumer Financial Protection Bureau — Consumer loan education materials covering simple-interest auto loans, personal loans, and prorated interest disclosures under the Truth in Lending Act.
  4. [4]U.S. Department of the Treasury, Bureau of the Fiscal Service — Treasury Bill Auction Results and Discount Yield Methodology (the bank-discount and bond-equivalent yield conventions used for T-bills).
  5. [5]Federal Reserve Board, Statistical Release H.15 — Selected Interest Rates (canonical source of short-term U.S. money-market rates against which simple-interest estimates can be sanity-checked).

Embed

Quanta Pro

Paid features are coming later.

  • All 313 calculators remain free
  • No billing is enabled
Coming soon