Algebra

Systems of Equations Word Problems

Last updated: March 2026 · Intermediate
Before you start

You should be comfortable with:

Real-world applications
πŸ’°
Retail & Finance

Discounts, tax, tips, profit margins

πŸ’Š
Nursing

Medication dosages, IV drip rates, vital monitoring

⚑
Electrical

Voltage drop, wire sizing, load balancing

The hardest part of systems of equations is rarely the algebra β€” it is setting up the equations from a real situation. Word problems require you to read carefully, define variables, and translate sentences into two equations before you can solve. This page walks through the most common types of systems word problems with a clear, repeatable process for each.

The Setup Process

Every systems word problem follows the same general approach:

  1. Read the problem completely before writing anything
  2. Define your variables β€” write β€œLet xx = …” and β€œLet yy = …” with clear descriptions
  3. Find two independent relationships in the problem and write each as an equation
  4. Solve using substitution or elimination (choose whichever fits the equations best)
  5. Answer the actual question β€” the problem may ask for just one of the variables, or a combined quantity
  6. Check by substituting back into the original word problem (not just the equations)

Type 1: Basic Two-Quantity Problems

These problems tell you two things about two unknown quantities β€” usually a total and a relationship between them.

Example 1: Ticket Sales

A school sold 340 tickets for a play. Adult tickets cost $8 and student tickets cost $5. Total ticket revenue was $2,180. How many of each type were sold?

Define variables:

Let aa = number of adult tickets, ss = number of student tickets

Write two equations:

Total tickets: a+s=340a + s = 340

Total revenue: 8a+5s=21808a + 5s = 2180

Solve by substitution. From the first equation: a=340βˆ’sa = 340 - s

Substitute into the second:

8(340βˆ’s)+5s=21808(340 - s) + 5s = 2180

2720βˆ’8s+5s=21802720 - 8s + 5s = 2180

2720βˆ’3s=21802720 - 3s = 2180

βˆ’3s=βˆ’540-3s = -540

s=180s = 180

Then a=340βˆ’180=160a = 340 - 180 = 160.

Answer: 160 adult tickets and 180 student tickets.

Check: 160+180=340160 + 180 = 340 tickets. Revenue: 8(160)+5(180)=1280+900=21808(160) + 5(180) = 1280 + 900 = 2180. Both true.

Type 2: Mixture Problems

Mixture problems involve combining two things with different concentrations, prices, or rates to get a specific mixture.

Example 2: Coffee Blending

A store mixes premium coffee at $12 per pound with standard coffee at $7 per pound to create 50 pounds of a blend that sells for $9 per pound. How many pounds of each type should be used?

Define variables:

Let pp = pounds of premium coffee, ss = pounds of standard coffee

Write two equations:

Total weight: p+s=50p + s = 50

Total value: 12p+7s=9(50)=45012p + 7s = 9(50) = 450

Solve by substitution. From the first equation: p=50βˆ’sp = 50 - s

12(50βˆ’s)+7s=45012(50 - s) + 7s = 450

600βˆ’12s+7s=450600 - 12s + 7s = 450

600βˆ’5s=450600 - 5s = 450

βˆ’5s=βˆ’150-5s = -150

s=30s = 30

Then p=50βˆ’30=20p = 50 - 30 = 20.

Answer: 20 pounds of premium and 30 pounds of standard coffee.

Check: 20+30=5020 + 30 = 50 pounds. Value: 12(20)+7(30)=240+210=450=9Γ—5012(20) + 7(30) = 240 + 210 = 450 = 9 \times 50. Both true.

Example 3: Solution Concentration (Nursing Application)

A nurse needs 500 mL of a 30% dextrose solution but only has 20% and 50% dextrose solutions available. How much of each should be mixed?

Define variables:

Let xx = mL of 20% solution, yy = mL of 50% solution

Write two equations:

Total volume: x+y=500x + y = 500

Total dextrose content: 0.20x+0.50y=0.30(500)=1500.20x + 0.50y = 0.30(500) = 150

