Question 1033597: if there are at least one of each type of coin, and there are 28 coins in total, what possible combinations of nickles, dimes, and quarters will add up to 2 dollars using matricies
Answer by robertb(5830) (Show Source):
You can put this solution on YOUR website! Let n = number of nickels, d = number of dimes, and q = number of quarters.
We have to solve the system
n+d+q = 28
0.05n+0.10d+0.25q = 2.00
The second equation is equivalent to n + 2d + 5q = 40, after simplification.
The system represented as an augmented matrix is

~ ~
==> n-3q = 16 and d+4q = 12.
==> n = 3q+16 and d = 12 - 4q.
==> The possible values of q are 0,1, 2, and 3.
The possible triples (n,d,q) are thus
(16,12,0), (19,8,1), (22,4,2), and (25,0,3).
But since there is at least one of each type of coin, the only possible combinations are (19,8,1) and (22,4,2).
|
|
|