SOLUTION: Solve the following system by the addition method 0.05x + 0.10y = 1.3 and x + y = 19

Algebra ->  Algebra  -> Logarithm Solvers, Trainers and Word Problems -> SOLUTION: Solve the following system by the addition method 0.05x + 0.10y = 1.3 and x + y = 19      Log On

Ad: Algebra Solved!™: algebra software solves algebra homework problems with step-by-step help!
Ad: Algebrator™ solves your algebra problems and provides step-by-step explanations!

   


Question 142276: Solve the following system by the addition method 0.05x + 0.10y = 1.3 and x + y = 19
Answer by nabla(475) About Me  (Show Source):
You can put this solution on YOUR website!
0.05x + 0.10y = 1.3
x + y = 19
First I would multiply the first equation by 20 to make the x coefficient 1.
x+ 2y= 26
x+ y= 19
Now subtract the second equation from the first:
y=7
When we plug y=7 into the second equation,
x==19-7=12
Which gives us our answer.
To check,
.05(12)+.1(7)=.6+.7=1.3
12+7=19
I'll also show you how a computer script would do it:
Solved by pluggable solver: Linear System solver (using determinant)
Solve:
+system%28+%0D%0A++++0.05%5Cx+%2B+0.1%5Cy+=+1.3%2C%0D%0A++++1%5Cx+%2B+1%5Cy+=+19+%29%0D%0A++

Any system of equations:
+system%28+%0D%0A++++a%5B11%5D%2Ax+%2B+a%5B12%5D%2Ay+=+b%5B1%5D%2C%0D%0A++++a%5B21%5D%2Ax+%2B+a%5B22%5D%2Ay+=+b%5B2%5D%29%0D%0A++

has solution
+system%28+%0D%0A++++x+=+%28b%5B1%5D%2Aa%5B22%5D+-+b%5B2%5D%2Aa%5B12%5D%29%2F%28a%5B11%5D%2Aa%5B22%5D-a%5B21%5D%2Aa%5B12%5D%29%2C%0D%0A++++y+=+%28a%5B11%5D%2Ab%5B2%5D+-+a%5B21%5D%2Ab%5B1%5D%29%2F%28a%5B11%5D%2Aa%5B22%5D-a%5B21%5D%2Aa%5B12%5D%29%0D%0A++++%29%0D%0A++
or

+system%28+%0D%0A++++++x+=+%281.3%2A1+-+19%2A0.1%29%2F%280.05%2A1-1%2A0.1%29+=+12%2C%0D%0A++++++y+=+%280.05%2A19+-+1%2A1.3%29%2F%280.05%2A1-1%2A0.1%29+=+7%0D%0A++++%29%0D%0A++

(x=12, y=7}