Solve by substitution. From the first equation: x=500βˆ’yx = 500 - y

0.20(500βˆ’y)+0.50y=1500.20(500 - y) + 0.50y = 150

100βˆ’0.20y+0.50y=150100 - 0.20y + 0.50y = 150

100+0.30y=150100 + 0.30y = 150

0.30y=500.30y = 50

y=500.30=166.67y = \frac{50}{0.30} = 166.67

Then x=500βˆ’166.67=333.33x = 500 - 166.67 = 333.33.

Answer: Approximately 333 mL of the 20% solution and 167 mL of the 50% solution.

Check: 333.33+166.67=500333.33 + 166.67 = 500 mL. Dextrose: 0.20(333.33)+0.50(166.67)=66.67+83.33=1500.20(333.33) + 0.50(166.67) = 66.67 + 83.33 = 150 mL. That is 150500=0.30\frac{150}{500} = 0.30, or 30%. Correct.

Type 3: Distance-Rate-Time Problems

These use the relationship d=rtd = rt (distance equals rate times time) for two travelers or trips.

Example 4: Two Travelers

Two cars leave the same city at the same time, traveling in opposite directions. Car A travels at 55 mph and Car B travels at 65 mph. After how many hours are they 420 miles apart?

Define variables:

Let tt = time in hours (both cars travel the same amount of time)

This problem actually only needs one variable, but let us set it up as a system to see the structure:

Let dAd_A = distance Car A travels, dBd_B = distance Car B travels

Write two equations:

Total distance: dA+dB=420d_A + d_B = 420

Rate relationship: dA=55td_A = 55t and dB=65td_B = 65t

Substitute:

55t+65t=42055t + 65t = 420

120t=420120t = 420

t=3.5t = 3.5

Answer: They are 420 miles apart after 3.5 hours.

Here is a more complex version that truly requires two variables:

Example 5: Round-Trip with Wind

A pilot flies 600 miles with a tailwind and returns the same 600 miles against the wind. The trip out takes 2 hours and the return takes 3 hours. Find the speed of the plane in still air and the speed of the wind.

Define variables:

Let pp = plane speed in still air, ww = wind speed

With a tailwind, effective speed is p+wp + w. Against the wind, it is pβˆ’wp - w.

Write two equations using d=rtd = rt:

Outbound: 600=(p+w)(2)600 = (p + w)(2), which gives p+w=300p + w = 300

Return: 600=(pβˆ’w)(3)600 = (p - w)(3), which gives pβˆ’w=200p - w = 200

Solve by elimination. Add the two equations:

(p+w)+(pβˆ’w)=300+200(p + w) + (p - w) = 300 + 200

2p=5002p = 500

p=250p = 250

Substitute back: 250+w=300250 + w = 300, so w=50w = 50.

Answer: The plane’s speed in still air is 250 mph and the wind speed is 50 mph.

Type 4: Break-Even Problems

Break-even problems find the point where revenue equals cost β€” where a business stops losing money and starts making a profit.

Example 6: Small Business Break-Even

A small business has fixed costs of $3,000 per month and variable costs of $8 per unit. Each unit sells for $20. How many units must be sold to break even?

Define variables:

Let xx = number of units, yy = dollar amount

Write two equations:

Cost: y=8x+3000y = 8x + 3000

Revenue: y=20xy = 20x

At break-even, cost equals revenue:

8x+3000=20x8x + 3000 = 20x

3000=12x3000 = 12x

x=250x = 250

y=20(250)=5000y = 20(250) = 5000

Answer: The business breaks even at 250 units, where both cost and revenue equal $5,000.

Below 250 units, costs exceed revenue (loss). Above 250 units, revenue exceeds costs (profit).

Type 5: Coin and Value Problems

These problems involve counting items that have different values.

Example 7: Coin Problem

A jar contains quarters and dimes. There are 54 coins totaling $9.30. How many of each coin are there?

Define variables:

Let qq = number of quarters, dd = number of dimes

Write two equations:

Total coins: q+d=54q + d = 54

Total value: 0.25q+0.10d=9.300.25q + 0.10d = 9.30

