Week 9- Kernel and Image Bases, Matrix Multiplication

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/10

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

Null Space

For a linear mapping L : V → W, the set of all input vectors that are mapped to 0W is called the kernel of L, or the null space of L.

2
New cards

What is special about the columns of A, a standard matrix?

Let L:Rn→Rm be a linear transformation, and A its standard matrix. Then the columns of A are a generating set for Im(L)

3
New cards

What is the algorithm for finding a basis of Im(L)

Let A be the standard matrix for L.

  • Put A into RREF.

  • Look at the columns of A with leading ones. The corresponding columns in the original A are a basis for Im(L).

4
New cards

What is the algorithm for finding a basis of ker(L)

Let A be the standard matrix for L.

  • Put A into RREF.

  • Add an extra column of 0’s to get an augmented matrix.

  • Write down the general solution to the corresponding system in vector form

  • The vectors associated with the free variables are a basis for the kernel

5
New cards

How to find dimension from basis?

number of vectors in basis = dimension

6
New cards

How to interpret dim(Im(L)) from RREF

# of columns with leading ones

7
New cards

How to interpret dim(Ker(L)) from RREF

# of columns without leading ones

8
New cards

Rank-Nullity Theorem

If L:Rn→Rm is a linear transformation, then n=Dim(Im(L))+Dim(Ker(L))

9
New cards

When is L injective?

iff Ker(L) = {0} (0 dimensional)

10
New cards

When is L surjective?

  • leading 1’s in RREF in every column and row

  • matrix must be square (input dim = output dim)

11
New cards

Combining matrices

If A is an m×n matrix, and B is an p×m matrix, the we define the product BA to be the p×n matrix BA=Bc1 | Bc2 | Bc3 | ... | Bcn where the ci are the columns of A