Investment Problem: CD & Bond Interest

Finance & Interest 9th-10th Grade
PROBLEM
A mother wants to invest $7000 for her son's future education. She invests a portion in a CD earning 4% and the remainder in a savings bond earning 7%. If the total interest earned after one year is $420, how much was invested in the CD account?

What This Problem Teaches

  • Setting up a system of linear equations from word problems involving money allocation
  • Converting percentage rates to decimal form for mathematical calculations
  • Using substitution method to solve two-equation systems efficiently
  • Distinguishing between principal (investment amount) and interest (earnings) in financial contexts
  • Verification techniques for investment problems by checking both total amount and total return constraints

Visualizing the Problem

Let's organize the given information in a table to see the relationship between investments and returns:

Investment TypeAmountInterest RateInterest Earned
CD Accountx4%0.04x
Savings Bond7000 - x7%0.07(7000 - x)
Total$7000$420

Solution: The System of Equations Approach

Step 1 — Define Variables

Let x = amount invested in the CD account (what we're solving for)

Then 7000 - x = amount invested in the savings bond (the remainder)

Step 2 — Set Up the Interest Equation

The total interest earned equals the sum of interest from both investments:

Interest from CD + Interest from Bond = Total Interest
0.04x + 0.07(7000 - x) = 420

Step 3 — Solve for x

Expand the equation and combine like terms:

0.04x + 0.07(7000) - 0.07x = 420
0.04x + 490 - 0.07x = 420
-0.03x + 490 = 420

Step 4 — Isolate x

Subtract 490 from both sides and divide by the coefficient:

-0.03x = 420 - 490
-0.03x = -70
x = -70 ÷ (-0.03) = 2333.33

Step 5 — Find Both Investment Amounts

CD amount: x = $2333.33

Bond amount: 7000 - 2333.33 = $4666.67

Solution: Method 2 — The Interest Rate Difference Method

Step 1 — Consider What Happens If All Money Earned 7%

If the entire $7000 were invested at 7%, the total interest would be:

$7000 × 0.07 = $490

Step 2 — Calculate the Interest "Shortfall"

Since the actual interest is only $420, there's a shortfall of:

$490 - $420 = $70

Step 3 — Find the Rate Difference Per Dollar

Each dollar in the CD earns 3% less than if it were in the bond:

7% - 4% = 3% = 0.03 per dollar

Step 4 — Calculate CD Amount

The amount in the CD is the shortfall divided by the rate difference:

CD amount = $70 ÷ 0.03 = $2333.33

This method gives us the same answer by thinking about the "opportunity cost" of choosing the lower-rate investment.

The amount invested in the CD account is $2333.33

Verification

Let's check our answer by verifying both the total investment and total interest:

Check Total Investment

CD amount + Bond amount = Total
$2333.33 + $4666.67 = $7000 ✓

Check Total Interest

CD interest: $2333.33 × 0.04 = $93.33
Bond interest: $4666.67 × 0.07 = $326.67
Total interest: $93.33 + $326.67 = $420.00 ✓

Both constraints are satisfied, confirming our solution is correct.

Common Pitfalls

✗ Mistake 1: Forgetting to convert percentages to decimals
Writing the equation as 4x + 7(7000 - x) = 420 instead of 0.04x + 0.07(7000 - x) = 420. This leads to an impossibly large solution because you're treating 4% as 4 instead of 0.04.
✗ Mistake 2: Setting up the wrong relationship
Some students write x + (7000 - x) = 420, confusing the total investment with the total interest. The $420 is interest earned, not principal invested.
✗ Mistake 3: Mixing up which investment gets which variable
Defining x as the bond amount but then calculating CD interest as 0.04x. Stay consistent with your variable definitions throughout the problem.
✗ Mistake 4: Arithmetic errors with negative coefficients
When combining 0.04x - 0.07x, getting +0.03x instead of -0.03x. Double-check the sign when the higher rate coefficient is being subtracted.

The Pattern Behind This

All two-investment problems with different interest rates follow the same general structure:

Let x = amount in first investment
Let (Total - x) = amount in second investment

Interest equation: r₁ × x + r₂ × (Total - x) = Total Interest

Solving: x = (r₂ × Total - Total Interest) ÷ (r₂ - r₁)

In our problem: x = (0.07 × 7000 - 420) ÷ (0.07 - 0.04) = 70 ÷ 0.03 = $2333.33

Important: This formula only works when you consistently define x as the investment with rate r₁. If the rates are swapped, the formula changes accordingly.

Real Applications

  • Personal Finance: Diversifying retirement savings between conservative CDs and higher-yield mutual funds while targeting a specific income goal
  • Corporate Treasury: Companies split cash reserves between safe money market accounts and higher-risk investments to balance liquidity needs with return targets
  • Portfolio Management: Financial advisors use similar calculations to allocate client funds between bonds and stocks based on risk tolerance and income requirements

Four "What-If?" Problems

1
Lower Total Interest

The mother still invests $7000 split between a 4% CD and 7% bond, but the total interest earned is only $385. How much was invested in the CD account?

Step 1 — Set up the equation

Let x = CD amount. Interest equation: 0.04x + 0.07(7000 - x) = 385

Step 2 — Expand and simplify

0.04x + 490 - 0.07x = 385
-0.03x = 385 - 490 = -105

Step 3 — Solve for x

x = -105 ÷ (-0.03) = 3500

Step 4 — Verify

CD: $3500 at 4% = $140 interest
Bond: $3500 at 7% = $245 interest
Total: $140 + $245 = $385 ✓

Answer: $3500 in the CD account

2
Three Investment Split

The mother has $9000 to split among three accounts: CD at 4%, bond at 7%, and stock fund at 10%. She invests twice as much in the bond as in the CD. Total interest is $600. Find all three amounts.

Step 1 — Define variables

Let x = CD amount, 2x = bond amount, 9000 - 3x = stock amount

Step 2 — Set up interest equation

0.04x + 0.07(2x) + 0.10(9000 - 3x) = 600

Step 3 — Simplify

0.04x + 0.14x + 900 - 0.30x = 600
-0.12x = -300

Step 4 — Solve and find all amounts

x = 2500
CD: $2500, Bond: $5000, Stock: $1500

Step 5 — Verify

Interest: $100 + $350 + $150 = $600 ✓
Total: $2500 + $5000 + $1500 = $9000 ✓

Answer: CD $2500, Bond $5000, Stock $1500

3
Find the Unknown Rate

The mother invests $3000 in a 4% CD and $4000 in a bond with unknown interest rate r%. If the total interest earned is $450, what is the bond's interest rate?

Step 1 — Set up the equation

CD interest + Bond interest = Total interest
3000(0.04) + 4000(r) = 450

Step 2 — Calculate CD interest

120 + 4000r = 450

Step 3 — Solve for r

4000r = 450 - 120 = 330
r = 330 ÷ 4000 = 0.0825

Step 4 — Convert to percentage

r = 0.0825 = 8.25%

Step 5 — Verify

CD: $3000 × 4% = $120
Bond: $4000 × 8.25% = $330
Total: $120 + $330 = $450 ✓

Answer: The bond's interest rate is 8.25%

4
Compound Interest Challenge

The mother splits $8000 between a 4% CD and 6% bond, both compounding annually. After 2 years, the total value of both investments is $8960. How much was initially in the CD?

Step 1 — Set up compound interest equation

Let x = CD amount. After 2 years:
x(1.04)² + (8000-x)(1.06)² = 8960

Step 2 — Calculate growth factors

x(1.0816) + (8000-x)(1.1236) = 8960

Step 3 — Expand and simplify

1.0816x + 8988.80 - 1.1236x = 8960
-0.042x = 8960 - 8988.80 = -28.80

Step 4 — Solve for x

x = -28.80 ÷ (-0.042) ≈ 686

Step 5 — Verify with exact calculation

CD: $686 grows to $686(1.04)² = $742.06
Bond: $7314 grows to $7314(1.06)² = $8217.94
Total: $742.06 + $8217.94 = $8960 ✓

Answer: $686 was initially invested in the CD

Frequently Asked Questions

How do you set up a system of equations for investment allocation problems?+
Write one equation for the total amount invested and another for the total interest earned. In this problem: x + y = 7000 (total principal) and 0.04x + 0.07y = 420 (total interest), where x is the CD amount and y is the bond amount. The key is recognizing that interest = principal × rate for each investment.
What's the difference between simple interest and compound interest in investment problems?+
Simple interest is calculated only on the principal amount (I = Prt), while compound interest includes interest earned on previous interest. Most basic investment allocation problems use simple interest for one-year periods, like this example where we calculate 4% of the CD amount plus 7% of the bond amount without considering interest-on-interest effects.
How do you verify your answer in a two-investment problem?+
Check both constraints: the amounts should sum to the total investment, and the interest calculations should sum to the given total interest. Here, $2333.33 + $4666.67 = $7000 ✓ and $2333.33(0.04) + $4666.67(0.07) = $93.33 + $326.67 = $420 ✓. Both conditions must be satisfied for a correct solution.
DN

Dr. Neven Jurkovic

Professor of Mathematics • 15+ years teaching algebra and financial mathematics

NJ
Neven Jurkovic, PhD

Professor of Computer Science, Palo Alto College, Alamo Colleges District, San Antonio, TX

Developer of Algebrator

Contact

This solution was prepared with AI assistance and reviewed by Dr. Jurkovic for mathematical accuracy and pedagogical clarity.

2026-06-10