Hi! I'm Edwin McCravy. AnlytcPhil is my alias! :)
I promised you I'd solve it later. I notice the other tutor
has already solved it correctly in the meantime, but not
with a matrix.
A coin bank contains 27 coins, all nickels, dimes, or quarters.
N + D + Q = 27
The combined value of the nickels and dimes is $0.90.
0.05N + 0.10D = 0.90
The combined value of the dimes and quarters is $4.
0.10D + 0.25Q = 4.00
The system of equations is:
N + D + Q = 27
0.05N + 0.10D = 0.90
0.10D + 0.25Q = 4.00
The matrix is
Multiply the 2nd and 3rd rows each by 100 to clear
the decimals:
That's these row operations:
100R2->R2
100R3->R3
Divide the 2nd and 3rd rows each by 5:
R2/5->R2
R3/5->R3
To get a 0 where the 1 is on the 2nd row,
multiply the 1st row by -1 and add to the 2nd row:
-1R1+R2->R2
To get a 0 where the 2 is on the bottom row,
multiply the 2nd row by -2 and add to the bottom
row.
That's -2R2+R3->R3
Divide the bottom row through by 7 to
get a 1 where the 7 is:
R3/y->R3
That's the system:
x + y + z = 27
y - z = -9
z = 14
Substitute 14 for z in the 2nd equation:
y - z = -9
y - 14 = -9
y = 5
Substitute 14 for z and 5 for y in the 1st equation
x + y + z = 27
x + 5 + 14 = 27
x + 19 = 27
x = 8
So there are 8 nickels, 5 dimes and 14 quarters.
Edwin