poltomo
project by varun
Wednesday, March 26, 2025
two problems
Saturday, February 8, 2025
how to pay n cents
Thursday, February 6, 2025
matrix 2-norm
Tuesday, February 4, 2025
more about projectors
Say you have a vector v in Cm and a matrix A in Cmxn. How do you obtain the projection of v onto range(A)?
Consider v once it has been decomposed into a component in range(A) and a component in ⊥range(A).
v = projA(v) + (v - projA(v))
Because proj_A(v) is in range(A), proj_A = Ax for some x in Cn.
v = Ax + (v - Ax)
v - Ax is orthogonal to range(A), so
(a_i)*(v - Ax) = 0 for all columns a_i. This is better shown in matrix form: A*(v - Ax) = 0
(A*A)x = A*v
When is A*A invertible? This is the case when the null space of A*A = {0}. If the n columns of A in Cm are linearly independent, then null(A) = {0} by the rank-nullity theorem: # columns of A = rank(A) + dim(null(A)). This means that the linear map A is injective (one-to-one), or an "embedding". The vectors Ax in Cm are all orthogonal to the left null space of A, so Ax -> A*Ax is injective. Thus, the entire map is injective, and is surjective too since the map goes from Cn to Cn. Thus, A*A is bijective and invertible.
x = (A*A)-1A*v, and projA(v) = Ax = A(A*A)-1A*v
What is the matrix, P = A(A*A)-1A*? P is the orthogonal projector onto range(A) since P2=P and P*=P.
Wednesday, January 15, 2025
projectors and reflectors
Notation: if v is a vector, then v* is its conjugate transpose and vv* is an outer product. If Q is a matrix, Q* is its conjugate transpose. C^m is the vector space over the complex numbers. The conjugate transpose is just the regular transpose ^T in R^m.
Say you have a vector v in C^m, then P_1 = (vv*)/(v*v) is the rank one projector onto the line: span(v). P_2 = (I - P_1) is the rank m - 1 complementary projector onto the hyperplane: ⊥span(v). Intuitively, P_1 isolates the component that exists in span(v), while the transform P_2 = (I - P_2) "shaves off" that component. If v has unit length, then P_1 = vv*, since the inner product v*v = 1. You can project onto more than just hyperplanes and lines. If you have an m by n matrix Q (n ≤ m) with pairwise orthonormal columns, then QQ* projects onto the space spanned by those columns. Notice the similarity between vv* and QQ*. Also, notice that QQ* = I if Q is a full basis for C^m.
What if you want to reflect a vector across a hyperplane ⊥span(v)? This is just a matter of inverting the component in span(v): P3 = (I - 2(P_1)). Here's an easy example of this in 3d space: imagine if the hyper plane is the xy-plane (z=0, x and y are free): the line orthogonal to this space is span(e3). The projector onto the xy-plane is the (I - [0, 0, e3]) = [e1, e2, 0]: which is just the identity matrix, except the last column is zero. (I - 2[0, 0, e3]) is just the identity matrix except the last entry in the diagonal negates the z component.
What are the eigenvalues of a transform that reflects a vector in C^m across a hyperplane? The components of the vector in ⊥span(v) hyperplane are untouched, while the component of the vector in span(v) is negated. Hence, the eigenvalues of reflector are all one except for a single negative one. The determinant is the product of all of these eigenvalues: negative one. Hence, the transform is unitary and the singular values are all 1. This is the solution to excercise 10.1 in Numerical Linear Algebra by Trefethen and Bau.