LA Endterm — Pattern Recognition Cheatsheet

Recognise the question type instantly, then apply the right method. Based on 2024 & 2025 endterms.

Confident Topics

P1 — Linear Systems

Strong
"Find the common intersection point, if it exists" "For which value(s) of h is the system consistent" "Find the reduced echelon form"
  1. Write augmented matrix $[A \mid \mathbf{b}]$
  2. Row reduce to RREF
  3. No row $[0\ 0\ \dots\ 0 \mid d],\ d\neq 0$ means consistent
  4. Free variables → parametric form

P2 — Matrix Equation / Express Inverse

Strong
"Express A⁻¹ in terms of A, Aᵀ and I" "Solve for X" "Suppose A satisfies the identity … Express A⁻¹"
  1. Multiply both sides by $A^{-1}$ on the correct side (left or right)
  2. Key rules: $(AB)^{-1} = B^{-1}A^{-1}$, $(A^T)^{-1} = (A^{-1})^T$, $(AB)^T = B^TA^T$
  3. Order matters — matrix multiplication is not commutative

P7 — Column Space Basis

Strong
"Give all those that are guaranteed to be a basis for the column space" "Find a basis for Col(A)"
  1. Row reduce $A$ to echelon form
  2. Identify pivot columns
  3. Take those columns from the original $A$ (not the echelon form!)
  4. Non-pivot column = linear combination of pivot columns (read from echelon form)

P10 — Eigenvalues & Eigenvectors

Strong
"Find all the eigenvalues" "Find a basis for the eigenspace" "Find an eigenvector associated to λ = …"
  1. Eigenvalues: solve $\det(A - \lambda I) = 0$
  2. Eigenvectors: solve $(A - \lambda I)\mathbf{x} = \mathbf{0}$, parametric form
  3. Triangular matrix → eigenvalues are diagonal entries
  4. Shortcut: if eigenvectors given, verify $A\mathbf{v} = \lambda\mathbf{v}$ to find $\lambda$

P11 — Diagonalizability

Strong
"For which value(s) of h is A diagonalizable?" "Which of the following matrices P can be used in a correct diagonalization?"
  1. Find eigenvalues and their algebraic multiplicities
  2. For each eigenvalue with a.m. > 1: find eigenspace dimension (g.m.)
  3. Diagonalizable iff g.m. = a.m. for every eigenvalue
  4. Shortcut: columns of $P$ must be eigenvectors — check $A\mathbf{v} = \lambda\mathbf{v}$

P12 — Discrete Dynamical Systems

Strong
"Find the general solution of x_{k+1} = Ax_k" "Find the unique solution of the initial value problem" "Find y_n"
  1. General solution: $\mathbf{x}_k = c_1\lambda_1^k\mathbf{v}_1 + c_2\lambda_2^k\mathbf{v}_2$
  2. For IVP: plug $k=0$, set equal to $\mathbf{x}_0$, solve for $c_1, c_2$
  3. Read off the component they ask for ($x_n$ or $y_n$)

P13 — Least-Squares / Best Fit Line

Strong
"Find the equation y = a + bx of the best line (in the least-squares sense)" "Give the normal equations"
  1. Design matrix: $X = \begin{bmatrix} 1 & x_1 \\ 1 & x_2 \\ \vdots & \vdots \end{bmatrix}$, observation vector $\mathbf{y}$
  2. Compute $X^TX$ and $X^T\mathbf{y}$
  3. Solve $X^TX\boldsymbol{\beta} = X^T\mathbf{y}$
  4. Answer: $y = \beta_0 + \beta_1 x$

P15 — Gram-Schmidt

Strong
"Find an orthogonal basis for Col(A)" "Find an orthogonal basis for Span{b₁, b₂, b₃}"
  1. $\mathbf{v}_1 = \mathbf{b}_1$
  2. $\mathbf{v}_2 = \mathbf{b}_2 - \frac{\mathbf{b}_2 \cdot \mathbf{v}_1}{\mathbf{v}_1 \cdot \mathbf{v}_1}\mathbf{v}_1$
  3. $\mathbf{v}_3 = \mathbf{b}_3 - \frac{\mathbf{b}_3 \cdot \mathbf{v}_1}{\mathbf{v}_1 \cdot \mathbf{v}_1}\mathbf{v}_1 - \frac{\mathbf{b}_3 \cdot \mathbf{v}_2}{\mathbf{v}_2 \cdot \mathbf{v}_2}\mathbf{v}_2$
  4. If $\mathbf{v}_k = \mathbf{0}$ → that vector was dependent, skip it
  5. Verify: $\mathbf{v}_i \cdot \mathbf{v}_j = 0$ for $i \neq j$

