0% found this document useful (0 votes)
47 views1 page

Gauss Reduction

The document presents the steps to solve a system of 3 linear equations with 3 unknowns (x1, x2, x3) using Gaussian elimination. The key steps are: 1) interchanging rows to put the matrix in triangular form, 2) choosing diagonal elements as pivots to eliminate other elements in each column, and 3) back substitution to obtain the solutions x1=4, x2=1, x3=2.

Uploaded by

Lanz de la Cruz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views1 page

Gauss Reduction

The document presents the steps to solve a system of 3 linear equations with 3 unknowns (x1, x2, x3) using Gaussian elimination. The key steps are: 1) interchanging rows to put the matrix in triangular form, 2) choosing diagonal elements as pivots to eliminate other elements in each column, and 3) back substitution to obtain the solutions x1=4, x2=1, x3=2.

Uploaded by

Lanz de la Cruz
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

2 x 1 - 7x 2 + 4 x 3 = 9

x 1 + 9x 2 - 6 x 3 = 1
- 3x 1 + 8 x 2 + 5x 3 = 6
x1 x2 x3 b

2 -7 4 9 INTERCHANGE R1 AND R2
1 9 -6 1
-3 8 5 6

1 9 -6 1 RESULTING MATRIX
2 -7 4 9
-3 8 5 6

1 9 -6 1 CHOOSE A11 AS PIVOT


2 -7 4 9 R2' = R2 - 2*R1
-3 8 5 6 R3' = R3 + 3*R1

1 9 -6 1
0 -25 16 7 CHOOSE A22 AS PIVOT
0 35 -13 9 R3'' = 25*R3 + 35*R2

1 9 -6 1 UPPER DIAGONAL MATRIX


0 -25 16 7 OBTAIN UNKNOWNS BY
0 0 235 470 BACKWARD SUBSTITUTION

x3 = 2
x2 = 1
x1 = 4

You might also like