LINEAR-ALGEBRA ยท Unit 18 ยท Video 3 ยท Interactive Practice
| Formula | Name | Description |
|---|---|---|
| Determinant recurrence | Cofactor expansion reduces to two previous terms | |
| Initial values | Seeds for the recurrence | |
| Period-6 cycle | The sequence repeats every 6 terms | |
| determined by | Modular lookup | One division replaces full determinant computation |
Ones fill the diagonal and its two neighbors, zeros everywhere else โ how large can its determinant get?
๐ก This sparsity is exactly what makes cofactor expansion collapse to two terms โ the recurrence in Visualization 2.
Each determinant is the previous one minus the one before it โ so the values cycle .
๐ก With only three possible values and each term fixed by the previous two, the sequence is forced to repeat โ here, every terms.
Because the sequence has period , one division replaces computing the whole determinant.
๐ก One division settles any โ even in the thousands โ with no determinant computation at all.
Question 1
Using the recurrence with initial values and , what is ?
โ Correct! det(Aโ ) = det(Aโ) โ det(Aโ) = (โ1) โ (โ1) = 0.
โ Not quite. Carefully apply the recurrence three times: first find det(Aโ), then det(Aโ), then det(Aโ ).
Solution:
Apply the recurrence step by step from the initial values:
The answer is 0.
Question 2
The recurrence for the determinant of the tridiagonal matrix of ones resembles the Fibonacci recurrence. Which is the correct formula?
โ Correct! Cofactor expansion along row 1 puts a minus sign on the second term.
โ Not quite. The cofactor of the entry carries a negative sign from the checkerboard pattern โ this is Fibonacci with subtraction.
Solution:
Expand along the first row. Row 1 of is :
Therefore:
This is like Fibonacci () but with subtraction instead of addition.
Question 3
What is ?
Hint: The determinant sequence has period 6. Compute and look up the cycle table:
| 1 | 2 | 3 | 4 | 5 | 0 | |
|---|---|---|---|---|---|---|
| 1 | 0 | โ1 | โ1 | 0 | 1 |
โ Correct! 100 mod 6 = 4, and cycle position 4 gives det = โ1.
โ Not quite. First compute 100 รท 6 = 16 remainder 4, then look up position 4 in the cycle table.
Solution:
Compute :
Look up position 4 in the cycle table:
| 1 | 2 | 3 | 4 | 5 | 0 | |
|---|---|---|---|---|---|---|
| 1 | 0 | โ1 | โ1 | 0 | 1 |
No row operations needed โ just one division and a table lookup on a 100ร100 matrix!
Question 4
True or False: The determinant sequence must eventually become periodic because each det(A_n) can only be -1, 0, or 1, giving at most 9 possible consecutive pairs. By the pigeonhole principle, a pair must eventually repeat, which forces the entire future sequence to repeat.
โ Correct! The pigeonhole principle guarantees periodicity โ with only 9 possible consecutive pairs, a repeat must occur within the first 10 terms.
โ Not quite. Consider: with finitely many possible consecutive pairs and a deterministic recurrence, what must eventually happen?
Solution: True.
Here is the complete reasoning:
Specifically, , confirming the cycle length is exactly 6.
Solved: 0 / 4