Solve by elimination. Multiply the first equation by βˆ’0.10-0.10:

βˆ’0.10qβˆ’0.10d=βˆ’5.40-0.10q - 0.10d = -5.40

Add to the second equation:

(0.25q+0.10d)+(βˆ’0.10qβˆ’0.10d)=9.30+(βˆ’5.40)(0.25q + 0.10d) + (-0.10q - 0.10d) = 9.30 + (-5.40)

0.15q=3.900.15q = 3.90

q=26q = 26

Then d=54βˆ’26=28d = 54 - 26 = 28.

Answer: 26 quarters and 28 dimes.

Check: 26+28=5426 + 28 = 54 coins. Value: 0.25(26)+0.10(28)=6.50+2.80=9.300.25(26) + 0.10(28) = 6.50 + 2.80 = 9.30. Both true.

Real-World Application: Electrician β€” Circuit Design

An electrician is wiring two circuits in parallel. The total current flowing through both circuits is 12 amps. Due to Ohm’s Law (V=IRV = IR), the voltage across both circuits is the same. Circuit A has a resistance of 10 ohms and Circuit B has a resistance of 15 ohms. Find the current through each circuit.

Define variables:

Let IAI_A = current through Circuit A, IBI_B = current through Circuit B

Write two equations:

Total current: IA+IB=12I_A + I_B = 12

Equal voltage (since V=IRV = IR and voltage is the same): 10IA=15IB10 I_A = 15 I_B

Solve. From the second equation:

IA=1510IB=1.5IBI_A = \frac{15}{10} I_B = 1.5 I_B

Substitute into the first equation:

1.5IB+IB=121.5 I_B + I_B = 12

2.5IB=122.5 I_B = 12

IB=4.8Β ampsI_B = 4.8 \text{ amps}

IA=1.5(4.8)=7.2Β ampsI_A = 1.5(4.8) = 7.2 \text{ amps}

Answer: Circuit A carries 7.2 amps and Circuit B carries 4.8 amps.

Check: 7.2+4.8=127.2 + 4.8 = 12 amps. Voltage A: 10(7.2)=7210(7.2) = 72 V. Voltage B: 15(4.8)=7215(4.8) = 72 V. Equal voltages confirm the answer.

Choosing a Solution Method

Once you have your two equations, choose the fastest method:

SituationBest Method
One variable is already isolated (e.g., y=3x+5y = 3x + 5)Substitution
Both equations are in standard form with matching coefficientsElimination
Coefficients are messy or largeMultiply first, then eliminate
You need a visual estimateGraphing

Common Mistakes to Avoid

  1. Defining variables too vaguely. Writing β€œlet xx = tickets” is not enough. Write β€œlet xx = number of adult tickets sold.” Include units and specifics.
  2. Writing only one equation. A system needs two equations. Look for two separate relationships in the problem β€” often a β€œtotal” equation and a β€œvalue” equation.
  3. Mixing up units. If one equation uses dollars and another uses cents, you will get wrong answers. Keep units consistent.
  4. Forgetting to answer the actual question. If the problem asks β€œhow much more does Plan A cost?”, finding xx and yy is not the final answer β€” you still need to compute the difference.
  5. Not checking in the original word problem. Your solution should make sense in context. Negative ticket sales or fractional people are signals that something went wrong.

Practice Problems

Test your understanding with these problems. Click to reveal each answer.

Problem 1: The sum of two numbers is 52 and their difference is 18. Find the two numbers.

Let xx = larger number, yy = smaller number.

x+y=52x + y = 52

xβˆ’y=18x - y = 18

Add: 2x=702x = 70, so x=35x = 35

Substitute: 35+y=5235 + y = 52, so y=17y = 17

Answer: The numbers are 35 and 17.

Problem 2: A store sells two types of granola bars. Regular bars cost $1.50 and premium bars cost $2.75. In one day, the store sold 80 bars for a total of $157.50. How many of each type were sold?

Let rr = regular bars, pp = premium bars.

r+p=80r + p = 80

