How to Calculate I Bond Rate

Series I Bond Composite Rate Calculator

This rate stays the same for the life of the bond.
The variable rate based on the Consumer Price Index (CPI-U).

Calculated Results

The Composite Earnings Rate is: 0.00%

This rate will be applied to your bond for a six-month period.

function calculateIBondRate() { var fixedInput = document.getElementById('fixedRate').value; var semiInput = document.getElementById('semiannualRate').value; if (fixedInput === " || semiInput === ") { alert('Please enter both the Fixed Rate and the Semiannual Inflation Rate.'); return; } var fixed = parseFloat(fixedInput) / 100; var inflation = parseFloat(semiInput) / 100; // Official Treasury Formula: [Fixed rate + (2 x Semiannual inflation rate) + (Fixed rate x Semiannual inflation rate)] var composite = fixed + (2 * inflation) + (fixed * inflation); // The rate is never lower than zero if (composite < 0) { composite = 0; } var resultDisplay = document.getElementById('ibond-result'); var output = document.getElementById('compositeOutput'); output.innerHTML = (composite * 100).toFixed(2) + '%'; resultDisplay.style.display = 'block'; }

How to Calculate I Bond Rate

Understanding how the interest on a Series I Savings Bond is determined is crucial for any conservative investor. Unlike standard savings accounts or CDs, the I Bond rate is not a single flat number. Instead, it is a composite rate comprised of two distinct parts: a fixed rate and a semiannual inflation rate.

The Components of the Rate

  • The Fixed Rate: This rate is announced every six months (May and November) and remains the same for the entire 30-year life of the bond.
  • The Semiannual Inflation Rate: This rate changes every six months based on the Consumer Price Index for All Urban Consumers (CPI-U).

The Official Mathematical Formula

The U.S. Treasury uses a specific formula to combine these two rates. It isn't as simple as adding them together; there is a cross-multiplication step involved to ensure the fixed rate also earns interest based on inflation.

Composite Rate = [Fixed Rate + (2 × Semiannual Inflation Rate) + (Fixed Rate × Semiannual Inflation Rate)]

Practical Example

Let's look at a realistic scenario using recent Treasury figures:

  1. Fixed Rate: 1.30% (0.0130)
  2. Semiannual Inflation Rate: 1.97% (0.0197)

Applying the formula:

Step 1: 0.0130 + (2 × 0.0197) + (0.0130 × 0.0197)
Step 2: 0.0130 + 0.0394 + 0.0002561
Step 3: 0.0526561 or 5.27%

Important Facts About I Bond Interest

When calculating your returns, keep these rules in mind:

  • Rate Floors: The composite rate cannot go below zero. Even if we experience significant deflation, you will never lose your principal value.
  • Compounding: Interest is earned monthly and compounded semiannually. This means every six months, the interest earned is added to the principal, and you begin earning interest on that new, larger amount.
  • Taxation: Interest is subject to federal income tax but is exempt from state and local income taxes. You can defer federal taxes until you cash the bond or it reaches maturity.
  • Holding Period: You must hold an I Bond for at least 12 months. If you cash it in before five years, you forfeit the last three months of interest.

Leave a Comment