MATH 323 Lecture 15

From Notes
Jump to navigation Jump to search

« previous | Thursday, October 18, 2012 | next »


Review

m×n matrix A

  • Row space is the span of row vectors and a subset of n
  • Column space is span of column vectors and subset of m

rank(A)=dim(row space of A)

Theorem 3.6.1: Two row equivalent matrices have the same row space.

Theorem 3.6.2: The system Ax=b has a solution iff b is contained in the column space of A.

Theorem 3.6.3: Let A be a m×n matrix.

  • The linear system Ax=b is consistent for every bn iff the column vectors of A span n.
  • The system Ax=b has at most one solution for every bn iff the column vectors of A are linearly independent.


Properties of Row and Column Space

Span{columns of A}=mnm

If Columns of A are linearly independent, then nm

If columns of A form a basis for m, then n=m

Corollary: the following are equivalent for a nonsingular square matrix

  • |A|=|AT|0
  • columns form a basis for n
  • rows form a basis for n

Given AU, where U is in row echelon form; the column space of A is NOT equal to the column space of U.

dim({column space of U})=dim({column space of A})

  • columns containing the lead variables form basis for the column space of U
  • above corresponds to columns of A that form basis for A's column space


Rank-Nullity Theorem

If A is a m×n matrix, then rank(A)+nullity(A)=n

nullity(A)=dim(N(A))

A can be converted to row-echelon form matrix U, so Ax=0Ux=0.

rank(A)=rank(U)=num. nonzero rows=r

Thus we have nr and dimN(A) equal the number of free variables: r+(nr)=n.

Example

A=[121124301215]U=[120300120000]

Thus (1, 2, 0, 3) and (0, 0, 1, 2) form a basis for the row space of A

rank(A)=2, and there are 42=2 free variables.

[x1x2x3x4]=[2α3βα2ββ]=α[2100]+β[3021]

The vectors (-2, 1, 0, 0) and (-3, 0, -2, 1) form a basis for the null space of A, thus dimN(A)=2

Theorem 3.6.6

If A is a m×n matrix, the dimension of the row space of A equals the dimension of the column space of A.

Proof

rank(A)=r=num. lead vars=num. nonzero rows

Let UL be the matrix obtained from U by deleting columns corresponding to free vars, and let AL be obtained by deleting the same columns from A. Both matrices are of size r×r

ALUL, so if ALx=0, then ULx=0 and x=0 because columns of UL are linearly independent. Therefore the columns of AL are linearly independent.

AL has r columns, so the dimension of the column space of Ar (and r is also the dimension of the row space of A

the column space of

AT

has the same dimension as the row space of

A

≥ the row space of

AT

has the same dimension as the column space of

A

. By antisymmetry, the dimensions of the column and row spaces must be equal.

Q.E.D.

Example

A=[121121302201134125135]U=[12112011300000100000].

Thus u1,u2,u5 form a basis for the column space of U, and a1,a2,a5 form a basis for the column space of A.

U(1,:),U(2,:),U(3,:) form a basis for the row spaces of U and A (since they are equivalent).

The nullity of A is thus the number of columns − num. lead variables = 5 − 3 = 2.


Linear Transformation

Let V,W be vector spaces.

L:VW is a linear transformation if for all v,v1,v2V and for all α,β,

  1. L(v1+v2)=L(v1)+L(v2)
  2. L(αv)=αL(v)
  3. (combination of 1 and 2) L(αv1+βv2)=αL(v1)+βL(v2)

Therefore, if vV, then L(v)W, where L(v) is the image of v.


Let L:VV be a linear operator on V.

For example:

  1. L(x)=2x.
  2. L(x)=x1e1 (projection onto x-axis)
  3. L(x)=x1,x2 (reflect vector about x-axis)
  4. L(x)=x2,x1 (rotate by 90° CCW)