Before we start, one picture to keep in your head the whole time: the determinant is the signed area of the parallelogram built from the two columns of the matrix.
Columns u=(a,c) and v=(b,d) are two arrows from the origin.
They span a parallelogram (the shaded region).
∣ad−bc∣ = its area. The sign says whether v sits counter-clockwise from u (positive) or clockwise (negative).
You are only asked to apply the formula and read off its meaning.
Recall Solution 1.1
WHAT: apply ad−bc with a=4,b=1,c=2,d=3.
WHY: direct definition, nothing else needed.
det=(4)(3)−(1)(2)=12−2=10Meaning: areas are scaled by 10; the sign is +, so orientation is preserved.
Recall Solution 1.2
det=(5)(2)−(5)(2)=10−10=0
A zero determinant means the matrix is singular (non-invertible). Look at the columns: (5,2) and (5,2) are identical, so they lie on the same line — the parallelogram is flat, area 0. See Linear independence: the columns are dependent.
Recall Solution 1.3
det=(0)(0)−(7)(−3)=0−(−21)=21WHY the sign flip inside:bc=7×(−3)=−21, and subtracting a negative adds. This is exactly where students slip — track the sign of every entry.
Now the determinant is a step inside a bigger task.
Recall Solution 2.1
WHY the determinant: area of the parallelogram from two vectors is ∣ad−bc∣ — this is the whole point of the determinant (see Area of parallelogram). Put the vectors as columns:
A=[3114],det=(3)(4)−(1)(1)=12−1=11.
Area =∣11∣=11. Positive sign ⇒v is counter-clockwise from u.
Recall Solution 2.2
Part 1: From Inverse of a 2×2 matrix, det(A)det(A−1)=det(I)=1, so
det(A−1)=det(A)1=41.Part 2: First check the actual A: det=(3)(2)−(2)(1)=6−2=4 (matches). The inverse formula swaps a↔d, negates the off-diagonal, then divides by the determinant:
A−1=41[2−1−23]=[21−41−2143].
Recall Solution 2.3
Singular means det=0. WHY: zero area ⇒ no inverse.
det=k⋅k−3⋅2=k2−6=0⇒k=±6.
Two answers — a common oversight is to keep only +6.
det(AB): multiplicativity, det(AB)=detAdetB=5⋅(−2)=−10.
det(3A): scaling a 2×2 matrix by 3 scales both columns by 3, so area scales by 3×3=9:
det(3A)=32det(A)=9⋅5=45.det(ATB):det(AT)=det(A)=5 (transpose invariance), so det(ATB)=5⋅(−2)=−10.
Recall Solution 3.2
Rotation:det(R)=(0)(0)−(−1)(1)=0+1=1. A rotation moves the square rigidly — area unchanged (factor 1) and orientation preserved (positive sign). See Transformations and scaling.
Reflection:det=(0)(0)−(1)(1)=−1. Area unchanged (magnitude 1) but the sign is negative — a reflection flips orientation, turning a counter-clockwise square clockwise, like a mirror image.
Recall Solution 3.3
Start with det[acbd]=ad−bc. Swap columns to get [bdac]:
det=b⋅c−a⋅d=bc−ad=−(ad−bc).
So the determinant flips sign. Geometric reason: swapping the two spanning arrows swaps which one is "counter-clockwise," reversing the signed orientation.
Combine several ideas, or link to a system of equations.
Recall Solution 4.1
Set up. Coefficient matrix A=[2113], right side (5,10).
Main determinant:detA=(2)(3)−(1)(1)=6−1=5. Non-zero ⇒ unique solution exists.
Replace column 1 with the right side for x:
Dx=det[51013]=(5)(3)−(1)(10)=15−10=5.Replace column 2 for y:
Dy=det[21510]=(2)(10)−(5)(1)=20−5=15.Divide:x=detADx=55=1,y=detADy=515=3.Check:2(1)+3=5 ✓, 1+3(3)=10 ✓.
Recall Solution 4.2
Singular ⇒ determinant zero:
det=(4−λ)(3−λ)−(1)(2)=0.
Expand: 12−4λ−3λ+λ2−2=λ2−7λ+10=0.
Factor: (λ−2)(λ−5)=0⇒λ=2 or λ=5.Sanity check via a property: the product of eigenvalues equals the determinant: 2×5=10, and det[4213]=12−2=10 ✓.
You now construct matrices to meet stated conditions, and prove a general fact.
Recall Solution 5.1
Strategy:det=0 means the columns are parallel — the second column must be a scalar multiple of the first. Pick first column (2,3) and multiply by 2 to get second column (4,6):
A=[2346],det=(2)(6)−(4)(3)=12−12=0.
All entries non-zero ✓, and it is not a multiple of the all-ones matrix ✓. (Infinitely many valid answers exist — any parallel-column matrix works. See Linear independence.)
Recall Solution 5.2
Requirement:ad−bc=−3. Easiest is a reflection-then-scale: take [300−1]:
det=(3)(−1)−(0)(0)=−3.
Area factor ∣−3∣=3 (tripled) ✓, negative sign = orientation reversed ✓.
Recall Solution 5.3
Take A=B=I=[1001].
det(A)+det(B)=1+1=2.
But A+B=[2002], so
det(A+B)=(2)(2)−0=4=2.Conclusion: determinant is not additive. It is multiplicative (det(AB)=detAdetB) because area-scaling factors compose by multiplication when you apply one transformation after another (Matrix multiplication) — but adding matrices is not "doing one then the other," so no such rule exists for sums.
Recall One-line summary of every level
L1 plug-in ::: apply ad−bc, watch signs
L2 area & inverse ::: columns span area; inverse =det1[d−c−ba]
L3 properties ::: det(AB)=detAdetB, det(kA)=k2detA, swap flips sign
L4 systems ::: Cramer x=Dx/detA; eigenvalues from det=0
L5 build & prove ::: engineer det to a target; det is not additive