P16 — Orthogonal Complement

Strong
"Find a basis for W⊥" "Find a vector orthogonal to Col(A)"
  1. Put spanning vectors of $W$ as rows of a matrix
  2. Find the null space
  3. That null space $= W^\perp$

P20 — Complex Eigenvalues / A = PCP⁻¹

Strong
"It is given that λ = a+bi is an eigenvalue. Find P and C such that A = PCP⁻¹" "A is similar to a matrix of the form r[cosφ, −sinφ; sinφ, cosφ]. Find r and φ"
  1. $r = |\lambda| = \sqrt{a^2+b^2}$, $\varphi = \arctan(b/a)$
  2. $C = \begin{bmatrix} a & -b \\ b & a \end{bmatrix}$
  3. Find eigenvector $\mathbf{v}$ for the complex eigenvalue: solve $(A-\lambda I)\mathbf{x}=\mathbf{0}$
  4. $P = [\text{Re}(\mathbf{v}) \mid \text{Im}(\mathbf{v})]$

P21 — det(A) from Matrix Equations

Strong
"Find all possible values for det(A)" "For which values of a and b is the matrix singular?"
  1. Take $\det$ of both sides
  2. Use: $\det(AB) = \det A \cdot \det B$, $\det(A^T)=\det A$, $\det(A^{-1})=\tfrac{1}{\det A}$, $\det(cA)=c^n\det A$
  3. Solve the resulting equation for $\det(A)$
  4. Singular means $\det A = 0$

P25 — Symmetric Matrix / Eigenspace from Orthogonality

Strong
"Find an orthogonal basis of ℝⁿ consisting of eigenvectors" "A is symmetric… if A has another eigenvalue μ, find a basis for E_μ"
  1. Symmetric → eigenspaces for different eigenvalues are orthogonal
  2. If $E_\lambda$ is known, $E_\mu$ is its orthogonal complement
  3. Put $E_\lambda$ basis vectors as rows, find null space

P6 — Rank-Nullity

Strong
"Find rank(A) and dim Nul(A)"
rank = number of pivot columns. dim Nul = $n$ − rank (number of columns minus pivots).

P3 — Determinant Computation

Strong
"Compute det(A)" "Find the determinant"
Cofactor expansion along row/column with most zeros. Or row reduce to triangular (track sign flips from swaps).

Review Tomorrow — Needed Multiple Hints

P14 — Orthogonal Projection / Projection Matrix

Review
"Find the second column/row of the standard matrix P of the orthogonal projection" "Let T(y) = proj_W(y). Find the standard matrix" "Find proj_W(y)"

Key concepts you got confused on:

Steps:

  1. Get an orthogonal basis for $W$ (Gram-Schmidt if needed)
  2. Normalize to orthonormal: $\mathbf{u}_i = \mathbf{v}_i / \|\mathbf{v}_i\|$
  3. $P = UU^T$ where $U = [\mathbf{u}_1 \mid \mathbf{u}_2 \mid \dots]$
  4. Or use projection formula directly: $\displaystyle\text{proj}_W(\mathbf{y}) = \sum \frac{\mathbf{y}\cdot\mathbf{v}_i}{\mathbf{v}_i\cdot\mathbf{v}_i}\mathbf{v}_i$

P10 — Eigenvectors with Complex Numbers

Review
"Find an eigenvector associated to λ = a + bi"

What tripped you up:

P5 — Linear Transformations (non-standard inputs)

Review
"Find the standard matrix A of this transformation" "Write NSI if there is not sufficient information"

The trick you needed a hint for:

For geometric transformations (rotation/reflection):


Not Attempted — Skim If Time Permits

P8 — Coordinate Vectors

Skipped
"Find [w]_B" "Find the coordinate vector"
Row reduce $[\mathbf{b}_1\ \mathbf{b}_2\ \dots \mid \mathbf{w}]$ to $[I \mid \mathbf{c}]$. Then $[\mathbf{w}]_\mathcal{B} = \mathbf{c}$.

P24 — Academic Reasoning

Skipped
"If true, give a proof. If false, give an explicit counterexample."

CSE1205 Linear Algebra — TU Delft — Endterm prep based on 2024 & 2025 exams