Midterm Study Cards Flashcards
What is a linear combination?
The linear combination of two vectors v and w is av + bw where a and b are scalars
Are Point and Vector equivalent in linear algebra?
Yes
What is the symbol for and the formula for the length/magnitude of a n-vector v
The symbol and equation is
||v||, sqrt((v_1)^2+(v_2)^2+(v_n)^2)
How do you prove two vectors are linearly independent?
If there is no way to form a linear combination of them equal to 0 without a and b being 0
What is the equation of the distance between two vectors v and w?
The equation is
||v - w||
What is the zero vector?
The zero vector in R^n with coordinates [0,0,0,0,…,0]
What is a unit vector?
A unit vector is a vector with length 1
When are vectors x and y perpendicular
When the dot product of x and y is 0
What is the cosine of the angle between two vectors v and w?
The cosine is
(v dot w)/(||v||*||w||)
When are two vectors orthogonal?
When they are perpendicular to each other
What 5 rules hold up for all vectors?
v dot w = w dot v
v dot v = ||v||^2
v dot (cw) = c(v dot w) (where c is a scalar)
v dot (w1 + w2) = (v dot w1) + (v dot w2)
v dot (c1w1 + c2w2) = c1(v dot w1) + c2(v dot w2)
What is the correlation coefficient between two vectors v and w?
The equation is
(v dot w)/(||v||*||w||) where v_avg and w_avg = 0
What does a correlation coefficient close to -1 imply?
The data points are close to a line of negative slope
What does a correlation coefficient close to 1 imply?
The data points are close to a line with positive slope
What does a correlation coefficient close to 0 imply?
x and y do not have a strong linear correlation
What is the basic equation of a plane?
ax + by + cz = d where a, b, c, and d are constants
What is the parametric form of the equation of a plane?
P + te + t’e’ where t and t’ are all possible scalar values
What is the normal vector form of the equation of a plane?
A plane is defined by stating it is perpendicular to the vector n and passes through the point w.
How are the normal vector n to the plane W and the plane W which passes through the orgin related?
For W = ax + by + cz = 0, n = [a, b, c] for R^3. This applies to all R^n
What is the three point form of the equation of a plane?
A plane described by 3-points which are NOT collinear
What is the span of vectors v1, v2, …, vk in R^n
The span of the vectors is all possible places in the space R^n that can be reached via a linear combination of the vectors
Or
span(v1,…,vk) = {all n-vectors x of the form c1v1,…,ckvk}
What must be true of spans?
They pass through the origin
What is a linear subspace of R^n?
A linear subspace of R^n is a subset of R^n that is the span of a finite collection of vectors in R^n
Given a linear subspace V, what are true of the vectors within it?
For all vectors that exist in V, any linear combination of those vectors exist in V (aka they belong to the same linear subspace)
What is Dim(V)
Dim V is the dimension of V aka the smallest number of vectors needed to span V.
If W and V are both linear sub spaces in R^n and W is contained in V, what is true of W
W = V
What is a basis
A basis is a set of n vectors which spans a linear subspace of dim = n
When is a collection of vectors considered orthogonal?
When for vi,…,vk, vi dot vj = 0 when i!=j
When is a collection of vectors orthonormal?
A collection of vectors is orthonormal if they’re all orthogonal and unit vectors
How can you convert orthogonal basis’ to orthonormal basis’?
Divide each vector by it’s length
What does the Fourier formula do and what is it?
The Fourier formula can be used to get the scalar multiples which create the vector v which lies on the span of a collection of orthogonal vectors, v = summation from 1 to k of
((v dot v_i)/(vi dot vi))vi where the collection of orthogonal vectors has the form {vi,…,vk}.
What is the Projection and what’s it’s formula?
The Projection is the closest point from one vector to another, the formula for Proj_w(x) = ((x dot w)/(w dot w))w
Given a collection of vectors which make up a linear subspace, how do you find the point closest to a point on that linear subspace?
Let V be the linear subspace = {v1,v2,…,vk} then Proj_V(x) =
Proj_v1(x) + Proj_v2(x) + … + Proj_vk(x)
If V is a linear subspace of R^n how can every vector x in R^n be uniquely expressed?
x = v + v’ where v = Proj_V(x) and
v’ = x - Proj_V(x)
How can you find the orthogonal basis of the span(x,y)
The orthogonal basis would be y and x’ = x - Proj_y(x)
How do you find the line of best fit for a data set?
Break the points into vector X with all the x values and vector Y with all the y vectors. Then calculate x_avg and y_avg. Create a vector X’ = [x1-x_avg, x2 - x_avg, …, xk- x_avg]
Then these into the formula
Proj_X’(Y) + Proj_1(Y) the coefficients of these vectors are the equation of the line. Note that X’ = X - x_avg([1])
What is the value of g(f(x)) for a Multivariable problem
G applied to F. So f’s output values plugged into G.
What is a saddle point?
A saddle point is a point where both f_x and f_y are 0 but while in on direction it appears the point is a minimum, but the other it appears to be a maximum
How do you calculate the linear approximation of a function f?
For x near a ∈ Rn
, the linear approximation to f is
f(x) ≈ f(a) + ((∇f)(a)) · (x − a).
What is the equation of the subspace tangent to the curve on a contour plot?
At the point a, b the tangent vector is GradF(a,b) dot [x - a, y - b] = 0
How can you immediately tell if a set of vectors is not linearly independent?
If it has a vector which is not non-zero
When is a vector non-zero?
When it has at least one entry which is non-zero
Upper left to lower right diagonal of inverse square matrix is always what?
1/The original value of the position in the diagonal
REVIEW 11/29/2022 LECTURE (Specifically for inverse matrix review) Also reveal about midterm potentially at around 30 minutes in (go like 24 and watch should be on the slide with blue box on the top also around 52 (go to like 47)
YES
What is the determinant of an upper or lower triangular matrix?
The product of it’s diagonal entries