Fix Question 4
This commit is contained in:
parent
5cf5340e27
commit
5a9e39003c
|
@ -197,31 +197,31 @@ Reduce the matrix \(A =
|
||||||
To convert it into Echelon form, we apply the following transformations.
|
To convert it into Echelon form, we apply the following transformations.
|
||||||
|
|
||||||
\begin{align*}
|
\begin{align*}
|
||||||
R_1 &\to R_1 + R_2 + R_3 \\
|
R_1 &\to R_1 + R_2 \\
|
||||||
R_2 &\to R_2 - R_3 \\
|
|
||||||
C_2 &\to C_2 + C_4 \\
|
|
||||||
C_4 &\to C_4 + C_3 \\
|
|
||||||
C_4 &\to C_4 - 2 C_1 \\
|
|
||||||
C_3 &\to C_3 - C_2 \\
|
|
||||||
C_2 &\to C_2 - C_1 \\
|
|
||||||
R_2 &\to \frac{R_2}{2} \\
|
|
||||||
R_1 &\leftrightharpoons R_4 \\
|
R_1 &\leftrightharpoons R_4 \\
|
||||||
C_4 &\leftrightharpoons C_1 \\
|
R_2 &\to R_2 - R_3 \\
|
||||||
R_4 &\to R_4 - R_2
|
R_2 &\to \frac{R_2}{2} \\
|
||||||
|
R_3 &\to R_3 + R_4 \\
|
||||||
|
R_2 &\to R_2 - R_1 \\
|
||||||
|
R_3 &\to R_3 - R_1 \\
|
||||||
|
R_3 &\leftrightharpoons R_4 \\
|
||||||
|
R_2 &\leftrightharpoons R_3 \\
|
||||||
|
R_1 &\leftrightharpoons R_2 \\
|
||||||
|
R_1 &\to -R_1
|
||||||
\end{align*}
|
\end{align*}
|
||||||
|
|
||||||
We get
|
We get
|
||||||
\[
|
\[
|
||||||
\begin{bmatrix}
|
\begin{bmatrix}
|
||||||
0 & 1 & 0 & 0 \\
|
1 & -1 & 0 & 2 \\
|
||||||
0 & 0 & 1 & 0 \\
|
0 & 1 & 1 & -1 \\
|
||||||
0 & 0 & 0 & 1 \\
|
0 & 0 & 0 & 0 \\
|
||||||
0 & 0 & 0 & 0
|
0 & 0 & 0 & 0
|
||||||
\end{bmatrix}
|
\end{bmatrix}
|
||||||
\]
|
\]
|
||||||
|
|
||||||
\[
|
\[
|
||||||
rank = 3
|
rank = 2
|
||||||
\]
|
\]
|
||||||
|
|
||||||
\section*{Question 5}
|
\section*{Question 5}
|
||||||
|
|
Loading…
Reference in New Issue