1.50r+2.75p=157.501.50r + 2.75p = 157.50

From the first equation: r=80βˆ’pr = 80 - p

1.50(80βˆ’p)+2.75p=157.501.50(80 - p) + 2.75p = 157.50

120βˆ’1.50p+2.75p=157.50120 - 1.50p + 2.75p = 157.50

1.25p=37.501.25p = 37.50

p=30p = 30, r=50r = 50

Answer: 50 regular bars and 30 premium bars.

Problem 3: A boat travels 48 miles downstream in 2 hours and 48 miles upstream in 4 hours. Find the speed of the boat in still water and the speed of the current.

Let bb = boat speed, cc = current speed.

Downstream: 48=(b+c)(2)48 = (b + c)(2), so b+c=24b + c = 24

Upstream: 48=(bβˆ’c)(4)48 = (b - c)(4), so bβˆ’c=12b - c = 12

Add: 2b=362b = 36, so b=18b = 18

Substitute: 18+c=2418 + c = 24, so c=6c = 6

Answer: Boat speed is 18 mph, current speed is 6 mph.

Problem 4: A nurse needs to prepare 200 mL of a 15% alcohol solution by mixing a 10% solution with a 25% solution. How much of each solution is needed?

Let xx = mL of 10% solution, yy = mL of 25% solution.

x+y=200x + y = 200

0.10x+0.25y=0.15(200)=300.10x + 0.25y = 0.15(200) = 30

From the first equation: x=200βˆ’yx = 200 - y

0.10(200βˆ’y)+0.25y=300.10(200 - y) + 0.25y = 30

20βˆ’0.10y+0.25y=3020 - 0.10y + 0.25y = 30

0.15y=100.15y = 10

y=66.67y = 66.67, x=133.33x = 133.33

Answer: Approximately 133 mL of the 10% solution and 67 mL of the 25% solution.

Problem 5: A company makes widgets. Fixed costs are $5,500 per month and each widget costs $4 to produce. Widgets sell for $15 each. How many widgets must the company sell per month to break even?

Let xx = number of widgets, yy = dollar amount.

Cost: y=4x+5500y = 4x + 5500

Revenue: y=15xy = 15x

Break even: 4x+5500=15x4x + 5500 = 15x

5500=11x5500 = 11x

x=500x = 500

y=15(500)=7500y = 15(500) = 7500

Answer: The company breaks even at 500 widgets per month, where cost and revenue both equal $7,500.

Problem 6: An electrician orders two types of wire. Type A costs $0.85 per foot and Type B costs $1.40 per foot. The total order is 300 feet costing $327. How many feet of each type were ordered?

Let aa = feet of Type A, bb = feet of Type B.

a+b=300a + b = 300

0.85a+1.40b=3270.85a + 1.40b = 327

From the first equation: a=300βˆ’ba = 300 - b

0.85(300βˆ’b)+1.40b=3270.85(300 - b) + 1.40b = 327

255βˆ’0.85b+1.40b=327255 - 0.85b + 1.40b = 327

0.55b=720.55b = 72

b=720.55β‰ˆ130.91b = \frac{72}{0.55} \approx 130.91

This does not give a whole number, so let us re-check. With b=130.91b = 130.91, a=169.09a = 169.09. Wire can be ordered in non-whole-foot lengths, so this is acceptable:

aβ‰ˆ169.1a \approx 169.1 feet, bβ‰ˆ130.9b \approx 130.9 feet

Answer: Approximately 169 feet of Type A and 131 feet of Type B.

Key Takeaways

  • The hardest step is translating the word problem into two equations β€” always define your variables with clear descriptions and units
  • Most word problems give you a total equation and a value/rate equation
  • Common problem types include ticket/coin counting, mixtures, distance-rate-time, and break-even analysis
  • Choose substitution when one variable is easily isolated; choose elimination when both equations are in standard form
  • Always check your answer in the original word problem, not just the equations β€” the answer must make sense in context (no negative quantities or fractional people)

Return to Algebra for more topics in this section.

Last updated: March 29, 2026