20. Assessment Details

Midterm Exam

Covers:.

Midterm Exam: Linear Algebra Assessment Details

Introduction

students, the midterm exam in Linear Algebra is designed to check how well you can use the main tools you have learned so far 📘. It focuses on the core ideas that connect many topics in the course: systems of equations, matrix operations, inverses and determinants, vectors, span, basis, subspaces, and linear transformations.

By the end of this lesson, you should understand what the midterm is likely to measure, how the topics fit together, and how to prepare in a smart, organized way. The goal is not just to memorize formulas, but to recognize patterns and solve problems step by step.

Learning goals

  • Solve systems of equations using algebraic and matrix methods.
  • Perform matrix operations correctly.
  • Use inverses and determinants to study whether a matrix is invertible.
  • Work with vectors, span, basis, and subspaces.
  • Understand linear transformations and how they relate to matrices.

These topics are tightly connected. For example, a system of equations can be written as a matrix equation, and a linear transformation can often be represented by a matrix. That means one skill helps you with several others.

Systems of Equations and Matrix Form

A system of equations is a set of equations that use the same variables. For example,

$$

$\begin{aligned}$

$2x+y&=5\\$

$x-y&=1$

$\end{aligned}$

$$

The goal is to find values of $x$ and $y$ that make both equations true at the same time. Systems can have one solution, no solution, or infinitely many solutions.

One major exam skill is converting a system into matrix form. The system above can be written as

$$

$\begin{bmatrix}$

2 & 1\\

1 & -1

$\end{bmatrix}$

$\begin{bmatrix}$

x\\

y

$\end{bmatrix}$

$=$

$\begin{bmatrix}$

5\\

1

$\end{bmatrix}.$

$$

Here, the matrix of coefficients is $A$, the variable vector is $\mathbf{x}$, and the result vector is $\mathbf{b}$. This gives the compact form $A\mathbf{x}=\mathbf{b}$.

On the midterm, you may be asked to solve systems by substitution, elimination, or row reduction. Row reduction uses elementary row operations to simplify the augmented matrix. For example, the augmented matrix for the system above is

$$

$\left[$

$\begin{array}{cc|c}$

2 & 1 & 5\\

1 & -1 & 1

$\end{array}$

$\right].$

$$

A common strategy is to create a leading $1$ and then eliminate entries below or above it. If the reduced matrix shows a row like

$$

$\left[$

$0\quad 0\mid 3$

$\right],$

$$

then the system has no solution because $0=3$ is impossible. If you get a row of all zeros, that may mean infinitely many solutions.

Matrix Operations and What They Mean

Matrices are rectangular arrays of numbers that organize data and represent transformations. The exam may test addition, scalar multiplication, multiplication, and sometimes transposes.

For matrices to be added, they must have the same size. If

$$

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

\quad\text{and}\quad

$B=\begin{bmatrix}5&6\\7&8\end{bmatrix},$

$$

then

$$

$A+B=\begin{bmatrix}6&8\\10&12\end{bmatrix}.$

$$

Scalar multiplication means multiplying every entry by the same number. For example,

$$

$3A=\begin{bmatrix}3&6\\9&12\end{bmatrix}.$

$$

Matrix multiplication is more involved. If $A$ is $m\times n$ and $B$ is $n\times p$, then $AB$ is defined and has size $m\times p$. The inside dimensions must match. This is a very common exam rule.

For example,

$$

$A=\begin{bmatrix}1&2\\3&4\end{bmatrix},$

$\quad$

$B=\begin{bmatrix}2&0\\1&5\end{bmatrix}.$

$$

Then

$$

$AB=\begin{bmatrix}$

$1\cdot 2$+$2\cdot 1$ & $1\cdot 0$+$2\cdot 5$\\

$3\cdot 2$+$4\cdot 1$ & $3\cdot 0$+$4\cdot 5$

$\end{bmatrix}$

$=$

$\begin{bmatrix}$

4 & 10\\

10 & 20

$\end{bmatrix}.$

$$

Notice that $AB$ is not usually equal to $BA$. That is one of the most important differences between matrix multiplication and regular multiplication.

A transpose switches rows and columns. If

$$

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

$$

then

$$

$A^T=\begin{bmatrix}1&4\\2&5\\3&6\end{bmatrix}.$

$$

Transposes often appear when studying symmetry or dot-product relationships.

Inverses and Determinants

A square matrix $A$ has an inverse $A^{-1}$ if and only if $AA^{-1}=I$ and $A^{-1}A=I$, where $I$ is the identity matrix. The identity matrix acts like $1$ in multiplication. For a $2\times 2$ matrix,

$$

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

$$

If a matrix has an inverse, then the system $A\mathbf{x}=\mathbf{b}$ has a unique solution given by

$$

$\mathbf{x}=A^{-1}\mathbf{b}.$

$$

On the midterm, you may need to determine whether a matrix is invertible. For a $2\times 2$ matrix

$$

$A=\begin{bmatrix}a&b\c&d\end{bmatrix},$

$$

the determinant is

$$

$\det(A)=ad-bc.$

$$

If $\det(A)\neq 0$, then $A$ is invertible. If $\det(A)=0$, then it is not invertible.

For example,

$$

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

$$

has

$$

$\det(A)=2\cdot 4-1\cdot 3=5.$

$$

