Let the three numbers be represented by a, b, c. The problem statement gives you three relationships:
- a +b +c = 14
- 2a +5b +6c = 74
- 4a -b = -2
"Elimination" is often used to solve a set of linear equations like this. Here, you can eliminate the c variable by subtracting the second equation from 6 times the first:
... 6(a +b +c) -(2a +5b +6c) = 6(14) -(74)
... 4a +b = 10 . . . . . simplify
Now, you can add the last equation to eliminate b.
... (4a +b) +(4a -b) = (10) +(-2)
... 8a = 8 . . . . . . simplify
... a = 1
Using the equation 4a+b=10, we can find the value of b:
... 4·1 +b = 10
... b = 6 . . . . . . . subtract 4
Now, we can find c using the first equation
... 1 +6 +c = 14
... c = 7 . . . . . . . . subtract 7
The three numbers are 1, 6, 7.
_____
Many graphing calculators are able to solve a system of linear equations like this. It can be helpful to get familiar with that process. The attached picture shows the solution on a TI-84 calculator. The numbers in the right column of the output are the solutions for a, b, c. The numbers that are input to the "rref" function are the coefficients in the equations in "augmented matrix" form.