linear chapter 5

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:18 AM on 4/13/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

18 Terms

1
New cards

coordinate vector equation (how to get the LC constants)

c = w dot vi over vi2

2
New cards

how to find all possible v given v1 and that v2 is a vector x, y

  • use the dot product of v1 and v2 = 0

  • use x² + y² = 1

  • solve for all cases of x and y (there will be two options)

  • solve for what v equals when v2 is one or the other, using coord vector as LC

3
New cards

how to show a matrix is orthogonal

  • QTQ = In

  • or, show that each row is orthogonal to the next and magnitudes for each column are 1

4
New cards

how to find the basis of a line

  • solve for one variable

  • so like x = 5/2 y

  • set one variable equal to t (so y = t)

  • solve for the span, which is t [5/2, 1]

  • multiply to make it [5, 2]

  • if finding an orthogonal complement, find the perpendicular line, and create a basis out of that

5
New cards

how to normally find a basis for the orthogonal complement

solve for the null tranpose space

6
New cards

how to find the four funademtnal subspaces

  • first, find RREF

  • from there, look at pivot columns

    • row A = any non-zero row in RREF

    • col A = the corresponding pivot columns (has leading 1s) of og matrix

    • null A = null space

    • null AT = null space of the transpose

7
New cards

how to find the orthogonal decomposition

v = w + worth

v = perpwv + projwv

projwv = the summation of (uk dot v / uk2) * uk

perp is just v minus that

8
New cards

when would you use G/S process and how to use it

  • first check if they’re orthogonal: if they are, no need to do G/S

  • you use it to find an orthogonal basis for a span where you’re given x1, x2, x3

  • vk = xk - (v1 dot xk / v12) * v1 - etc - etc until you get to k being k - 1

    • if you’re finding v3, you start with x3 minus everything

    • the only other part you use x3 is for the dot product. everything else will be v1 or v2

  • once you find all your vectors, put them in a span together and take out denominators as necessary and that’s the orthogonal basis

9
New cards

how to do QR factorization

R = QTA

put all the vectors you found using G/S into a matrix, take its tranpose, and normalize it

that’s Q, and A will be given

10
New cards

how to find an orthogonal basis for any subspace where x1, x2, x3 aren’t neatly given

  • first check if they’re orthogonal: if they are, no need to do G/S

  • parameterize to find the span

  • use G/S process to find vectors and put them in a basis (multiply by constants to make them easier)

  • you can make up random vectors like 0 0 0 1 if you need more than you are given

11
New cards

how to orthogonally diagonalize a square matrix (find Q)

  • find its eigenvectors

  • test if they are orthogonal, if they are not, use G/S (test all combos, if one of them from a dif lambda is orth [] there’s no reason to do G/S again)

  • put them all in a matrix together and normalize them (don’t take transpose here)

12
New cards

how to find spectral decomposition

eigenvalue 1 [normalized eigenvector] [normalized eigenvector]T + eigenvalue 2 [normalized eigenvector] [normalized eigenvector]T + eigenvalue 3 [normalized eigenvector] [normalized eigenvector]T

essentially just take the LC of Qcol1 times Qcol1 as a row with lambda as the constant, and repeat for how many cols you have

13
New cards

what does spectral decomp give you, if evaluated

the symmetric matrix A such that QTAQ = D

thus, A = QDQT

14
New cards

rotation matrix

[cos -sin sin cos]

det = 1

15
New cards

reflection matrix

[cos2theta sin2theta sin2theta -cos2theta]

det = -1

16
New cards

relations between dim and nullity

dimRowA + nullityA = n

dimColA + nullityA T = m

dimRowA = dimColA = rankA

17
New cards

relations between 4 fundamental subspaces

col A is the orthogonal complement of null A T

row A is the orthogonal complement of null A

18
New cards

what are D and P

D is a matrix of eigenvalues

P is the matrix of eigenvectors, so Q before it gets normalized

SHOW BOTH!