← Back To Notes↑ Back To Top

Matrices Practice

GitHub Changelog -

  • 1

0 of 27 completed

Create worksheet

Selected problems

No problems selected.

    Direct

    1.1Identify a Matrix Entry

    Exam I | Problem 1.1 |

    For

    $$ A = \begin{bmatrix} 2 & -1 & 4 \\ 0 & 5 & 7 \\ 3 & 8 & 6 \end{bmatrix}, $$

    what is $a_{23}$?

    1.2Determine a Matrix's Dimensions

    Exam I | Problem 1.2 |

    What is the size of the matrix below?

    $$ \begin{bmatrix} 1 & 0 & 2 & -3 \\ 4 & 5 & -1 & 6 \end{bmatrix} $$

    1.3Classify a Matrix

    Exam I | Problem 1.3 |

    Name every matrix type from the note that applies to

    $$ \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}. $$

    1.4Add Two Matrices

    Exam I | Problem 1.4 |

    Compute the sum:

    $$ \begin{bmatrix} 1 & 3 \\ 2 & -4 \end{bmatrix} + \begin{bmatrix} 5 & -1 \\ -2 & 7 \end{bmatrix} $$

    1.5Scale a Matrix

    Exam I | Problem 1.5 |

    Compute $-3A$ for

    $$ A = \begin{bmatrix} 1 & -2 \\ 4 & 0 \end{bmatrix}. $$

    1.6Check Matrix Multiplication Compatibility

    Exam I | Problem 1.6 |

    Suppose $A$ is a $2 \times 3$ matrix and $B$ is a $3 \times 1$ matrix. Is $AB$ defined, and what size is the product?

    1.7Transpose a Matrix

    Exam I | Problem 1.7 |

    Find the transpose of

    $$ \begin{bmatrix} 1 & 4 & -2 \\ 3 & 0 & 5 \end{bmatrix}. $$

    1.8Compute a 2 by 2 Determinant

    Exam I | Problem 1.8 |

    Find the determinant of

    $$ \begin{bmatrix} 7 & 2 \\ 5 & 3 \end{bmatrix}. $$

    1.9Find the Inverse of a 2 by 2 Matrix

    Exam I | Problem 1.9 |

    Find the inverse of

    $$ A = \begin{bmatrix} 2 & 1 \\ 5 & 3 \end{bmatrix}. $$

    1.10Compute the Trace of a Matrix

    Exam I | Problem 1.10 |

    Find the trace of

    $$ \begin{bmatrix} 4 & 1 & 0 \\ 2 & -3 & 5 \\ 7 & 8 & 6 \end{bmatrix}. $$

    Integrated

    2.1Multiply Two Matrices

    Exam II | Problem 2.1 |

    Compute

    $$ \begin{bmatrix} 1 & 2 \\ 3 & 0 \end{bmatrix} \begin{bmatrix} 4 & 1 \\ -2 & 5 \end{bmatrix}. $$

    2.2Use Matrix-Vector Multiplication

    Exam II | Problem 2.2 |

    Let

    $$ A = \begin{bmatrix} 2 & -1 & 0 \\ 1 & 3 & 4 \end{bmatrix} \quad \text{and} \quad x = \begin{bmatrix} 5 \\ 2 \\ -1 \end{bmatrix}. $$

    Compute $Ax$.

    2.3Solve a System by Row Reduction

    Exam II | Problem 2.3 |

    Solve the system:

    $$ \begin{aligned} x + 2y &= 8 \\ 2x - y &= 1 \end{aligned} $$

    2.4Find Rank and Nullity from a Row-Reduced Matrix

    Exam II | Problem 2.4 |

    A $3 \times 4$ matrix row-reduces to

    $$ \begin{bmatrix} 1 & 0 & 2 & -1 \\ 0 & 1 & 3 & 4 \\ 0 & 0 & 0 & 0 \end{bmatrix}. $$

    What are its rank and nullity?

    2.5Find the Eigenvalues of a Matrix

    Exam II | Problem 2.5 |

    Find the eigenvalues of

    $$ A = \begin{bmatrix} 3 & 1 \\ 0 & 2 \end{bmatrix}. $$

    2.6Use Diagonalization to Compute a Power

    Exam II | Problem 2.6 |

    Suppose

    $$ A = P \begin{bmatrix} 2 & 0 & 0 \\ 0 & -1 & 0 \\ 0 & 0 & 3 \end{bmatrix} P^{-1}. $$

    Find $A^4$.

    2.7Complete a Symmetric Matrix

    Exam II | Problem 2.7 |

    Find the values of $a$ and $b$ that make the matrix symmetric:

    $$ \begin{bmatrix} 1 & 4 & -2 \\ a & 0 & 7 \\ -2 & b & 5 \end{bmatrix} $$

    2.8Use Determinant Properties

    Exam II | Problem 2.8 |

    Suppose

    $$ \det(A) = -2 \quad \text{and} \quad \det(B) = 5. $$

    Find $\det(B^T A)$ and determine whether $B^T A$ is singular.

    Applied

    3.1Model a Purchase with a System

    A store sells notebooks and pens.

    Two notebooks and three pens cost \$13. One notebook and one pen cost \$5.

    What is the price of one notebook?

    3.2Interpret a Row-Reduced System

    Final | Problem 3.2 |

    A system row-reduces to

    $$ \begin{bmatrix} 1 & 0 & 2 & \mid & 4 \\ 0 & 1 & -1 & \mid & 3 \\ 0 & 0 & 0 & \mid & 0 \end{bmatrix}. $$

    How many solutions does the system have?

    3.3Apply Rank-Nullity

    Final | Problem 3.3 |

    A $4 \times 6$ matrix has rank $4$.

    How many free variables does the homogeneous system $Ax = 0$ have?

    3.4Recognize an Eigenvector

    Final | Problem 3.4 |

    A nonzero vector $v$ satisfies

    $$ Av = -3v. $$

    What does this tell you about $v$ and the scalar $-3$?

    3.5Use an LU Factorization

    A matrix $A$ has the factorization $A = LU$, where

    $$ L = \begin{bmatrix} 1 & 0 & 0 \\ -2 & 1 & 0 \\ 3 & 4 & 1 \end{bmatrix} \quad \text{and} \quad U = \begin{bmatrix} 2 & -1 & 0 \\ 0 & 5 & 3 \\ 0 & 0 & -4 \end{bmatrix}. $$

    Without multiplying $L$ and $U$, find $\det(A)$ and say whether $A$ is invertible.

    Challenge

    4.1Use a Determinant Identity

    Final | Problem 4.1 |

    Suppose $A$ is a square matrix and

    $$ \det(A) = 3. $$

    Find $\det(A^T A)$ and decide whether $A^T A$ is invertible.

    4.2A Matrix That Is Symmetric and Skew-Symmetric

    If a matrix satisfies both

    $$ A^T = A $$

    and

    $$ A^T = -A, $$

    what must $A$ be?

    4.3An Invertible Projection Matrix

    Suppose a matrix $P$ satisfies

    $$ P^2 = P $$

    and also has an inverse. What must $P$ be?

    4.4Reason About a QR Factorization

    A matrix $A$ is written as

    $$ A = QR, $$

    where $Q$ is orthogonal and

    $$ R = \begin{bmatrix} 2 & 1 & 0 \\ 0 & -3 & 4 \\ 0 & 0 & 5 \end{bmatrix}. $$

    Explain why $A$ is invertible.