HomeFinance › Simple Interest Calculator

Simple Interest Calculator

Computes interest that accrues only on the original principal (no compounding) over a term in years, and the resulting total amount.

When to use

The agreement states simple, non-compounding interest, e.g. short-term personal loans, some bonds and statutory interest on late payments, or you want a quick estimate.

Do not use when: Interest is reinvested or charged on accrued interest (use compound-interest), or you need the level payment of an amortizing loan (use loan-payment).

Formula

interest = principal × (annual_rate_percent / 100) × years; total_amount = principal + interest

Inputs

ParameterTypeUnitRequiredDescription
principalnumberyesAmount lent, borrowed or deposited. Range: ≥ 0, ≤ 1000000000000
annual_rate_percentnumber%yesSimple annual rate in percent; 5 means 5 %. Range: ≥ 0, ≤ 1000
yearsnumberyearsyesTerm in years; fractional values allowed (6 months = 0.5, 90 days = 90/365 ≈ 0.2466). Range: ≥ 0, ≤ 200

Outputs

OutputTypeUnitDescription
interestnumberTotal simple interest over the term.
total_amountnumberPrincipal plus interest.
interest_per_yearnumberprincipal × rate, the constant yearly interest.
interest_per_monthnumberinterest_per_year / 12.

Example

1,000 at 5 % for 3 years: {"principal":1000,"annual_rate_percent":5,"years":3}{"interest":150,"total_amount":1150,"interest_per_year":50,"interest_per_month":4.17}

25,000 at 4.5 % for 2.5 years: {"principal":25000,"annual_rate_percent":4.5,"years":2.5}{"interest":2812.5,"total_amount":27812.5}

GET https://tttkmbb.com/api/v1/calculate/simple-interest?principal=1000&annual_rate_percent=5&years=3

Machine access

Sources

FAQ

How do I enter a term in months or days?

Convert to years: months / 12, days / 365 (or / 360 if the contract uses a 360-day banker's year). Example: 18 months = 1.5 years.

How does simple interest compare with compound interest?

Simple interest grows linearly; compound interest grows exponentially because earned interest also earns interest. Over one period at annual compounding they are equal; over longer terms compounding yields more.

Related calculators