Fiveable

💰Intermediate Financial Accounting I Unit 5 Review

QR code for Intermediate Financial Accounting I practice questions

5.1 Future value

5.1 Future value

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
💰Intermediate Financial Accounting I
Unit & Topic Study Guides

Future value of single sums

Future value tells you what a sum of money today will be worth at some point in the future, given a specific interest rate. This concept sits at the heart of financial accounting because it drives how we value investments, savings, and financial instruments on the balance sheet.

Compounding process

Compounding means you earn interest not just on your original principal, but also on the interest that has already accumulated. This creates exponential growth rather than linear growth.

Here's how it works period by period:

  1. You start with a principal balance (your original deposit or investment).
  2. At the end of the first period, you earn interest on that principal.
  3. Your new balance becomes the old principal plus the interest earned.
  4. In the next period, you earn interest on that entire new balance, not just the original amount.

For example, if you deposit $1,000\$1{,}000 at 10% annual interest:

  • After Year 1: $1,000×1.10=$1,100\$1{,}000 \times 1.10 = \$1{,}100
  • After Year 2: $1,100×1.10=$1,210\$1{,}100 \times 1.10 = \$1{,}210 (not $1,200\$1{,}200)
  • After Year 3: $1,210×1.10=$1,331\$1{,}210 \times 1.10 = \$1{,}331

Notice that the interest earned grows each year ($100\$100, then $110\$110, then $121\$121). That's the compounding effect.

Frequency of compounding

Compounding can occur annually, semi-annually, quarterly, monthly, daily, or even continuously. The more frequently interest compounds, the higher the future value, even if the stated (nominal) annual rate stays the same.

Why? Because with more frequent compounding, interest gets added to the principal sooner, and that interest starts earning its own interest earlier.

When compounding is more frequent than annual, you need to adjust two variables:

  • Periodic interest rate: Divide the annual rate by the number of compounding periods per year. So 12% compounded quarterly becomes 0.124=0.03\frac{0.12}{4} = 0.03 per quarter.
  • Number of periods: Multiply the number of years by the compounding frequency. So 5 years compounded quarterly becomes 5×4=205 \times 4 = 20 periods.

The effective annual interest rate increases as compounding frequency increases. For example, a 12% nominal rate compounded monthly yields an effective annual rate of about 12.68%, while the same rate compounded annually stays at exactly 12%.

Future value factors

The future value factor is the multiplier that converts a present value into a future value. The formula is:

FV factor=(1+i)nFV \text{ factor} = (1 + i)^n

where ii is the interest rate per compounding period and nn is the total number of compounding periods.

To calculate future value:

FV=PV×(1+i)nFV = PV \times (1 + i)^n

For example, to find the future value of $5,000\$5{,}000 invested for 3 years at 8% compounded annually:

FV=$5,000×(1.08)3=$5,000×1.25971=$6,298.56FV = \$5{,}000 \times (1.08)^3 = \$5{,}000 \times 1.25971 = \$6{,}298.56

The factor (1.08)3=1.25971(1.08)^3 = 1.25971 is the future value factor here.

Compound interest tables

Compound interest tables list pre-calculated future value factors for various combinations of interest rates and periods. You look up the row for your number of periods and the column for your interest rate, and the table gives you the factor.

These tables are useful on exams where you don't have a calculator with exponent functions. A few things to keep in mind:

  • Tables typically show whole-number periods and common interest rates.
  • If your rate or period falls between table values, you'll need to interpolate (estimate a value between two known table entries).
  • Always confirm whether the table is for future value of $1\$1 (single sum) or future value of an annuity, since they look similar but give different factors.

Spreadsheet functions for future value

In Excel or Google Sheets, the FV function calculates future value directly:

