220k views
1 vote
Solve the linear system by Gaussian elimination.

2x₁+2x₂+2x₃= 0
-2x₁+5x₂+2x₃= 1
8x₁+x₂+4x₃= -1

User BlessedHIT
by
7.2k points

1 Answer

1 vote

Final answer:

To solve the linear system by Gaussian elimination, follow these steps: rewrite the system in matrix form, eliminate variables below the main diagonal, write the augmented matrix in row-echelon form, and solve for the variables using back substitution.

Step-by-step explanation:

To solve this linear system by Gaussian elimination, we can use the following steps:

  1. Rewrite the system of equations in matrix form:
  2. [2 2 2| 0

  3. -2 5 2| 1

  4. 8 1 4|-1]
  5. Perform row operations to eliminate the variables below the main diagonal:
  6. [2 2 2| 0

  7. 0 3 4| 1

  8. 0 -15 -4| -1]
  9. Perform additional row operations to write the augmented matrix in row-echelon form:
  10. [2 2 2| 0

  11. 0 1 4/3| 1/3

  12. 0 0 -86/3| -76/3]
  13. Solve for the variables using back substitution:
  14. x₁ = 6/43, x₂ = 11/43, x₃ = 76/86

User Taveced
by
8.2k points