70.5k views
2 votes
What would you have to know about the pivot columns in an augmented matrix in order to know that the linear system is consistent and has a unique solution?

1 Answer

6 votes

Answer:

The Rouché-Capelli Theorem. This theorem establishes a connection between how a linear system behaves and the ranks of its coefficient matrix (A) and its counterpart the augmented matrix.


rank(A)=rank\left ( \left [ A|B \right ] \right )\:and\:n=rank(A)

Then satisfying this theorem the system is consistent and has one single solution.

Step-by-step explanation:

1) To answer that, you should have to know The Rouché-Capelli Theorem. This theorem establishes a connection between how a linear system behaves and the ranks of its coefficient matrix (A) and its counterpart the augmented matrix.


rank(A)=rank\left ( \left [ A|B \right ] \right )\:and\:n=rank(A)


rank(A) <n

Then the system is consistent and has a unique solution.

E.g.


\left\{\begin{matrix}x-3y-2z=6 \\ 2x-4y-3z=8 \\ -3x+6y+8z=-5 \end{matrix}\right.

2) Writing it as Linear system


A=\begin{pmatrix}1 &amp; -3 &amp;-2 \\ 2&amp; -4 &amp;-3 \\ -3 &amp;6 &amp;8 \end{pmatrix}
B=\begin{pmatrix}6\\ 8\\ 5\end{pmatrix}


rank(A) =\left(\begin{matrix}7 &amp; 0 &amp; 0 \\0 &amp; 7 &amp; 0 \\0 &amp; 0 &amp; 7\end{matrix}\right)=3

3) The Rank (A) is 3 found through Gauss elimination


(A|B)=\begin{pmatrix}1 &amp; -3 &amp;-2 &amp;6 \\ 2&amp; -4 &amp;-3 &amp;8 \\ -3&amp;6 &amp;8 &amp;-5 \end{pmatrix}


rank(A|B)=\left(\begin{matrix}1 &amp; -3 &amp; -2 \\0 &amp; 2 &amp; 1 \\0 &amp; 0 &amp; (7)/(2)\end{matrix}\right)=3

4) The rank of (A|B) is also equal to 3, found through Gauss elimination:

So this linear system is consistent and has a unique solution.

User Mario Araque
by
5.0k points