LINEAR-ALGEBRA Β· Unit 19 Β· Video 3 Β· Interactive Practice

The Determinant Is a Secret Volume Machine

IKey Formulas

Formula Name When to Use
det⁑[abcd]=adβˆ’bc\det\begin{bmatrix} a & b \\ c & d \end{bmatrix} = ad - bc 2Γ—2 Determinant Basic determinant computation
AreaΒ ofΒ parallelogram=∣adβˆ’bc∣\text{Area of parallelogram} = \lvert ad - bc \rvert Parallelogram area Edges are vectors (a,b)(a,b) and (c,d)(c,d) from origin
AreaΒ ofΒ triangle=12∣adβˆ’bc∣\text{Area of triangle} = \tfrac{1}{2}\lvert ad - bc \rvert Triangle area (origin vertex) One vertex at origin, others at (a,b)(a,b) and (c,d)(c,d)
Area=12∣det⁑[x1y11x2y21x3y31]∣\text{Area} = \tfrac{1}{2}\left\lvert\det\begin{bmatrix} x_1 & y_1 & 1 \\ x_2 & y_2 & 1 \\ x_3 & y_3 & 1 \end{bmatrix}\right\rvert General triangle area Works for any three vertices (xi,yi)(x_i, y_i)

IIVisualization 1 β€” Parallelogram Area

The two row vectors of AA span a parallelogram whose area is exactly ∣det⁑A∣\lvert\det A\rvert.

πŸ’‘ Challenge: drag v2\mathbf{v}_2 onto the line through v1\mathbf{v}_1 β€” the parallelogram flattens and det⁑A=0\det A = 0.

IIIVisualization 2 β€” Collapsing to a Singular Matrix

As v2\mathbf{v}_2 swings toward the fixed v1=(3,1)\mathbf{v}_1 = (3,1), the area falls linearly to zero: Area=11(1βˆ’t)\text{Area} = 11(1-t).

πŸ’‘ At t=1t = 1 the rows are linearly dependent and AA is singular β€” the determinant measures area and tests invertibility at once.

IVVisualization 3 β€” Triangle Area from a Determinant

A triangle's area is 12∣det⁑∣\tfrac{1}{2}\lvert\det\rvert of the 3Γ—33\times 3 matrix built from its three vertices β€” coordinates only, no heights.

πŸ’‘ Challenge: drag the three vertices onto one line β€” the area drops to 00; collinear points are the triangle's version of a singular matrix.

VQuiz Questions

Question 1

A parallelogram has edges along vectors v1=(2,5)\mathbf{v}_1 = (2, 5) and v2=(3,βˆ’1)\mathbf{v}_2 = (3, -1) from the origin.

What is the area of this parallelogram?

βœ… Correct! det = (2)(βˆ’1) βˆ’ (5)(3) = βˆ’17, so Area = |βˆ’17| = 17.

❌ Not quite. Use det = ad βˆ’ bc with a=2, b=5, c=3, d=βˆ’1, then take the absolute value.

Show solution

Solution:

Form the matrix with row vectors: A=[253βˆ’1]A = \begin{bmatrix} 2 & 5 \\ 3 & -1 \end{bmatrix}

det⁑(A)=(2)(βˆ’1)βˆ’(5)(3)=βˆ’2βˆ’15=βˆ’17\det(A) = (2)(-1) - (5)(3) = -2 - 15 = -17

Area=∣det⁑(A)∣=βˆ£βˆ’17∣=17\text{Area} = |\det(A)| = |-17| = \boxed{17}

The negative determinant tells us the vectors form a left-handed (clockwise) orientation, but area is always the absolute value.

Question 2

True or False: If det⁑(A)=βˆ’5\det(A) = -5, then the parallelogram formed by the row vectors of AA has area βˆ’5-5.

βœ… Correct! Area is always |det(A)| β‰₯ 0. The sign encodes orientation, not negative area.

❌ Not quite. Can a geometric area ever be negative? Think about what the sign of the determinant really represents.

Show solution

Solution: False.

Area and volume are always non-negative. The determinant can be negative, but the sign encodes orientation (right-handed vs. left-handed), not a "negative area."

Area=∣det⁑(A)∣=βˆ£βˆ’5∣=5\text{Area} = |\det(A)| = |-5| = 5

  • det⁑>0\det > 0: right-handed orientation (counterclockwise)
  • det⁑<0\det < 0: left-handed orientation (clockwise)
  • ∣det⁑∣|\det|: the actual area, always β‰₯0\ge 0

Question 3

A triangle has vertices at (1,2)(1, 2), (4,6)(4, 6), and (5,1)(5, 1).

Using the determinant method, what is the area of this triangle?

Hint: Set up the 3Γ—3 matrix with a column of ones, compute the determinant, then take half the absolute value.

βœ… Correct! det = βˆ’19, so Area = Β½|βˆ’19| = 19/2 = 9.5 square units.

❌ Almost! You found the determinant correctly, but a triangle is half a parallelogram β€” don't forget the factor of Β½.

❌ Not quite. Try setting up the 3Γ—3 matrix with a column of ones and using row operations to simplify.

Show solution

Solution:

Set up the 3Γ—3 matrix with a column of ones:

det⁑[121461511]\det\begin{bmatrix} 1 & 2 & 1 \\ 4 & 6 & 1 \\ 5 & 1 & 1 \end{bmatrix}

Row reduce β€” subtract Row 3 from Rows 1 and 2:

[βˆ’410βˆ’150511]\begin{bmatrix} -4 & 1 & 0 \\ -1 & 5 & 0 \\ 5 & 1 & 1 \end{bmatrix}

Expand along column 3 (only the bottom entry is nonzero):

det⁑=1β‹…det⁑[βˆ’41βˆ’15]=(βˆ’4)(5)βˆ’(1)(βˆ’1)=βˆ’20+1=βˆ’19\det = 1 \cdot \det\begin{bmatrix} -4 & 1 \\ -1 & 5 \end{bmatrix} = (-4)(5) - (1)(-1) = -20 + 1 = -19

Area=12βˆ£βˆ’19∣=192=9.5\text{Area} = \frac{1}{2}|-19| = \frac{19}{2} = \boxed{9.5}

Question 4

A linear transformation with matrix AA maps the unit square (area = 1) to a parallelogram. If det⁑(A)=0\det(A) = 0, which of the following best describes the output?

βœ… Correct! det = 0 means the transformation collapses space β€” the matrix is singular and the image has zero area.

❌ Not quite. Think about what |det| = 0 means for the area of the output parallelogram, and what it says about the row vectors.

Show solution

Solution: The square collapses to a line or point (area = 0).

When det⁑(A)=0\det(A) = 0:

  • The transformation collapses at least one dimension of space
  • The unit square flattens into a line segment or a single point
  • Area = ∣det⁑(A)∣=∣0∣=0|\det(A)| = |0| = 0
  • The matrix is singular (not invertible) β€” its row vectors are linearly dependent

This is the geometric meaning of singularity: the row vectors don't span a full 2D region, so the image of any shape is squashed into lower dimension.

The same idea extends to nn dimensions: det⁑(A)=0\det(A) = 0 means the nn-dimensional hypervolume collapses to zero.

Solved: 0 / 4