MIT线性代数笔记-第十讲

4 fundamental subspace

1.column space C(A) in Rm

2.nullspace N(A) in Rn

3.row space(all combs of rows) C(AT) in Rn

4.nullspace of AT = N(AT) = left null space of A, in Rm

MIT线性代数笔记-第十讲(图中nullspace的dimension为n - r,left nullspace的dimension为m - r)

whats the basis of row space?
看一下example,还是用的消元法获取R

A=[123111211231]>[101101100000]
我们注意到,列空间改变了,而行空间没变,也就是对行的操作不会影响行空间
同时,可以得出rowspace的basis即为R的前r行

4th space :N(AT)

ATy=0>(ATy)T=0T>yTA=0T(leftnullspace)

如何得到N(AT),答案是Gaussian-Jordan
还记得么,之前我们通过[A,I]>[I,A]得到了A的逆矩阵。现在我们仍然用这个方法,只不过右边的I替换为了R,也就是:
E[Amn,Imm]>[Rmn,Emm],例子如下,还是之前的A:

[120110101][123111211231]>[101101100000]

left null space的basis即为[1 0 1]
同时,我们也注意到,left null space的dimension也与m - r = 3 - 2 = 1一致

new vector space
all 3*3 matrices
subspace of all 3 * 3 matrix
1.upper triangular matrices
2.symmetric matrices
3.diagonal matrices(upper triangular matrices symmetric matrices)