Introduction

  • A linear transformation is a function such that:
  • Prove a function is a linear transformation:
    • Prove it is true for all arbitrary vectors
  • Disprove a function is a linear transformation:
    • Provide counterexample
  • The zero vector must always be mapped to 0 for a linear transformation

Kernel

  • The kernel of is all the vectors that are mapped to 0
  • A kernel of a linear transformation is always a subspace
  • The range of a linear transformation is also a subspace
    • You will need to be able to find the basis of the range and kernel

Review: Matrix Inversion and Determinants

Matrix Multiplication

  • If and is a column vector (one column) then is a linear transformation
    • is some arbitrary vector
  • Every linear transformation is actually just matrix multiplication

Matrix of Transformation

  • TBA

Invertible Matrices

  • An arbitrary function is called invertible if there is a function such that

const current = dv.current();
 
if (current && current.file.tags.some(t => t.toLowerCase() === "#topic")) {
    const inlinks = current.file.inlinks;
 
    // Split backlinks: general notes vs. lecture notes
    const lectureLinks = inlinks.where(l => l.path.includes("/Lecture Notes/"));
    const otherLinks = inlinks.where(l => !l.path.includes("/Lecture Notes/"));
 
    if (otherLinks.length > 0) {
        dv.header(4, "Links To This Page");
        dv.list(otherLinks);
    }
 
    if (lectureLinks.length > 0) {
        dv.header(4, "Referenced In Lecture Notes");
        dv.list(lectureLinks);
    }
}