This Lesson (Coin Problem) was created by by
oberobic(2304)

:
View Source,
ShowAbout oberobic:
MBA/Ph.D. University Administrator
Problem: Joan has $4.50 in nickels, dimes, and quarters. There are twice as many dimes as nickels, and two more quarters than nickels. How many of each type of coin does she have?
.
Solution: To solve coin problems, you have to keep track of both the number of coins and the value of the coins. In this case, we are told she has only nickels, dimes, and quarters. So, we can define our variables as:
n = number of nickels
5n = value of nickels in cents
d = number of dimes
10d = value of dimes in cents
q = number of quarters
25q = value of quarters in cents
.
The total value is $4.50, but we'll work only in cents.
.
5n + 10d + 25q = 450 cents
.
We also are told certain relationships among the different types of coins:
.
There are twice as many nickels as there are dimes.
d = 2n
.
There are two more quarters than nickels.
q = n+2
.
Substitute.
.
5n + 10(2n) + 25(n+2) = 450
.
5n + 20n +25n +50 = 450
.
50n = 400
.
n = 8
.
Substitute the number of nickels to find the number of dimes and quarters.
.
d = 2(8) = 16
.
q = n+2 = 10
.
Always check the solution to ensure it is the correct answer.
In this case, check the values against the required total.
.
5n = 5*8 = 40 cents
10d = 10*16 = 160 cents
25q = 25*10 = 250 cents
40 cents + 160 cents + 250 cents = 450 cents
450 cents = $4.50
Correct.
.
Answer: Joan has 8 nickels, 16 dimes, and 10 quarters.
This lesson has been accessed 5210 times.