find basis and dimension of the subspace W of V spanned by A = [[1 2] [-1 3]], B = [[2 5] [1 -1]], C = [[5 12] [1 1]], D= [[3 4] [-2 5]]
We first consider each matrix as a vector in "\\mathbb{R}^4" to get a "4\u00d74" matrix.
"\\begin{bmatrix}\n 1 & 2 & 5 & 3 \\\\\n 2 & 5 & 12 & 4 \\\\\n-1 & 1 & 1 & -2 \\\\\n3 & -1 & 1 & 5\n\\end{bmatrix}"We now reduce the matrix to row echelon form.
Add "-2" times the 1st row to the 2nd row to get
"\\begin{bmatrix}\n 1 & 2 & 5 & 3 \\\\\n 0 & 1 & 2 & -2 \\\\\n-1 & 1 & 1 & -2 \\\\\n3 & -1 & 1 & 5\n\\end{bmatrix}"Add the 1st row to the 3rd row to get
"\\begin{bmatrix}\n 1 & 2 & 5 & 3 \\\\\n 0 & 1 & 2 & -2 \\\\\n0 & 3 & 6 & 1 \\\\\n3 & -1 & 1 & 5\n\\end{bmatrix}"Add "-3" times the 1st row to the 4th row to get
"\\begin{bmatrix}\n 1 & 2 & 5 & 3 \\\\\n 0 & 1 & 2 & -2 \\\\\n0 & 3 & 6 & 1 \\\\\n0 & -7 & -14 & -4\n\\end{bmatrix}"Add "-3" times the 2nd row to the 3rd row to get
"\\begin{bmatrix}\n 1 & 2 & 5 & 3 \\\\\n 0 & 1 & 2 & -2 \\\\\n0 & 0 & 0 & 7 \\\\\n0 & -7 & -14 & -4\n\\end{bmatrix}"Add "7" times the 2nd row to the 4th row to get
"\\begin{bmatrix}\n 1 & 2 & 5 & 3 \\\\\n 0 & 1 & 2 & -2 \\\\\n0 & 0 & 0 & 7 \\\\\n0 & 0 & 0 & -18\n\\end{bmatrix}"Multiply the 3rd row by "\\frac{1}{7}" to get
"\\begin{bmatrix}\n 1 & 2 & 5 & 3 \\\\\n 0 & 1 & 2 & -2 \\\\\n0 & 0 & 0 & 1 \\\\\n0 & 0 & 0 & -18\n\\end{bmatrix}"Add "18" times the 3rd row to the 4th row to get
"\\begin{bmatrix}\n 1 & 2 & 5 & 3 \\\\\n 0 & 1 & 2 & -2 \\\\\n0 & 0 & 0 & 1 \\\\\n0 & 0 & 0 & 0\n\\end{bmatrix}"Add "2" times the 3rd row to the 2nd row to get
"\\begin{bmatrix}\n 1 & 2 & 5 & 3 \\\\\n 0 & 1 & 2 & 0 \\\\\n0 & 0 & 0 & 1 \\\\\n0 & 0 & 0 & 0\n\\end{bmatrix}"Add "-3" times the 3rd row to the 1st row to get
"\\begin{bmatrix}\n 1 & 2 & 5 & 0 \\\\\n 0 & 1 & 2 & 0 \\\\\n0 & 0 & 0 & 1 \\\\\n0 & 0 & 0 & 0\n\\end{bmatrix}"Add "-2" times the 2nd row to the 1st row to get
"\\begin{bmatrix}\n 1 & 0 & 1 & 0 \\\\\n 0 & 1 & 2 & 0 \\\\\n0 & 0 & 0 & 1 \\\\\n0 & 0 & 0 & 0\n\\end{bmatrix}"
The pivots are in the 1st, 2nd and 4th column. Also, the 3rd column is the sum of the 1st column and two times the 2nd column, so it is linearly dependent. So the 1st, 2nd and 4th columns are linearly independent and form a basis for "W". Hence a basis for "W" is "\\{A,B,D\\}", and the dimension of "W" is "3".
Comments
Leave a comment