<< Chapter < Page Chapter >> Page >

Solving a 2 × 2 System by gaussian elimination

Solve the given system by Gaussian elimination.

2 x + 3 y = 6      x y = 1 2

First, we write this as an augmented matrix.

[ 2 3 1 −1    |    6 1 2 ]

We want a 1 in row 1, column 1. This can be accomplished by interchanging row 1 and row 2.

R 1 R 2 [ 1 −1 2 3 | 1 2 6 ]

We now have a 1 as the first entry in row 1, column 1. Now let’s obtain a 0 in row 2, column 1. This can be accomplished by multiplying row 1 by −2 , and then adding the result to row 2.

−2 R 1 + R 2 = R 2 [ 1 −1 0 5 | 1 2 5 ]

We only have one more step, to multiply row 2 by 1 5 .

1 5 R 2 = R 2 [ 1 −1 0 1 | 1 2 1 ]

Use back-substitution. The second row of the matrix represents y = 1. Back-substitute y = 1 into the first equation.

x ( 1 ) = 1 2           x = 3 2

The solution is the point ( 3 2 , 1 ) .

Got questions? Get instant answers now!
Got questions? Get instant answers now!

Solve the given system by Gaussian elimination.

4 x + 3 y = 11    x −3 y = −1

( 2 , 1 )

Got questions? Get instant answers now!

Using gaussian elimination to solve a system of equations

Use Gaussian elimination    to solve the given 2 × 2 system of equations .

   2 x + y = 1 4 x + 2 y = 6

Write the system as an augmented matrix    .

[ 2 1 4 2    |    1 6 ]

Obtain a 1 in row 1, column 1. This can be accomplished by multiplying the first row by 1 2 .

1 2 R 1 = R 1 [ 1 1 2 4 2    |    1 2 6 ]

Next, we want a 0 in row 2, column 1. Multiply row 1 by −4 and add row 1 to row 2.

−4 R 1 + R 2 = R 2 [ 1 1 2 0 0    |    1 2 4 ]

The second row represents the equation 0 = 4. Therefore, the system is inconsistent and has no solution.

Got questions? Get instant answers now!
Got questions? Get instant answers now!

Solving a dependent system

Solve the system of equations.

3 x + 4 y = 12 6 x + 8 y = 24

Perform row operations    on the augmented matrix to try and achieve row-echelon form    .

A = [ 3 4 6 8 | 12 24 ]
1 2 R 2 + R 1 = R 1 [ 0 0 6 8 | 0 24 ] R 1 R 2 [ 6 8 0 0 | 24 0 ]

The matrix ends up with all zeros in the last row: 0 y = 0. Thus, there are an infinite number of solutions and the system is classified as dependent. To find the generic solution, return to one of the original equations and solve for y .

3 x + 4 y = 12           4 y = 12 −3 x             y = 3 3 4 x

So the solution to this system is ( x , 3 3 4 x ) .

Got questions? Get instant answers now!
Got questions? Get instant answers now!

Performing row operations on a 3×3 augmented matrix to obtain row-echelon form

Perform row operations on the given matrix to obtain row-echelon form.

[ 1 −3 4 2 −5 6 −3 3 4    |    3 6 6 ]

The first row already has a 1 in row 1, column 1. The next step is to multiply row 1 by −2 and add it to row 2. Then replace row 2 with the result.

−2 R 1 + R 2 = R 2 [ 1 −3 4 0 1 −2 −3 3 4 | 3 0 6 ]

Next, obtain a zero in row 3, column 1.

3 R 1 + R 3 = R 3 [ 1 −3 4 0 1 −2 0 −6 16 | 3 0 15 ]

Next, obtain a zero in row 3, column 2.

6 R 2 + R 3 = R 3 [ 1 −3 4 0 1 −2 0 0 4 | 3 0 15 ]

The last step is to obtain a 1 in row 3, column 3.

1 2 R 3 = R 3 [ 1 −3 4 0 1 −2 0 0 1    |    3 −6 21 2 ]
Got questions? Get instant answers now!
Got questions? Get instant answers now!

Write the system of equations in row-echelon form.

   x 2 y + 3 z = 9       x + 3 y = 4 2 x 5 y + 5 z = 17

[ 1 5 2 5 2 0 1 5 0 0 1 | 17 2 9 2 ]

Got questions? Get instant answers now!

Solving a system of linear equations using matrices

We have seen how to write a system of equations with an augmented matrix    , and then how to use row operations and back-substitution to obtain row-echelon form    . Now, we will take row-echelon form a step farther to solve a 3 by 3 system of linear equations. The general idea is to eliminate all but one variable using row operations and then back-substitute to solve for the other variables.

Solving a system of linear equations using matrices

Solve the system of linear equations using matrices.

x y + z = 8 2 x + 3 y z = −2 3 x 2 y 9 z = 9

First, we write the augmented matrix.

[ 1 1 1 2 3 1 3 2 9     |    8 2 9 ]

Next, we perform row operations to obtain row-echelon form.

2 R 1 + R 2 = R 2 [ 1 1 1 0 5 3 3 2 9 | 8 18 9 ] 3 R 1 + R 3 = R 3 [ 1 1 1 0 5 3 0 1 12 | 8 18 15 ]

The easiest way to obtain a 1 in row 2 of column 1 is to interchange R 2 and R 3 .

Interchange R 2 and R 3 [ 1 −1 1 8 0 1 −12 −15 0 5 −3 −18 ]

Then

−5 R 2 + R 3 = R 3 [ 1 −1 1 0 1 −12 0 0 57 | 8 −15 57 ] 1 57 R 3 = R 3 [ 1 −1 1 0 1 −12 0 0 1 | 8 −15 1 ]

The last matrix represents the equivalent system.

  x y + z = 8     y 12 z = −15              z = 1

Using back-substitution, we obtain the solution as ( 4 , −3 , 1 ) .

Got questions? Get instant answers now!
Got questions? Get instant answers now!

Questions & Answers

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply
Practice Key Terms 7

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, College algebra. OpenStax CNX. Feb 06, 2015 Download for free at https://legacy.cnx.org/content/col11759/1.3
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'College algebra' conversation and receive update notifications?

Ask