【线性代数】MIT Linear Algebra Lecture 6: Column space and nullspace

fb078286420893a209ce978db908fa3b-1

Author| Rickyの水果摊

Time | 2022.9.12


Lecture 6: Column space and nullspace

Lecture Info
  1. Instructor: Prof. Gilbert Strang

  2. Course Number: 18.06

  3. Topics: Linear Algebra

  4. Official Lecture Resource: Resource Index of Linear Algebra

Excellent Notes on GitHub

There are some classic, excellent notes from other authors on GitHub, wihch I highly recommend you to star ⭐️ and read 📖

notes-linear-algebra (A systematic notes written in Chinese)

The-Art-of-Linear-Algebra (Focus on visualization of important concept of Linear Algebra)

Video Link

Lecture 6: Column space and nullspace (bilibili)

Lecture 6: Column space and nullspace (YouTube)

Key Points
  1. column space
  2. nullspace
Active Recall Questions
  1. Suppose we have subspaces P , Q P,Q P,Q , if P ∩ Q P \cap Q PQ / P ∪ Q P \cup Q PQ a subspace?
  2. What is the mathematical meaning of A x Ax Ax
  3. Does A x = b Ax=b Ax=b always have solutions for every b ? If the answer is no, which b’s allow A x = b Ax=b Ax=b to be solvable ? (From the perspective of C ( A ) C(A) C(A))
  4. What’s the definiton of the nullspace N ( A ) N(A) N(A) ?
  5. Suppose A m ∗ n A_{m*n} Amn , why N ( A ) N(A) N(A) is a subspace of R n \mathbb{R}^n Rn ? (Hint: rules that a subspace have to follow)
  6. What are the similarities and differences between C ( A ) , N ( A ) C(A), N(A) C(A),N(A) ? (Hint: focus, dimension, the way they span, …)
  7. Suppose all the solutions ( x s xs xs) to A x = b Ax=b Ax=b ( b b b is not zero vector) form a new space N ( A ) ′ N(A)' N(A), if N ( A ) ′ N(A)' N(A) a subspace? (Hint: compare to the N ( A ) N(A) N(A) that A x = 0 Ax=0 Ax=0 form)
Answer
  1. P ∩ Q P \cap Q PQ is a subspace, P ∪ Q P \cup Q PQ is not a subspace

  2. A x Ax Ax are all the linear combinations of columns of A A A, which form C ( A ) C(A) C(A) (Some columns of A contribute nothing to C ( A ) C(A) C(A), we will discuss them in the next lecture)

  3. No. A x = b Ax=b Ax=b is solvable only when b b b is in C ( A ) C(A) C(A)

  4. The nullspace N ( A ) N(A) N(A) consists of all solutions to A x = 0 Ax=0 Ax=0.

  5. If we want to check if a space is a subspace, we need to check it from the definition of subspace

    First, we take any two vectors x 1 , x 2 x_1,x_2 x1,x2 in the nullspace, they all satisfy A x = 0 Ax=0 Ax=0, we need to check if x 3 = c 1 ∗ x 1 + c 2 ∗ x 2 x_3=c_1*x_1+c_2*x_2 x3=c1x1+c2x2 is still in the nullspace.

    If we can prove A x 3 = 0 Ax_3=0 Ax3=0, then we know that x 3 x_3 x3 is in N ( A ) N(A) N(A), and here is the derivation: A x 3 = A ( c 1 ∗ x 1 + c 2 ∗ x 2 ) = c 1 ∗ A x 1 + c 2 ∗ A x 2 = c 1 ∗ 0 + c 2 ∗ 0 = 0 Ax_3=A(c_1*x_1+c_2*x_2)=c_1*Ax_1+c_2*Ax_2=c_1*0+c_2*0=0 Ax3=A(c1x1+c2x2)=c1Ax1+c2Ax2=c10+c20=0

    That means x 3 x_3 x3 is still in N ( A ) N(A) N(A). Hence N ( A ) N(A) N(A) is a subspace

  6. Here are their similarites and differences:

    1. C ( A ) C(A) C(A) focus on A A A, N ( A ) N(A) N(A) focus on x x x.
    2. dim of C ( A ) C(A) C(A) is r a n k ( A ) rank(A) rank(A), dim of N ( A ) N(A) N(A) is ( n − r a n k ( A ) ) (n-rank(A)) (nrank(A))
    3. C ( A ) C(A) C(A) is a subspace of R m \mathbb {R}^m Rm, N ( A ) N(A) N(A) is a subspace of R n \mathbb {R}^n Rn
    4. C ( A ) C(A) C(A) is formed by the pivot columns of A A A, N ( A ) N(A) N(A) is formed by all the solutions to A x = 0 Ax=0 Ax=0 (We will learn how to determine pivot columns and solutions to A x = 0 Ax=0 Ax=0 in the next lecture)
  7. This derivation is similar to Q5.

    First, we take any two vectors x 1 , x 2 x_1,x_2 x1,x2 in N ( A ) ′ N(A)' N(A), they all satisfy A x = b Ax=b Ax=b, we need to check if x 3 = c 1 ∗ x 1 + c 2 ∗ x 2 x_3=c_1*x_1+c_2*x_2 x3=c1x1+c2x2 is still in N ( A ) ′ N(A)' N(A)

    If we can prove A x 3 = b Ax_3=b Ax3=b, then we know that x 3 x_3 x3 is in N ( A ) ′ N(A)' N(A), however A x 3 = A ( c 1 ∗ x 1 + c 2 ∗ x 2 ) = c 1 ∗ A x 1 + c 2 ∗ A x 2 = c 1 ∗ b + c 2 ∗ b ≠ b Ax_3=A(c_1*x_1+c_2*x_2)=c_1*Ax_1+c_2*Ax_2=c_1*b+c_2*b \ne b Ax3=A(c1x1+c2x2)=c1Ax1+c2Ax2=c1b+c2b=b

    That means x 3 x_3 x3 is not in N ( A ) ′ N(A)' N(A). Hence N ( A ) ′ N(A)' N(A) is not a subspace

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值