Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

kevinlui's site

7239 views
Kernel: SageMath 8.0

Chapter 4 Review

Theorem: Let S={a1,,am}S=\{a_1,\ldots,a_m\} be a set of vectors of Rn\mathbb{R}^n. Let A=[a1    an]A=[a_1\; \ldots \; a_n] be a matrix and T:RmRnT:\mathbb{R}^m \to\mathbb{R}^n be the linear transform defined by T(x)=AxT(x)=Ax. Let BB be an echelon form of AA. Then the following objects are equal:

  • The set of vectors killed by TT,

  • {x:Ax=0}\{x:Ax=0\} (this is the set of homogeneous solutions to AA),

  • null(AA),

  • {x:T(x)=0}\{x:T(x)=0\},

  • ker(TT),

  • number of rows of all zeros in BB,


  • The set of vectors hit by TT,

  • {T(x):xRn}\{T(x): x\in \mathbb{R}^n\},

  • range(TT),

  • col(AA),

  • span(SS),


  • dim(col(AA)),

  • dim(range(TT)),

  • dim(span(SS)),

  • mm - nullity(AA) (rank-nullity theorem),

  • mm - dim(ker(TT)),

  • dim(row(AA)), (think of this as maximal number of linear independent equations in Ax=0Ax=0),

  • number of pivots in BB,

Example: Let T(x)=AxT(x)=Ax, where AA is

[120224131224]\begin{bmatrix} 1 & 2 & 0 & 2 \\ -2 & -4 & 1 & -3 \\ 1 & 2 & 2 & 4 \end{bmatrix}

and has reduce echelon form BB given by

[120200110000]\begin{bmatrix} 1 & 2 & 0 & 2 \\ 0 & 0 & 1 & 1 \\ 0 & 0 & 0 & 0 \end{bmatrix}

  • What is the range of TT?

  • What is the kernel of TT?

  • What is the row space of AA?

  • What is the rank of AA?

  • What is the nullity of AA?

  • Write the columns corresponding the free variables as a linear combination of the pivot columns.

  • What is the general solution to Ax=0Ax=0?

  • What is the general solution to Ax=[23,4]tAx=[2-3,4]^t?

  • What is a vector not in the range of TT?

Example: Answer all the same questions as above but for an invertible transform.

Example: Give an example of a linear transform T:R3R2T:\mathbb{R}^3 \to \mathbb{R}^2 such that T(1,1,0)=(1,0)T(1,1,0)=(1,0) and T(0,1,2)=(1,2)T(0,1,2)=(1,2).

  • What is the smallest possible rank such an example could be?

  • What is the largest possible rank such an example could be?

  • What is the smallest possible nullity such an example could be?

  • What is the largest possible nullity such an example could be?