Ticket Sales System: Solve for Adult & Child Attendance

Systems of Equations 9th-10th Grade
PROBLEM
Adult tickets cost $17.95 and children's tickets cost $12.95. They made $7,355 in ticket sales from a total of 500 people who attended. How many adult and how many children tickets were sold?

What This Problem Teaches

  • Setting up systems of linear equations from real-world scenarios involving two unknowns
  • Translating "total quantity" and "total value" constraints into mathematical equations
  • Using elimination method to solve systems efficiently, especially with decimal coefficients
  • Converting decimal problems to whole numbers to reduce calculation errors
  • Verifying solutions by checking both original conditions independently

Visualizing the Problem

Let's organize the given information to see the structure clearly:

Ticket TypePrice EachNumber SoldTotal Revenue
Adult$17.95a (unknown)17.95a
Children$12.95c (unknown)12.95c
Totals500 people$7,355

This gives us two constraints: a + c = 500 (total people) and 17.95a + 12.95c = 7355 (total revenue).

Solution: Method 1 — The Elimination Approach

Step 1 — Define variables

Let a = number of adult tickets sold and c = number of children's tickets sold.

Step 2 — Set up the system of equations

From the problem constraints:

a + c = 500 (total people)
17.95a + 12.95c = 7355 (total revenue)

Step 3 — Eliminate decimals by multiplying by 100

To avoid decimal arithmetic, multiply the second equation by 100:

a + c = 500
1795a + 1295c = 735500

Step 4 — Use elimination to solve for one variable

Multiply the first equation by -1295 to eliminate c:

-1295a - 1295c = -647500
1795a + 1295c = 735500

Add the equations:

500a = 88000
a = 176

Step 5 — Find the other variable

Substitute a = 176 into the first equation:

176 + c = 500
c = 324

Solution: Method 2 — The Substitution Strategy

Step 1 — Solve the simpler equation for one variable

From a + c = 500, we get c = 500 - a.

Step 2 — Substitute into the revenue equation

Replace c in the revenue equation:

17.95a + 12.95(500 - a) = 7355
17.95a + 6475 - 12.95a = 7355
5a + 6475 = 7355
5a = 880
a = 176

Step 3 — Find the second variable

Using c = 500 - a:

c = 500 - 176 = 324
176 adult tickets and 324 children's tickets were sold.

Verification

Let's check both conditions:

Total people: 176 + 324 = 500 ✓

Total revenue:

Adult revenue: 176 × $17.95 = $3,159.20
Children revenue: 324 × $12.95 = $4,195.80
Total: $3,159.20 + $4,195.80 = $7,355.00 ✓

Both conditions are satisfied, confirming our solution is correct.

Watch Out For These

✗ Mistake 1: Setting up the wrong revenue equation
Writing 17.95 + 12.95 = 7355 instead of 17.95a + 12.95c = 7355. Remember that total revenue comes from multiplying each price by the number of tickets sold at that price.
✗ Mistake 2: Decimal calculation errors
Trying to work directly with 17.95a + 12.95c = 7355 often leads to arithmetic mistakes. Converting to whole numbers by multiplying by 100 makes the calculations much cleaner and more reliable.
✗ Mistake 3: Forgetting to check reasonableness
Getting an answer like 400 adult tickets and 100 children's tickets. This would mean 80% adult attendance, which might seem high. While mathematically possible, the actual answer (176 adults, 324 children) shows children's tickets made up the majority—which makes sense given the lower price point.

How to Spot This Problem Type

Look for these tell-tale signs that you're dealing with a ticket sales system problem:

  • "Two different prices" and "total revenue" — signals you need both quantity and value equations
  • "Total number of people/tickets" combined with "total money collected"
  • Phrases like "They made $X from Y people" where you need to find how many of each type
  • "Adult tickets cost... children's tickets cost..." — classic setup phrasing
  • Any problem where you have two unknowns and two pieces of total information (total count + total value)
Structural Recognition: This same pattern appears in many contexts—candy sales with two types, restaurant orders with two menu items, parking meters with two rates. The mathematics is identical: one equation for total items, one equation for total value.

The Pattern Behind This

This is a classic mixture problem involving two components with different unit values. The general pattern is:

x + y = T₁ (total quantity)
P₁x + P₂y = T₂ (total value)

Where x and y are the quantities of each type, P₁ and P₂ are the unit prices, T₁ is the total quantity, and T₂ is the total value.

Key Insight: The "expensive" item will typically sell in smaller quantities if people are price-sensitive, which is exactly what we see here—324 cheaper children's tickets vs. 176 more expensive adult tickets.

