• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/44

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

44 Cards in this Set

  • Front
  • Back
How do you know if a matrix is singular?
If it's Det = 0.
What does having a singular matrix mean?
That the matrix vectors are lin dependant.
What is the det of a triangular matrix?
The product of all its diagonal values.
What is the det of the Id. matrix?
1
What is Det ( A -1 ) ?
1/ Det (A)
Det ( AB ) =
Det ( BA )

Det (A) * Det (B)

Det (B) * Det (A)
IF V is an n x n triangular matrix, then Det (V ^t) =
Det (V)
A - L*I is singular if...
Det (A - L*I) = 0
A scalar L is an eigenvalue of A if and only if ...
A - L*I is singular

and

Det (A - L* I) = 0
If A is an n x n matrix, then Det (A - L*I) is a ....
ploynomial of degree n in t.
What kind of vectors will span all of R^n?
ANY number n vectors which are not scalar multiples of each other will span all of R^n.

Cool.
How can you use scalars c1 through cn to produce formulas for the span of a set of vectors?
Multiply each vector in the set by a unique scalar cn and concatenate the matrix with x, y, z, etc. then solve for each scalar to get formulas in x, y, z..
What are the two conditions for a basis of a vector space?
That they span that vector space.

That they are linearly independent.
If a set of vectors spans S, then we automatically know that it is a ....
subspace of S.
What is the definition of a subspace?
Any set of vectors which satisfy the two axioms of a vector space.

Closed under addition and under scalar multiplication.
How do you find the eigenvalues of A^2?
If Av = Lv

Then A^2v = A (Av) = A (Lv) = L (Av) = L (Lv) = L^2v.

Just square the eigenvalue.
How do you find the eigenvalues of A ^ -1?
If Av = Lv , then v = (Av) / L since L must be nonzero.

A ^-1 v = A^ -1 (Av / L) = A^ -1 A ( v / L) = v(1 / L)
How do you find the eigenvalues of (A ^ -1 - I) ?
By Av = Lv

(A ^ -1 - I)v = ( 1 / L - I)v
What does it mean for Lamda to be an eigenvalue of A?
It means that A - LI is singular.

When its determinant = 0
How do you find the null space of a set of vectors and what is the definition?
All vectors for which Ax = 0

Set the concatenated augmented matrix to RREF and then solve the system resulting from it.
What is the definition for the range of a set of vectors?
The set of all vectors y in R^m such that Ax = y is consistent.
K is a nonzero scalar, and kA has an inverse, what is it?
(1 / k) A ^ -1
What is the inverse of A ^ t?
( A ^ -1) ^t
If A has an inverse, then what is A*A^ -1?
A*A ^-1 = A^ -1 * A = I

A matrix multiplied either way by its inverse = the identity matrix.
If the Det of a matrix = 0, what does this mean?
That the matrix cannot have an inverse. It is singular. So, the vectors in the matrix are linearly dependent, there is no unique solution for this set of vectors.
What is the formula for the inverse of a matrix if the determinant is not equal to 0?
The matrix is nonsingular, the vectors are lin independent.

A^ -1 = 1/Det * [ d -b -c a ]
What is the idea behind solving a system of equations using its matrix and its inverse?
By Ax = b we have x = A^-1 b

Take the coefficient matrix, find its inverse using the identity matrix, then multiply the inverse matrix by the vector b on the RHS, this will give you your variables x1, x2..... xn. You can then verify that they are correct and satisfy the original equations.
How can I get Q ^ -1 if Q = A^t * B^t?
Q^ -1 = (A^ -1)^t * (B^-1)^t
What is the formula for the angle between two vectors?
u*v = [u][v]cos(theta)
What the formula for the projection of vector b onto vector a?
p = b*a / [a] * a / [a]

So, proj b onto a is just: b times a squared over length of a squared.
What is the strategy for finding eigenvalues?
Multiply your matrix by Lamda times the identity matrix, take the determinant of that, set it = 0, solve for all values of lamda.
What is the strategy for finding eigenvectors?
Take your eigenvalues one at a time, plug them into A-L*I, then solve that homogenous system.
If you raise L to power of some integer k, how does that relate to your original matrix?
Raise the original matrix to the same power to retain the relationship, so, if you raise a mtrix to a power, then you know that you can raise your L values to the same power and do not need to find them again.
If the det of A is nonzero, then it is nonsingular and the vectors of A are lin independent. Then A has an inverse, assuming that A has eigenvalues L, how do they relate to A^ -1?
1 / L is an eigenvalue of A^ -1
For any scalar alpha added to lamda (L + a), how does that relate to the original matrix A?
(L + a) = ( A + a*I)

This means that if you want to add values to either your original matrix or to the found lamdas, you can still preserve your relationship between the two.
Do A and A^ t have the same eigenvalues?
You betcha!!! :D
If you happen to get a triangular matrix, what is the shortcut to finding your eigenvalues quickly?
You eigenvalues will simply be the values of the diagonal entries.

Easy peasy.
What makes a matrix defective?
If the geometric multiplicity is less than the algebraic multiplicity.

If lamda has algebraic multiplicity 2 but there is only one vector in the eigenspace, then the matrix is defective.
What is the formula that you want to use to diagonalize a matrix?
You'll be wanting that the diagonal matrix D = S^ -1 * A * S

So then you get S from the eigenvectors of A. BAM!!! :D
What is diagonal matrix D ^10 having to do with matrices A and S such that S can diagonalize A?
D ^10 = S^ -1 * A^10 * S
If you have D^ 10 = S^ -1 * A^10 * S.... how can you get what just A^10 = ...?
A^ 10 = S* D^10 & S^-1


So, just flip everything backwards and you're good.
What's the gameplan for diagonalizing a matrix?
1) Find eigenvalues and form eigenvectors.

2) The eigenvectors give you the matrix you'll use to diagonalize the one that the eigenvalues came from.

3) Plug your matrices into the formula D = S^-1 * A * S

4) Ta-da!!! $$$$$$$ yeah.
What is the definition of an orthogonal matrix?
Q^t * Q = I

The transpose times the original matrix equals the identity.
How do you find the least squares solution so an inconsistent system?
Use the formula A^t*A*x = A^t*b

Multiply out, then you have two or three equations, solve for your x's all in terms of b, then your vector is b times whatever values it holds for the various x's.