LINEAR-ALGEBRA ยท Unit 1 ยท Video 2 ยท Interactive Practice

Systems of Equations in 3D: Row Picture vs Column Picture

IKey Formulas

Concept Formula Description
Matrix equation Ax=bA\mathbf{x} = \mathbf{b} Compact form of a linear system
Row picture (3D) Each equation โ†’\rightarrow a plane Solution = intersection of all planes
Column picture xc1+yc2+zc3=bx\mathbf{c}_1 + y\mathbf{c}_2 + z\mathbf{c}_3 = \mathbf{b} Find scalars to combine columns into b\mathbf{b}
Linear combination ฮฑ1v1+ฮฑ2v2+โ‹ฏ+ฮฑnvn\alpha_1\mathbf{v}_1 + \alpha_2\mathbf{v}_2 + \cdots + \alpha_n\mathbf{v}_n Sum of scaled vectors

IIVisualization 1 โ€” The Row Picture

Each equation is a plane; stacking all three narrows the solution from a plane, to a line, to one point.

๐Ÿ’ก The row picture stops scaling past three unknowns โ€” in four variables each equation is a 3-D hyperplane nobody can draw, which is exactly the gap the column picture closes.

IIIVisualization 2 โ€” The Column Picture

Which scalars x,y,zx, y, z scale the columns so they add tip-to-tail onto the target b=[0,โˆ’1,4]\mathbf{b} = [0, -1, 4]?

๐Ÿ’ก Challenge: reach b\mathbf{b} with a single nonzero scalar โ€” the column picture makes that shortcut obvious.

IVVisualization 3 โ€” Column Picture, Any Target

Swap the target b\mathbf{b} and the same tip-to-tail process lands on a different solution (x,y,z)(x, y, z).

๐Ÿ’ก Whether the columns have 3 entries or 3000, the question never changes โ€” can they combine to reach b\mathbf{b}? โ€” and that dimension-independence is why the column picture underlies modern linear algebra.

VQuiz Questions

Question 1

In the row picture of a system of 3 equations with 3 unknowns, each equation represents what geometric object in 3D space?

โœ… Correct! Each linear equation in 3 unknowns defines a plane in 3D.

โŒ Not quite. Think about how many degrees of freedom one equation in three unknowns leaves.

Show solution

Solution:

One linear equation in three unknowns has two free variables, so its solution set is a 2-dimensional surface in 3D โ€” a plane.

  • In 2D: 1 equation with 2 unknowns โ†’ a line (1D)
  • In 3D: 1 equation with 3 unknowns โ†’ a plane (2D)
  • In nD: 1 equation with n unknowns โ†’ a hyperplane ((n-1)D)

Question 2

For A=[2โˆ’10โˆ’12โˆ’10โˆ’34]A = \begin{bmatrix}2 & -1 & 0\\-1 & 2 & -1\\0 & -3 & 4\end{bmatrix} and b=[0โˆ’14]\mathbf{b} = \begin{bmatrix}0\\-1\\4\end{bmatrix}, the column picture reveals the solution immediately because b\mathbf{b} is identical to which column of AA?

โœ… Correct! b = [0, -1, 4] matches column 3, giving the solution (0, 0, 1).

โŒ Not quite. The column sums are [2-1+0, -1+2-1, 0-3+4] = [1, 0, 1], which does not equal b. Compare b to each column individually.

โŒ Not quite. Compare b = [0, -1, 4] to each column component by component.

Show solution

Solution:

Compare b=[0,โˆ’1,4]\mathbf{b} = [0, -1, 4] to each column of AA:

  • Column 1: [2,โˆ’1,0][2, -1, 0] โ€” doesn't match
  • Column 2: [โˆ’1,2,โˆ’3][-1, 2, -3] โ€” doesn't match
  • Column 3: [0,โˆ’1,4][0, -1, 4] โ€” perfect match! โœ“

Since b\mathbf{b} equals column 3, the solution is: 0โ‹…c1+0โ‹…c2+1โ‹…c3=bโ€…โ€ŠโŸนโ€…โ€Š(x,y,z)=(0,0,1)0 \cdot \mathbf{c}_1 + 0 \cdot \mathbf{c}_2 + 1 \cdot \mathbf{c}_3 = \mathbf{b} \implies (x, y, z) = (0, 0, 1)

Question 3

True or False: The row picture (visualizing intersecting geometric objects) can be used effectively for systems with 10 unknowns.

โœ… Correct! We can only draw in 2D and 3D. The row picture is impossible to visualize in higher dimensions.

โŒ Not quite. Can you draw a 9-dimensional hyperplane? The row picture requires exactly that in 10D.

Show solution

Answer: False

The row picture requires drawing geometric objects in nn-dimensional space:

Dimension Row Picture Object Visualizable?
2D Lines Yes
3D Planes Yes
4D 3D hyperplanes No
10D 9D hyperplanes No

Humans can only visualize up to 3 dimensions. The column picture, by contrast, always asks: "Can I combine these vectors to reach b?" โ€” that concept works identically in any dimension.

Question 4

Using the same matrix A=[2โˆ’10โˆ’12โˆ’10โˆ’34]A = \begin{bmatrix}2 & -1 & 0\\-1 & 2 & -1\\0 & -3 & 4\end{bmatrix}, if the target changes to b=[1,1,โˆ’3]\mathbf{b} = [1, 1, -3], what is the solution (x,y,z)(x, y, z)?

Hint: try adding column 1 and column 2 of AA component by component.

โœ… Correct! Column 1 + Column 2 = [1, 1, -3] = b, so (x, y, z) = (1, 1, 0).

โŒ That was the solution for b = [0, -1, 4]. This question uses b = [1, 1, -3]. Try adding columns 1 and 2.

โŒ Not quite. Try adding column 1 and column 2 component by component and compare to b.

Show solution

Solution:

Add column 1 and column 2 of AA: [2โˆ’10]+[โˆ’12โˆ’3]=[2+(โˆ’1)โˆ’1+20+(โˆ’3)]=[11โˆ’3]=bโ€…โ€Šโœ“\begin{bmatrix}2\\-1\\0\end{bmatrix} + \begin{bmatrix}-1\\2\\-3\end{bmatrix} = \begin{bmatrix}2+(-1)\\-1+2\\0+(-3)\end{bmatrix} = \begin{bmatrix}1\\1\\-3\end{bmatrix} = \mathbf{b} \;\checkmark

So x=1x = 1, y=1y = 1, z=0z = 0: one copy of column 1 plus one copy of column 2, zero copies of column 3.

Verification: A[110]=[2(1)+(โˆ’1)(1)+0(0)(โˆ’1)(1)+2(1)+(โˆ’1)(0)0(1)+(โˆ’3)(1)+4(0)]=[11โˆ’3]A\begin{bmatrix}1\\1\\0\end{bmatrix} = \begin{bmatrix}2(1)+(-1)(1)+0(0)\\(-1)(1)+2(1)+(-1)(0)\\0(1)+(-3)(1)+4(0)\end{bmatrix} = \begin{bmatrix}1\\1\\-3\end{bmatrix} โœ“

Solved: 0 / 4