1/123
A collection of 120 flashcards covering vectors, matrices, systems of equations, determinants, vector spaces, and eigenvalues from a Linear Algebra course study guide.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
What is the definition of a vector according to the transcript?
An ordered list of numbers that represents a quantity with magnitude and direction.
What is a scalar?
An ordinary number used to scale a vector.
How are vectors in R2 and R3 commonly written?
v=⟨v1,v2⟩ in R2 and v=⟨v1,v2,v3⟩ in R3.
How is vector addition performed?
By adding the corresponding components of the vectors: u+v=⟨u1+v1,u2+v2,…⟩.
How is scalar multiplication performed on a vector?
By multiplying every component of the vector by the scalar: cv=⟨cv1,cv2,…⟩.
When are two vectors considered equal?
When all of their corresponding components are equal.
What characterizes the zero vector?
All of its components are equal to zero.
What is the formula for the magnitude or norm of a vector v?
∣∣v∣∣=v12+v22+⋯+vn2
What is the length of a unit vector?
1
How do you normalize a nonzero vector v?
Divide the vector by its magnitude: u=∣∣v∣∣v.
If v=⟨3,4⟩, what is its magnitude?
∣∣v∣∣=5
What is the unit vector in the direction of v=⟨3,4⟩?
⟨53,54⟩
What condition must two nonzero vectors meet to be considered parallel?
One must be a scalar multiple of the other.
Why are the vectors ⟨2,4⟩ and ⟨1,2⟩ parallel?
Because ⟨2,4⟩=2⟨1,2⟩.
What is the formula for the dot product of two vectors u and v?
u⋅v=u1v1+u2v2+⋯+unvn
What is the scalar result of a dot product?
A scalar value.
When are two vectors orthogonal (perpendicular)?
If and only if their dot product is zero (u⋅v=0).
What is the formula for the angle θ between two nonzero vectors u and v?
cos(θ)=∣∣u∣∣∣∣v∣∣u⋅v
What does the projection of a onto b (projb(a)) measure?
The part of a that points in the direction of b.
What is the formula for projb(a)?
projb(a)=(b⋅ba⋅b)b
What practical applications are mentioned for vector projection?
Geometry, least-squares problems, mechanics, and decomposing vectors.
If u⋅v>0, what is the nature of the angle between them?
The angle is acute.
If u⋅v<0, what is the nature of the angle between them?
The angle is obtuse.
If u⋅v=0, what is the angle between the vectors?
90∘ (90 degrees).
Given a unit vector u, how do you find the scalar component of v in the direction of u?
By calculating v⋅u.
In which dimension is the cross product u×v defined?
R3
What is the formula for the cross product u×v?
u×v=⟨u2v3−u3v2,u3v1−u1v3,u1v2−u2v1⟩
How is the direction of the cross product vector determined?
By the right-hand rule.
What is the trigonometric formula for the magnitude of the cross product?
∣∣u×v∣∣=∣∣u∣∣∣∣v∣∣sin(θ)
What geometric area is calculated by ∣∣u×v∣∣?
The area of the parallelogram formed by u and v.
How do you find the area of the triangle formed by vectors u and v?
21∣∣u×v∣∣
If u×v=0 for nonzero vectors, what can be concluded?
The vectors u and v are parallel.
What two items determine a line in 3D space?
A point r0 and a direction vector v.
What is the vector equation of a line in 3D?
r=r0+tv
What are the parametric equations for a line passing through r0=⟨x0,y0,z0⟩ with direction v=⟨a,b,c⟩?
x=x0+at, y=y0+bt, z=z0+ct
How are symmetric equations of a line formed?
By solving each parametric equation for t, resulting in ax−x0=by−y0=cz−z0 (where a,b,c=0).
What two items determine a plane in 3D?
A point (x0,y0,z0) and a nonzero normal vector n=⟨a,b,c⟩.
What is the equation of a plane?
a(x−x0)+b(y−y0)+c(z−z0)=0 or ax+by+cz=d
When are two planes considered parallel?
When their normal vectors are parallel.
When are two planes considered perpendicular?
When their normal vectors are perpendicular.
What is the condition for a line to be parallel to a plane?
Its direction vector must be orthogonal to the plane's normal vector.
What is the condition for a line to be perpendicular to a plane?
Its direction vector must be parallel to the plane's normal vector.
How is the distance between points P and Q calculated?
∣∣Q−P∣∣
What is the distance formula from point (x0,y0,z0) to the plane ax+by+cz=d?
a2+b2+c2∣ax0+by0+cz0−d∣
What are skew lines?
Lines in R3 that are not parallel and do not intersect.
What are the dimensions of an m×n matrix?
m rows and n columns.
What is a square matrix?
A matrix with the same number of rows and columns.
What is a diagonal matrix?
A square matrix with zeros everywhere except on the main diagonal.
What is a triangular matrix?
A matrix that has zeros either above or below the main diagonal.
What characterizes the identity matrix I?
It has 1s on the diagonal and 0s elsewhere.
What is the zero matrix?
A matrix where all entries are equal to zero.
What is required to add two matrices?
They must be of the same size.
When does the matrix product AB exist?
When the number of columns of A equals the number of rows of B.
Is matrix multiplication commutative in general?
No, in general, AB=BA.
What are the laws of associativity and distributivity for matrix multiplication?
Associative: A(BC)=(AB)C; Distributive: A(B+C)=AB+AC.
What is the transpose protocol for entries of a matrix?
(AT)ij=Aji (rows and columns are switched).
What is the trace of a square matrix (tr(A))?
The sum of its diagonal entries: a11+a22+⋯+ann.
How is a system of linear equations written compactly?
Ax=b
What does an augmented matrix [A∣b] contain?
The coefficient matrix and the constants.
What are the three elementary row operations?
What is a property of row echelon form?
All nonzero rows are above zero rows, and leading entries move to the right as you move down.
What is the specific requirement for Reduced Row Echelon Form (RREF)?
Each pivot must be 1 and be the only nonzero entry in its column.
In matrix terminology, what is a pivot?
A leading nonzero entry.
What is the difference between a pivot variable and a free variable?
A pivot variable corresponds to a pivot column, while a free variable corresponds to a non-pivot column.
What is usually the result of having free variables in a consistent system?
Infinitely many solutions.
What row reduction result indicates no solution?
A contradiction such as [000∣5].
What is a unique solution condition in terms of variables?
Every variable is a pivot variable and the system is consistent.
What is a homogeneous system?
A system of the form Ax=0.
Why is a homogeneous system always consistent?
Because x=0 (the trivial solution) is always a solution.
When does a homogeneous system have a nontrivial solution?
When at least one free variable occurs.
For a square matrix A, when does Ax=0 have only the trivial solution?
Exactly when A is invertible.
What is the definition of the inverse of a square matrix A?
A matrix A−1 such that AA−1=A−1A=I.
What is the determinant condition for matrix invertibility?
A square matrix is invertible if and only if its determinant is nonzero.
What is the inverse formula for a 2×2 matrix A=(acbd)?
A−1=ad−bc1(d−c−ba)
How do you find A−1 using row reduction?
Row reduce the augmented matrix [A∣I] to [I∣A−1].
What is the formula for a 2×2 determinant?
det(A)=ad−bc
What is the determinant of a triangular matrix?
The product of its diagonal entries.
How does swapping two rows affect the determinant?
It multiplies the determinant by −1.
How does multiplying one row by c affect the determinant?
It multiplies the determinant by c.
How does adding a multiple of one row to another affect the determinant?
It does not change the determinant.
What is the relationship between det(AB) and det(A) and det(B)?
det(AB)=det(A)det(B)
What is the relationship between det(AT) and det(A)?
det(AT)=det(A)
What is det(A−1) for an invertible matrix A?
det(A−1)=det(A)1
What is a minor (Mij)?
The determinant obtained after deleting row i and column j.
What is a cofactor (Cij)?
Cij=(−1)i+jMij
What is the geometric meaning of ∣det(A)∣ in R2?
The area scale factor of the transformation x→Ax.
What does a negative determinant indicate regarding orientation?
It reverses orientation.
What is Cramer's Rule used for?
To solve a square system Ax=b when det(A)=0.
What is the formula for the adjugate of A (adj(A))?
The transpose of the cofactor matrix.
What is the inverse formula using the adjugate?
A−1=det(A)adj(A)
What are the three conditions for a subset to be a subspace?
What is the null space of matrix A?
The set of solutions to Ax=0.
What is the span of a set of vectors?
The set of all possible linear combinations of those vectors.
How do you test if a vector b lies in Span{v1,…,vk}?
Solve the system (v1v2…vk)c=b.
When are vectors v1,…,vk linearly independent?
If c1v1+⋯+ckvk=0 has only the trivial solution.
Can a set containing the zero vector be linearly independent?
No, any set containing the zero vector is linearly dependent.
If you have more than n vectors in Rn, what must be true?
The set of vectors must be linearly dependent.
What is a basis for a vector space?
A set of vectors that is both linearly independent and spans the vector space.
What is the dimension of a vector space?
The number of vectors in any basis for that space.
What are the standard basis vectors for R2?
e1=⟨1,0⟩,e2=⟨0,1⟩