Real Applications

  • Theater and venue management: Box offices use these calculations daily to analyze sales mix and plan capacity for different seating sections
  • Event planning: Conference organizers track regular vs. student registration to forecast revenue and plan accordingly
  • Transportation systems: Airlines, buses, and trains analyze passenger mix between different fare classes to optimize pricing strategies

What If?

1Price Increase Scenario
Adult tickets now cost $19.95 and children's tickets cost $14.95. With the same total people (500) and the same total revenue ($7,355), how many of each ticket were sold?
Step 1 — Set up equations

Let a = adult tickets, c = children's tickets:
a + c = 500
19.95a + 14.95c = 7355

Step 2 — Eliminate decimals

Multiply the second equation by 100:
1995a + 1495c = 735500

Step 3 — Use elimination

Multiply first equation by -1495:
-1495a - 1495c = -747500
Add to get: 500a = -12000
So a = -24

Step 4 — Interpret the result

This problem has no solution! The negative answer tells us it's impossible to collect exactly $7,355 from 500 people with these higher prices. The minimum revenue would be 500 × $14.95 = $7,475, which exceeds our target.

2Three Ticket Types
Now there are also senior tickets at $15.95. They sold 500 total tickets for $7,355. If they sold twice as many children's tickets as senior tickets, how many of each type were sold?
Step 1 — Define variables with constraint

Let a = adult, s = senior, c = children's tickets.
Given: c = 2s (twice as many children's as senior)

Step 2 — Set up equations

a + s + c = 500
17.95a + 15.95s + 12.95c = 7355
Substitute c = 2s:
a + s + 2s = 500a + 3s = 500
17.95a + 15.95s + 12.95(2s) = 735517.95a + 41.85s = 7355

Step 3 — Solve the system

From first equation: a = 500 - 3s
Substitute: 17.95(500 - 3s) + 41.85s = 7355
8975 - 53.85s + 41.85s = 7355
-12s = -1620
s = 135

Step 4 — Find all ticket quantities

s = 135 senior tickets
c = 2s = 270 children's tickets
a = 500 - 3(135) = 95 adult tickets

Step 5 — Verify

Total: 95 + 135 + 270 = 500 ✓
Revenue: 95($17.95) + 135($15.95) + 270($12.95) = $1,705.25 + $2,153.25 + $3,496.50 = $7,355 ✓

3Reverse Problem: Find the Prices
They sold 180 adult tickets and 320 children's tickets for a total of $7,355. If adult tickets cost $5 more than children's tickets, what is the price of each ticket type?
Step 1 — Define variables

Let c = price of children's tickets
Then c + 5 = price of adult tickets

Step 2 — Set up the revenue equation

180(c + 5) + 320c = 7355
180c + 900 + 320c = 7355
500c + 900 = 7355

Step 3 — Solve for children's price

500c = 6455
c = 12.91

Step 4 — Find adult price

Adult price = c + 5 = 12.91 + 5 = 17.91

Step 5 — Verify

Children's tickets: $12.91, Adult tickets: $17.91
Check: 180($17.91) + 320($12.91) = $3,223.80 + $4,131.20 = $7,355 ✓

4Non-integer Solution Reality Check
Adult tickets cost $18.00 and children's tickets cost $13.00. They made $7,355 from 500 people. How many of each ticket were sold? What does this result tell you about real-world constraints?
Step 1 — Set up equations

a + c = 500
18a + 13c = 7355

Step 2 — Solve using substitution

From first equation: c = 500 - a
Substitute: 18a + 13(500 - a) = 7355
18a + 6500 - 13a = 7355
5a = 855
a = 171

Step 3 — Find children's tickets

c = 500 - 171 = 329

Step 4 — Verify the solution

Total: 171 + 329 = 500 ✓
Revenue: 171($18) + 329($13) = $3,078 + $4,277 = $7,355 ✓

Step 5 — Real-world insight

This problem has a clean integer solution! This shows that not all ticket problems lead to fractional answers. When the numbers are chosen carefully, real-world constraints (whole numbers of tickets) are naturally satisfied. Problems with messy decimals often indicate pricing or attendance figures that wouldn't occur in practice.

Frequently Asked Questions

Write one equation for the total number of items and another for the total value. In this problem, a + c = 500 represents the total people, and 17.95a + 12.95c = 7355 represents the total revenue, where a is adult tickets and c is children's tickets.
Multiplying by 100 converts decimal prices to whole cents, making arithmetic cleaner and reducing calculation errors. The equation 17.95a + 12.95c = 7355 becomes 1795a + 1295c = 735500, which is easier to work with using elimination or substitution.
Verify both conditions: check that the quantities add to the total number given, and that the revenue calculation matches. Here, 176 + 324 = 500 people, and (176 × $17.95) + (324 × $12.95) = $7,355 total revenue.
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-09-18