2023 CSAT — Q8
What is the unit digit in the expansion of ?
Worked rationale
Only two things matter: the units digit of the base and the exponent mod .
Units digit of is , and has the -cycle (for exponents , then repeating).
The exponent is . Reduce mod : , so .
Cycle position gives units digit .
Answer: (a) 2.
Why the other options miss
- B an arithmetic slip: takes the exponent as (e.g. a slip in ), landing on .
- C wrong formula: uses cycle position (i.e. treats the exponent as a multiple of ), which is what a product of consecutive even–odd factors would not give here.
- D off by one: reads the cycle one place too far (), mismatching .
Specialist insight
The exponent is a product of odd numbers, so it is odd — and an odd number is never ; since ends in , instantly. The danger is computing and then fumbling the mod- step; the disciplined move is “units digit , -cycle, exponent ” and nothing else — never expand the power.
The trap, in one line
Base ends in (cycle ); exponent , so the units digit is .