Simultaneous equations with 3 Unknowns

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
12 replies · 4K views
Krypto78
Messages
21
Reaction score
0
Help chaps I am having a bad time with this.

I can appreciate this is basic, however i can not get my head around it.

Im scrubbing up on my maths as i was thinking of doing a HND in Engineering. I am working my way through K.A. Stroud's Engineering Mathematics and simply can't get to grips with this.

the exercise question is:-

2a - 5b + c = 1
a + c = 2
b - 3c = -3

solve the equations for a,b and c.

Im just not sure on the golden rules? do i use substitution or elimination? If someone can guide me through this it would be of HUGE appreciation.

Great site by the way:)

Nick
 
Physics news on Phys.org
Krypto78 said:
Help chaps I am having a bad time with this.

I can appreciate this is basic, however i can not get my head around it.

Im scrubbing up on my maths as i was thinking of doing a HND in Engineering. I am working my way through K.A. Stroud's Engineering Mathematics and simply can't get to grips with this.

the exercise question is:-

2a - 5b + c = 1
a + c = 2
b - 3c = -3

solve the equations for a,b and c.

Im just not sure on the golden rules? do i use substitution or elimination? If someone can guide me through this it would be of HUGE appreciation.

Great site by the way:)

Nick

The most elementary way of solving a small system like this is to use Gaussian elimination. See: http://en.wikipedia.org/wiki/Gaussian_elimination

You can just use elimination without putting things in matrix notation, but once you get the hang of it, Gaussian elimination is just much faster and more mechanical.
 
Thanks for the quick reply.

The problem is most examples show 3 equations with the 3 variables in them.

in my example only 1 equation has all 3 variables. I think this is where i lose it.

:(
 
Krypto78 said:
Thanks for the quick reply.

The problem is most examples show 3 equations with the 3 variables in them.

in my example only 1 equation has all 3 variables. I think this is where i lose it.

:(

Put 0s where the "missing" coefficients are.
 
Still totally stuck. Anychance you can start me in the right direction? I won't give up till I've nailed it.

:)
 
Krypto78 said:
Help chaps I am having a bad time with this.

I can appreciate this is basic, however i can not get my head around it.

Im scrubbing up on my maths as i was thinking of doing a HND in Engineering. I am working my way through K.A. Stroud's Engineering Mathematics and simply can't get to grips with this.

the exercise question is:-

2a - 5b + c = 1
a + c = 2
b - 3c = -3

solve the equations for a,b and c.

Im just not sure on the golden rules? do i use substitution or elimination? If someone can guide me through this it would be of HUGE appreciation.

Great site by the way:)

Nick

Use the second eqn to express 'a' in terms of 'c' and use the third eqn to express 'b' in terms of 'c'. Plug those expressions into the first eqn (that is, where you see a or b, use the c-expressions instead). Now you have a single eqn for c alone, and it is easy to solve.

BTW: when folks say to use Gaussian elimination they just mean: do exactly what I outlined above.

RGV
 
Last edited:
I haven't learned using matrices to solve systems of equations, however, notice if you find a and b in terms of c, you can substitute these values into the first equation.

Edit: nevermind, Ray already explained this process!
 
Thanks for the replys chaps.

So this is where I am at:-

1) 2a - 5b + c = 1
2) a + c = 2
3) b - 3c = -3

Express 'a' in terms of 'c' in equation 2)

a = 2 - c

Express 'b' in terms of 'c' in equation 3)

b = -3 + 3c

substitute values into equation 1)

2(2-c)-5(-3+3c)+c = 1

removing brackets:-

4 - 2c + 15 - 15c + c = 1

19 - 16c = 1

-16c = -18

c = -18/-16

= 1.125

is this right?

Many thanks

Nick
 
so knowing c = 1.125

substituting into equation 2) to calculate 'a'

a + 1.125 = 2

2- 1.125 = a

a = 0.875

knowing a and c, substituting into equation 1)

5 x 0.875 - 5b + 1.125 = 1

4.375 - 5b + 1.125 = 1

5.5 - 5b = 1

-4.5 = -5b

b = -4.5/-5

b = 0.9
 
hang on...

if i use equation 2) to calculate b i get:-

b = -3 + 3c

b = -3 + 3 x 1.125

b = 0.375

ive gone wrong...
 
seen my error its 2a not 5a in equation 1)

so i have:-

a = 0.875
b = 0.375
c = 1.125

substituting these value into all 3 equations proves correct e.g

b - 3c = -3

0.375 - 3 x 1.125 does indeed = -3

how does that sound??