Since $5\neq 0$, the matrix is invertible. Its inverse is

$$

$A^{-1}=\frac{1}{5}\begin{bmatrix}4&-1\\-3&2\end{bmatrix}.$

$$

Determinants also give information about geometry. A determinant can describe scaling of area or volume under a linear transformation. For example, if the determinant of a $2\times 2$ matrix is $3$, then areas are multiplied by a factor of $3$.

Vectors, Span, Basis, and Subspaces

Vectors are ordered lists of numbers. In $\mathbb{R}^2$, a vector looks like

$$

$\mathbf{v}=\begin{bmatrix}2\\-1\end{bmatrix}.$

$$

In $\mathbb{R}^3$, a vector has three entries, such as

$$

$\mathbf{u}=\begin{bmatrix}1\\0\\5\end{bmatrix}.$

$$

Vectors can be added and multiplied by scalars. If

$$

$\mathbf{u}=\begin{bmatrix}1\\2\end{bmatrix},$

$\quad$

$\mathbf{v}=\begin{bmatrix}3\\-1\end{bmatrix},$

$$

then

$$

$\mathbf{u}+\mathbf{v}=\begin{bmatrix}4\\1\end{bmatrix}$

$$

and

$$

$2\mathbf{u}=\begin{bmatrix}2\\4\end{bmatrix}.$

$$

The span of a set of vectors is the collection of all linear combinations of those vectors. If a vector $\mathbf{w}$ is in the span of vectors $\mathbf{v}_1,\mathbf{v}_2,\dots,\mathbf{v}_k$, then there exist scalars $c_1,c_2,\dots,c_k$ such that

$$

$\mathbf{w}=c_1\mathbf{v}_1+c_2\mathbf{v}_2+\cdots+c_k\mathbf{v}_k.$

$$

A good way to think about span is as the set of directions or points you can reach using those vectors. For example, in $\mathbb{R}^2$, two non-parallel vectors can span the entire plane.

A basis is a set of vectors that both spans a space and is linearly independent. Linear independence means none of the vectors can be written as a combination of the others. A basis is important because it gives the smallest useful set of vectors to describe a space.

For example, the standard basis for $\mathbb{R}^2$ is

$$

$\begin{bmatrix}1\\0\end{bmatrix},$

$\quad$

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

$$

These vectors span $\mathbb{R}^2$ and are linearly independent. A subspace is a set that contains the zero vector and is closed under addition and scalar multiplication. Common examples include a line through the origin or a plane through the origin in $\mathbb{R}^3$.

Linear Transformations

A linear transformation is a function that takes vectors in one vector space and sends them to another, while preserving addition and scalar multiplication. If $T$ is linear, then

$$

$T(\mathbf{u}+\mathbf{v})=T(\mathbf{u})+T(\mathbf{v})$

$$

and

$$

$T(c\mathbf{u})=cT(\mathbf{u}).$

$$

Examples include scaling, rotation, reflection, and projection. A transformation that stretches every vector by a factor of $2$ is linear. A transformation that shifts every vector by adding a fixed vector is not linear.

Many linear transformations can be represented by matrices. If

$$

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

$$

then the transformation $T(\mathbf{x})=A\mathbf{x}$ maps vectors in $\mathbb{R}^2$ to new vectors in $\mathbb{R}^2$. For example,

$$

$T\!\left(\begin{bmatrix}3\\4\end{bmatrix}\right)$

$=$

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

$\begin{bmatrix}3\\4\end{bmatrix}$

$=$

$\begin{bmatrix}11\\4\end{bmatrix}.$

$$

This shows how a matrix can act like a machine that changes vectors. On the midterm, you may be asked to find the matrix of a transformation, compute a transformed vector, or decide whether a transformation is linear.

Conclusion

The midterm exam brings together the most important ideas in early Linear Algebra. students, if you can move comfortably between equations, matrices, vectors, and transformations, you are building strong understanding. The best preparation is to practice each topic separately and then practice how they connect. For example, solve a system using row reduction, check invertibility with a determinant, and interpret a transformation using a matrix. Consistent practice helps you avoid small mistakes and recognize which method fits each problem.

Study Notes

  • A system of equations can be written as $A\mathbf{x}=\mathbf{b}$.
  • Row reduction helps solve systems and detect whether there is one solution, no solution, or infinitely many solutions.
  • Matrices can be added only when they have the same size.
  • For multiplication, if $A$ is $m\times n$ and $B$ is $n\times p$, then $AB$ is defined and is $m\times p$.
  • In general, $AB\neq BA$.
  • A matrix is invertible exactly when its determinant is not zero.
  • For $A=\begin{bmatrix}a&b\c&d\end{bmatrix}$, $\det(A)=ad-bc$.
  • If $A$ is invertible, then $A^{-1}A=I$ and $A\mathbf{x}=\mathbf{b}$ has the unique solution $\mathbf{x}=A^{-1}\mathbf{b}$.
  • A vector is an ordered list of numbers, and vectors can be added or scaled.
  • The span of vectors is the set of all their linear combinations.
  • A basis spans a space and is linearly independent.
  • A subspace must contain the zero vector and be closed under addition and scalar multiplication.
  • A linear transformation preserves addition and scalar multiplication.
  • Many linear transformations can be represented by matrices.

Practice Quiz

5 questions to test your understanding