Solve by Gaussian elimination

frctl

Full Member
Joined
Jun 29, 2019
Messages
252
Solve the linear system by Gaussian elimination

I am struggling to complete this question.
 

Attachments

  • question6.png
    question6.png
    66.5 KB · Views: 6
I could:
use pivot operation
row1 multiplied by -4
add result to row2

although I am stuck by obtaining fractions
 
Here's how I would work it...begin with the augmented matrix:

[MATH]\left[\begin{array}{ccc|c}2 & 2 & 2 & 0 \\ -2 & 5 & 2 & 1 \\ 8 & 1 & 4 & -1 \end{array}\right][/MATH]
[MATH]\frac{1}{2}R_1[/MATH]
[MATH]\left[\begin{array}{ccc|c}1 & 1 & 1 & 0 \\ -2 & 5 & 2 & 1 \\ 8 & 1 & 4 & -1 \end{array}\right][/MATH]
[MATH]2R_1+R_2[/MATH] and [MATH]-8R_1+R_3[/MATH]
[MATH]\left[\begin{array}{ccc|c}1 & 1 & 1 & 0 \\ 0 & 7 & 4 & 1 \\ 0 & -7 & -4 & -1 \end{array}\right][/MATH]
[MATH]\frac{1}{7}R_2[/MATH]
[MATH]\left[\begin{array}{ccc|c}1 & 1 & 1 & 0 \\ 0 & 1 & \frac{4}{7} & \frac{1}{7} \\ 0 & -7 & -4 & -1 \end{array}\right][/MATH]
[MATH]-R_2+R_1[/MATH] and [MATH]7R_2+R_3[/MATH]
[MATH]\left[\begin{array}{ccc|c}1 & 0 & \frac{3}{7} & -\frac{1}{7} \\ 0 & 1 & \frac{4}{7} & \frac{1}{7} \\ 0 & 0 & -8 & 0 \end{array}\right][/MATH]
[MATH]-8R_3[/MATH]
[MATH]\left[\begin{array}{ccc|c}1 & 0 & \frac{3}{7} & -\frac{1}{7} \\ 0 & 1 & \frac{4}{7} & \frac{1}{7} \\ 0 & 0 & 1 & 0 \end{array}\right][/MATH]
[MATH]-\frac{3}{7}R_3+R_1[/MATH] and [MATH]-\frac{4}{7}R_3+R_2[/MATH]
[MATH]\left[\begin{array}{ccc|c}1 & 0 & 0 & -\frac{1}{7} \\ 0 & 1 & 0 & \frac{1}{7} \\ 0 & 0 & 1 & 0 \end{array}\right][/MATH]
And so we conclude:

[MATH]\left(x_1,x_2,x_3\right)=\left(-\frac{1}{7},\frac{1}{7},0\right)[/MATH]
 
Solve the linear system by Gaussian elimination …
Hello frctl. Your work shows a mistake in column 2, when you added 2R1 to R2. You've got 2+5=6. Is that a typo?

[Next] I could … row1 multiplied by -4 [and] add result to row2
Did you intend to type row3? Your prior work already obtained a pivot (and leading zero) in row2, so move on to row3 (i.e., get two leading zeros in row3 and a pivot in the third column). Note: If you jump forward and backward in the columns, instead of working the columns from left to right, you'll eventually end up turning some of your zeros back into non-zeros.

After you get pivots in each column with zeros below them, you'll have row echelon form (REF), so you can then see whether the system is consistent. If it is, then continue to reduced row echelon form (RREF) by getting all zeros above the pivots.

although I am stuck by obtaining fractions
If you're saying that you've forgotten how to do arithmetic with fractions, then you need review before continuing. Well, you will if you're expected to report exact solutions for this type of manual exercise. Is this homework?

?
 
Top