You can do it by hand. If you study matrices and linear algebra, there are ways to automate the process.
FactChecker said:
You have 3 linear equations in 3 unknowns (I1, I2, I3). So the equations can be solved unless they are self-contradictory.
I assume that you have not dealt with matrices yet, but you can still solve these.
1) Use the first equation to replace every I3 in the other 2 equations.
Modify Equ 2: 45-I3-47*I3-34*I1 = 0;
simplify: -48*I3 - 34*I1 = -45;
use equation 1: -48*(I1 + I2) -34*I1 =45;
simplify: -82*I1 - 48*I2 = -45;
Modify Equ 3: 45-I3-47*I3+85-I2-18*I2 = 0;
simplify: -47*I3 - 19*I2 = -130;
use equation 1: -47*(I1 + I2) -19*I2 = -130;
simplify: -47*I1 - 66*I2 = -130;
2) Solve the modified second equation for I2 in terms of I1.
I2 = (-45 + 82*I1) / -82 = 45/82 - I1 = 0.55 - I1
3) Use that result to replace all the I2s in the modified last equation.
Modified last equ: -47*I1 - 66*I2 = -130;
replace I2s: -47*I1 - 66*(0.55 - I1) = -130;
simplify: 19*I1 + 36.3 = -130
4) Solve the modified last equation for I1. That should give you a number for I1.
19*I1 + 36.3 = -130;
19*I1 = -166.3;
I1 = -166.3/19 = -8.75
5) Plug the I1 number into the result of step 2 to get a number for I2.
I2 = 0.55 - I1 = 0.55 - (-8.75) = 9.30
6) Plug the I1 and I2 numbers into the first equation to get a number for I3.
I3 = I1 + I2 = -8.75 + 9.30 = 0.55
So now you have the values of all I1, I2, I3.
I1 = -8.75;
I2 = 9.30;
I3 = 0.55
You will have to double check all the steps and calculations. It is always good to plug the final answers into the original equations to check that they work and there were no calculation mistakes.