Deferred Payment and Bond Calculator
Formula and sources checked · How we check
What a loan repaid in one lump sum at maturity grows to, or what a known amount due at maturity is worth today.
What you know The amount borrowed — find what is owed at maturity, Amount borrowed 25000, Annual interest rate 6, Years to maturity 10 years
$44,771.19
Answer for the example below. Change any field and the number follows, with the working underneath.
- What one dollar grows to over the term
1.791- Effective annual yield
(pow(factor, 1 / years) - 1) * 1006 %- Owed at maturity
principal * factor$44,771- Worth today
due_amount / factor$27,920- Answer
mode_deferred * amount_due + mode_bond * present_value44,771.192- Interest over the term
mode_deferred * (amount_due - principal) + mode_bond * (due_amount - present_value)$19,771- Multiple of the starting amount
factor1.791- Years to double at this rate
rate == 0 ? 0 : log(2) / log(pow(factor, 1 / years))11.896 years
Worked example
$25,000 borrowed at 6% with nothing repaid until year ten comes to $44,771 — the interest alone is $19,771, four fifths of what was borrowed. Nothing amortises, so every year of interest earns interest of its own.
How to work it out yourself
- 1.Choose which end you know. Lending money and asking what comes back is the deferred case; being promised an amount and asking what to pay for it is the bond case.
- 2.Set the compounding frequency to match the instrument. US bonds conventionally use semi-annual compounding, and using annual instead understates the yield.
- 3.Read the multiple. It is the same number for any principal, which makes it the quickest way to compare two terms without arithmetic.
The formula
- What one dollar grows to over the term
- Effective annual yield
(pow(factor, 1 / years) - 1) * 100 - Owed at maturity
principal * factor - Worth today
due_amount / factor - Answer
mode_deferred * amount_due + mode_bond * present_value - Interest over the term
mode_deferred * (amount_due - principal) + mode_bond * (due_amount - present_value) - Multiple of the starting amount
factor - Years to double at this rate
rate == 0 ? 0 : log(2) / log(pow(factor, 1 / years))
Source: US SEC Investor.gov — bonds and how they are priced, US Treasury — securities pricing and accrued interest
Questions people actually ask
- How is this different from an instalment loan?
- Nothing is repaid until maturity, so the balance never falls and interest compounds on the whole amount for the whole term. An instalment loan of the same size and rate costs far less, because every payment removes principal that would otherwise have carried interest for the rest of the term.
- What is the bond mode for?
- Discounting: turning a known amount due later into what it is worth now. A zero-coupon bond paying $50,000 in ten years at 6% is worth $27,919 today, and that is the price at which buying it earns exactly 6%. Pay more and you earn less than 6%.
- Does this price a coupon bond?
- No. This handles a single payment at maturity — a zero-coupon bond, a discount note, or a balloon. A bond paying regular coupons is the sum of many discounted payments plus the discounted face value, and each coupon needs its own term.
- Why does compounding frequency matter more here?
- Because there is nothing else happening. On an instalment loan the payments dominate; here the only mechanic is interest earning interest, so the frequency compounds over the entire term. Over ten years at 6%, annual compounding gives 1.791 times the principal and continuous gives 1.822.
Related
- Loan Payment CalculatorMonthly payment and total interest on any fixed-rate instalment loan — car, personal or student.
- Compound Interest CalculatorFuture value of a starting balance plus monthly contributions, separating what you put in from what the interest earned.
- APY CalculatorAnnual percentage yield from a rate and its compounding frequency, and what it earns on a balance in dollars.
- Mortgage Payment CalculatorMonthly principal-and-interest payment on a fixed-rate mortgage, plus total interest paid over the full term.
- Credit Card Payoff CalculatorHow many months a card balance takes to clear at a fixed monthly payment, and what the interest costs.
- Amortization CalculatorFull payment schedule for a loan, with the option to pay biweekly or add extra each month and see what it saves.
Put this calculator on your site
Free, no attribution required beyond the link.
<iframe src="https://rulecalculators.com/embed/deferred-payment-loan" width="100%" height="420" style="border:1px solid #e7e4de;border-radius:12px" title="Deferred Payment and Bond Calculator"></iframe>