Question
Repeated adjugate determinant modulo seven
Original question: 70. Let A be a 3×3 matrix such that det(A) = 3. If m = det(adj(adj(···(adjA)))) where adj is applied 2023 times, find the remainder when m is divided by 7. (a) 0 (b) 1 (c) 2 (d) 3
Expert Verified Solution
Key concept: This matrix problem uses the determinant identity for adjugates and modular exponent cycling.
Step by step
Step 1: Use the determinant identity for a matrix
For an matrix ,
Here and , so
Let
where means applying times.
Then for a matrix,
So the sequence begins
and in general
Step 2: Reduce the exponent modulo 6
We need
Because 7 is prime and 3 is not divisible by 7,
So we only need the exponent modulo 6.
Now compute
For powers of 2 modulo 6:
so the pattern alternates between 2 and 4. Since 2023 is odd,
Therefore,
Step 3: Final answer
The remainder when is divided by 7 is
Why the pattern is so fast
Repeated adjugation on a matrix squares the determinant each time, so the exponent doubles every step. That makes the determinant grow as a power tower in the exponent, which is exactly why modular arithmetic is the right tool here.
Pitfall alert
A common mistake is to think the determinant of the adjugate stays the same under repeated application. It does not: for a matrix, each adjugate application squares the determinant. Another frequent error is trying to compute directly rather than using Fermat’s little theorem and the cycle of exponents modulo 6. The shortcut depends on reducing the exponent first, not the base.
Try different conditions
If the matrix were with , the identity would change to
so repeated adjugation would no longer square the determinant each time. Instead, each step would cube the current determinant. The modular strategy would still be the same, but the exponent growth and the period modulo 7 would be different. You would first derive the new recurrence before reducing modulo 7.
Further reading
adjugate matrix, determinant identity, modular exponentiation
FAQ
What is the determinant of the adjugate of a 3 by 3 matrix?
For a 3 by 3 matrix A, det(adj(A)) equals det(A)^2. This follows from the general identity det(adj(A)) = det(A)^(n-1).
How do you reduce a huge power modulo seven in this problem?
Use Fermat’s little theorem, which gives 3^6 ≡ 1 mod 7. Then reduce the exponent modulo 6 before evaluating the final power.