LINEAR-ALGEBRA Β· Unit 1 Β· Video 1 Β· Interactive Practice

Three Ways to See Linear Equations: Row Picture, Column Picture & Matrix Form

IKey Formulas

Formula Name Description
Ax=bA\mathbf{x} = \mathbf{b} Matrix form Coefficient matrix times unknowns equals right-hand side
x col1+y col2=bx\,\mathbf{col}_1 + y\,\mathbf{col}_2 = \mathbf{b} Column picture Linear combination of columns of AA equals target b\mathbf{b}
c1v1+c2v2+β‹―+cnvnc_1\mathbf{v}_1 + c_2\mathbf{v}_2 + \cdots + c_n\mathbf{v}_n Linear combination Scalars times vectors, added together β€” the central operation

IIVisualization 1 β€” The Row Picture

Each equation is a line; the solution is the single point where 2xβˆ’y=02x - y = 0 and βˆ’x+2y=3-x + 2y = 3 cross.

IIIVisualization 2 β€” The Column Picture

Which multiples of the columns (2,βˆ’1)(2, -1) and (βˆ’1,2)(-1, 2) add up tip-to-tail to the target b=(0,3)\mathbf{b} = (0, 3)?

πŸ’‘ Every target is reachable this way β€” unless the two columns point along the same line, which Visualization 3 explores.

IVVisualization 3 β€” Reachability & Span

When do combinations of the two columns fill the whole plane, and when do they collapse onto a line?

πŸ’‘ Challenge: rotate column 2 until the sample points collapse onto a single line β€” then Ax=bA\mathbf{x} = \mathbf{b} has no solution for most targets.

VQuiz Questions

Question 1

In the row picture of a system of two linear equations in two unknowns (xx and yy), what does each equation represent geometrically in 2D?

βœ… Correct! Each linear equation in two unknowns traces out a line. The solution is where the lines intersect.

❌ Not quite. Think about all the (x,y)(x, y) pairs that satisfy a single equation like 2xβˆ’y=02x - y = 0. What shape do they form?

Show solution

Solution:

In 2D (two unknowns), each linear equation defines a line in the xyxy-plane.

For our system:

  • 2xβˆ’y=02x - y = 0 is the line y=2xy = 2x
  • βˆ’x+2y=3-x + 2y = 3 is the line y=x+32y = \frac{x + 3}{2}

The solution to the system is the intersection point of these lines: (1,2)(1, 2).

Note: In 3D (three unknowns), each equation would instead define a plane.

Question 2

The column picture rewrites our system as a linear combination:

x[2βˆ’1]+y[βˆ’12]=[03]x \begin{bmatrix} 2 \\ -1 \end{bmatrix} + y \begin{bmatrix} -1 \\ 2 \end{bmatrix} = \begin{bmatrix} 0 \\ 3 \end{bmatrix}

What values of xx and yy solve this equation?

βœ… Correct! One copy of column 1 plus two copies of column 2 hits the target exactly.

❌ Not quite. Try plugging your values in: compute xβ‹…[2,βˆ’1]T+yβ‹…[βˆ’1,2]Tx \cdot [2, -1]^T + y \cdot [-1, 2]^T and check if you get [0,3]T[0, 3]^T.

Show solution

Solution:

Check x=1,β€…β€Šy=2x = 1, \; y = 2:

1[2βˆ’1]+2[βˆ’12]=[2βˆ’1]+[βˆ’24]=[03]β€…β€Šβœ“1 \begin{bmatrix} 2 \\ -1 \end{bmatrix} + 2 \begin{bmatrix} -1 \\ 2 \end{bmatrix} = \begin{bmatrix} 2 \\ -1 \end{bmatrix} + \begin{bmatrix} -2 \\ 4 \end{bmatrix} = \begin{bmatrix} 0 \\ 3 \end{bmatrix} \; \checkmark

Why not the others?

  • x=2,y=1x=2, y=1: gives [4βˆ’2]+[βˆ’12]=[30]β‰ [03]\begin{bmatrix}4\\-2\end{bmatrix} + \begin{bmatrix}-1\\2\end{bmatrix} = \begin{bmatrix}3\\0\end{bmatrix} \neq \begin{bmatrix}0\\3\end{bmatrix}
  • x=0,y=32x=0, y=\tfrac{3}{2}: gives [00]+[βˆ’3/23]=[βˆ’3/23]β‰ [03]\begin{bmatrix}0\\0\end{bmatrix} + \begin{bmatrix}-3/2\\3\end{bmatrix} = \begin{bmatrix}-3/2\\3\end{bmatrix} \neq \begin{bmatrix}0\\3\end{bmatrix}
  • x=3,y=0x=3, y=0: gives [6βˆ’3]+[00]=[6βˆ’3]β‰ [03]\begin{bmatrix}6\\-3\end{bmatrix} + \begin{bmatrix}0\\0\end{bmatrix} = \begin{bmatrix}6\\-3\end{bmatrix} \neq \begin{bmatrix}0\\3\end{bmatrix}

Question 3

True or False: The matrix-vector product AxA\mathbf{x} computes a linear combination of the rows of AA, weighted by the entries of x\mathbf{x}.

βœ… Correct! AxA\mathbf{x} is a linear combination of the columns of AA, not the rows. Each entry of x\mathbf{x} scales the corresponding column.

❌ Not quite. Look carefully at how AxA\mathbf{x} splits apart: each column of AA gets multiplied by the corresponding entry of x\mathbf{x}.

Show solution

Solution: False

AxA\mathbf{x} is a linear combination of the columns of AA (not the rows), weighted by the entries of x\mathbf{x}:

[2βˆ’1βˆ’12][xy]=x[2βˆ’1]⏟columnΒ 1+β€…β€Šy[βˆ’12]⏟columnΒ 2\begin{bmatrix} 2 & -1 \\ -1 & 2 \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = x \underbrace{\begin{bmatrix} 2 \\ -1 \end{bmatrix}}_{\text{column 1}} + \; y \underbrace{\begin{bmatrix} -1 \\ 2 \end{bmatrix}}_{\text{column 2}}

This is one of the central insights of the video: "When you multiply a matrix by a vector, you're combining columns." The matrix form Ax=bA\mathbf{x} = \mathbf{b} is the column picture written compactly.

Question 4

Suppose the two columns of a 2Γ—22 \times 2 matrix AA point in the same direction (they are parallel). What can you say about the system Ax=bA\mathbf{x} = \mathbf{b}?

βœ… Correct! Parallel (dependent) columns only span a line, so most targets in R2\mathbb{R}^2 are unreachable.

❌ Not quite. Think about Visualization 3: when the columns are parallel, their combinations only cover a line β€” not the whole plane.

Show solution

Solution: Some vectors b\mathbf{b} in R2\mathbb{R}^2 cannot be reached.

When both columns point in the same direction, every linear combination

x col1+y col2x\,\mathbf{col}_1 + y\,\mathbf{col}_2

lies on a single line through the origin (since both columns are parallel, any weighted sum stays in that direction).

A line is only a 1-dimensional subset of R2\mathbb{R}^2. Most target vectors b\mathbf{b} are not on that line and therefore cannot be reached β€” the system has no solution for those b\mathbf{b}.

  • "Always exactly one solution" is wrong because for reachable b\mathbf{b} there are infinitely many solutions.
  • "Always infinitely many solutions" is wrong because it ignores the unreachable targets.

This is the concept of linear dependence: dependent columns cannot span all of R2\mathbb{R}^2.

Solved: 0 / 4