Tested tool guide
Tested browser tools
Checked August 16, 2026
What Simple Interest Calculator does, with a checked example
Simple interest is rent paid on money: the lender is compensated on the original principal only, never on interest already earned. This calculator takes three inputs - principal, annual interest rate, and time - applies the formula I = P x r x t, and returns both the total interest and the final amount. The thing most users get wrong is units: the rate is annual, so time must be measured in years too. Nine months is 0.75 years, not 9, and a rate quoted as 6% means 6% per year even when payments are made monthly.
Worked example
A concrete input and expected output from the current implementation.
Input
Principal: $1,200 | Annual rate: 4% | Time: 9 months
->
Expected output
Total interest: $36.00 | Final amount: $1,236.00
The rate is annual, so 9 months converts to 0.75 years before multiplying: 1200 x 0.04 x 0.75 = 36. The final amount is the principal plus the interest: 1200 + 36 = 1236.