=FV(rate, nper, pmt, pv, type)

  • rate: interest rate per period
  • nper: total number of compounding periods
  • pmt: payment per period (enter 0 for a single lump sum)
  • pv: present value (enter as a negative number, since it's cash going out)
  • type: 0 for end-of-period payments, 1 for beginning-of-period (optional, defaults to 0)

For a single sum of $5,000\$5{,}000 at 8% for 3 years compounded annually:

=FV(0.08, 3, 0, -5000) returns $6,298.56\$6{,}298.56

The negative sign on the present value follows the cash flow sign convention: money you invest (pay out) is negative, and money you receive back is positive.

Future value of annuities

An annuity is a series of equal payments made at regular intervals over a set period. Calculating the future value of an annuity tells you the total accumulated value of all those payments at the end of the term, with compound interest factored in.

Ordinary annuities vs annuities due

The distinction between these two types comes down to when each payment occurs:

  • Ordinary annuity: Payments happen at the end of each period. This is the more common assumption in accounting problems (e.g., bond interest payments).
  • Annuity due: Payments happen at the beginning of each period (e.g., rent payments or insurance premiums paid in advance).

Because annuity due payments occur one period earlier, each payment has one extra period to earn interest. That makes the future value of an annuity due always higher than an otherwise identical ordinary annuity.

To convert between them:

FVannuity due=FVordinary annuity×(1+i)FV_{\text{annuity due}} = FV_{\text{ordinary annuity}} \times (1 + i)

So if you've already calculated (or looked up) the ordinary annuity future value, just multiply by (1+i)(1 + i) to get the annuity due future value.

Compounding process, Retirement 101 Using Retirement Planning With Excel To Demonstrate Interest Compounding

Annuity tables

Annuity tables provide the future value of an ordinary annuity factor, which represents the future value of $1\$1 paid at the end of each period for nn periods at interest rate ii:

FV ordinary annuity factor=(1+i)n1iFV \text{ ordinary annuity factor} = \frac{(1 + i)^n - 1}{i}

To find the future value of an annuity, multiply the periodic payment by the factor:

FV=PMT×(1+i)n1iFV = PMT \times \frac{(1 + i)^n - 1}{i}

For example, if you deposit $2,000\$2{,}000 at the end of each year for 5 years at 6%:

FV=$2,000×(1.06)510.06=$2,000×5.63709=$11,274.19FV = \$2{,}000 \times \frac{(1.06)^5 - 1}{0.06} = \$2{,}000 \times 5.63709 = \$11{,}274.19

Spreadsheet functions for annuity future value

The same FV function in Excel handles annuities. The difference is that you now use the pmt argument instead of (or in addition to) pv:

=FV(rate, nper, pmt, pv, type)

For the example above ($2,000\$2{,}000 per year, 5 years, 6%, ordinary annuity):

=FV(0.06, 5, -2000, 0, 0) returns $11,274.19\$11{,}274.19

To switch to an annuity due, change the type argument to 1:

=FV(0.06, 5, -2000, 0, 1) returns $11,950.64\$11{,}950.64

This makes sensitivity analysis straightforward: you can quickly adjust the rate, number of periods, or payment amount and see how the future value changes.

Applications of future value

Future value calculations show up across many areas of financial planning and accounting. Here are the most common applications.

Retirement planning

Future value helps you estimate what your retirement savings will be worth at a target date. If you contribute $500\$500 per month to a retirement account earning 7% annually (compounded monthly) for 30 years, you can calculate the expected balance at retirement.

By adjusting variables like contribution amounts, expected returns, and the number of years until retirement, you can test different scenarios and determine whether your savings plan is sufficient.

Investment growth projections

Investors use future value to project how an initial investment will grow over a given time horizon. Knowing the initial amount, expected rate of return, and holding period lets you estimate the portfolio's future value. These projections inform decisions about asset allocation and whether a particular investment meets your financial goals.

Loan amortization schedules

Future value concepts also appear in loan amortization. An amortization schedule breaks each loan payment into its principal and interest components. With each payment, the outstanding loan balance decreases, and the interest portion of each payment shrinks while the principal portion grows. Understanding this relationship helps borrowers evaluate the total cost of borrowing and compare different loan options.

Limitations of future value analysis

Future value is a powerful tool, but it relies on assumptions that may not hold in practice.

Compounding process, Additional Detail on Present and Future Values | Boundless Finance

Uncertainty of interest rates

Future value calculations assume a fixed interest rate over the entire time horizon. In reality, interest rates fluctuate due to economic conditions, central bank policy, and market forces. If actual rates differ from your assumed rate, the real future value will differ from your projection.

Inflation effects on future value

Standard future value calculations give you a nominal figure that doesn't account for inflation. A future value of $100,000\$100{,}000 in 20 years won't buy as much as $100,000\$100{,}000 today. To get a more realistic picture, you can calculate real future value by using an inflation-adjusted interest rate:

Real rateNominal rateInflation rate\text{Real rate} \approx \text{Nominal rate} - \text{Inflation rate}

This gives you a better sense of actual purchasing power.

Sensitivity analysis

Small changes in input variables can produce large swings in future value, especially over long time horizons. For instance, the difference between a 6% and 8% return over 30 years is substantial. Running sensitivity analysis by varying your assumptions (interest rate, compounding frequency, time period) helps you understand the range of possible outcomes and identify which variables matter most.

Future value vs present value

Future value and present value are two sides of the same coin within the time value of money framework.

Conceptual differences

  • Future value moves money forward in time: "What will this amount be worth later?"
  • Present value moves money backward in time: "What is a future amount worth today?"

Both rely on the same core principle: a dollar today is worth more than a dollar in the future because of its earning potential.

Mathematical relationship

The two are connected by the same formula:

FV=PV×(1+i)nFV = PV \times (1 + i)^n

Rearranging to solve for present value:

PV=FV(1+i)nPV = \frac{FV}{(1 + i)^n}

If you know any three of the four variables (FVFV, PVPV, ii, nn), you can solve for the fourth.

Use cases for each approach

  • Future value is typically used when you want to know what a current amount or series of payments will grow to (e.g., retirement savings, investment projections).
  • Present value is typically used when you need to determine today's worth of future cash flows (e.g., bond valuation, capital budgeting, lease accounting).

In many accounting problems, you'll use both. For example, determining the required rate of return to reach a target future value involves setting up the FV equation and solving for ii.