Unit Digits
The unit digit — the very last digit of a number — is one of the highest return-on-effort ideas in CAT Number System. You will almost never be asked to actually compute 7^123; instead you are asked only for its last digit, and that collapses a terrifying-looking power into a ten-second mental step. The engine behind it is cyclicity: the unit digits of successive powers of any number repeat in a short cycle (length 1, 2 or 4), so the whole problem reduces to finding where your exponent lands inside that cycle. Once the last digit is tamed, the natural next question is the last two digits, which CAT and XAT use to separate fast solvers from the rest. This chapter builds both skills cleanly: the cyclicity table for every digit 0–9, how to handle the last digit of products and sums without multiplying the whole thing, and the last-two-digit toolkit — powers of numbers ending in 1, the all-important rule that even numbers ride the 76 family while 5-enders settle into 25 or 76 patterns, and the binomial shortcut for bases close to a multiple of 100. Each topic comes with worked CAT-style examples, the fastest exam method, and the traps that cost careless students an easy mark.
Topics
⚡ CAT shortcuts & speed methods
The fastest ways to crack this chapter under time pressure — the techniques that separate a 95+ percentiler from the rest.
- Strip the base to its unit digit first: 2467^85 behaves exactly like 7^85.
- Only digits 2,3,7,8 need full cyclicity (length 4) — reduce the exponent mod 4; 0,1,5,6 stay fixed, 4 and 9 just alternate.
- Remainder 0 (mod 4) means take the LAST term of the cycle, never the base itself.
- For last two digits of a number ending in 1: tens = (tens-of-base × exponent) mod 10, unit = 1.
- 76 and 25 are automorphic for last two digits — their powers always end in 76 and 25 respectively.
- Anchor every even base on 2^10 = …24, then use 24^even = …76 and 24^odd = …24 to collapse huge powers.
⚠️ Common mistakes & traps
CAT is designed so that careless errors here cost you marks. Internalise each trap before the exam.
- Treating exponent ≡ 0 (mod 4) as the 0th term and writing the base digit instead of the 4th cycle term.
- Reducing the exponent modulo 10 instead of modulo the cycle length (4).
- For last two digits of base-1 numbers, forgetting to take (tens × exponent) modulo 10 and writing the full product.
- Assuming 24^n always ends in 24 — it alternates 24 (odd) and 76 (even).
- Including 5! and beyond when only the unit digit of a factorial sum is needed — every factorial from 5! ends in 0.
📈 CAT exam insight & PYQ analysis
🎴 Flashcards — instant recall
Tap a card to reveal the answer. Drill these until they are automatic.
📌 Quick revision
Chapter test
🏆 Vidaara CAT success checklist
You have truly mastered Unit Digits when you can tick every box below.
- Recall every formula in this chapter without looking them up
- Solve each topic’s practice set with at least 80% accuracy
- Use the chapter shortcuts to cut your solving time in half
- Spot and avoid every common trap listed above
- Score 80%+ on the timed chapter test
📋 Chapter mastery scorecard
Track where you stand. Aim for the target before moving to the next chapter.
| Skill checkpoint | Target |
|---|---|
| Concept theory & formulas understood | 100% |
| Topic practice sets attempted (2 topics) | 2/2 |
| Best topic-test score | — → 80%+ |
| Chapter test score | — → 80%+ |
| Flashcards drilled to instant recall | 12 cards |
Formula Reference Sheet
Cyclicity & last digit
| Cycle length 1 (digits 0,1,5,6) | last digit of d^n = d for all n ≥ 1 |
|---|---|
| Cycle length 2 (digits 4,9) | 4: 4,6,4,6… ; 9: 9,1,9,1… |
| Cycle length 4 (digits 2,3,7,8) | 2:2,4,8,6 | 3:3,9,7,1 | 7:7,9,3,1 | 8:8,4,2,6 |
| Reduce exponent (cycle 4) | use n mod 4; if remainder 0, use the 4th term |
| Last digit of a product | multiply only the unit digits, then take its unit digit |
Last two digits power-tools
| Base ends in 1 | (…a1)^n → last two digits = (a×n mod 10) then 1 |
|---|---|
| Base ends in 76 | 76^n always ends in 76 |
| Even base via 24/76 | 2^10 = …24 ; 24^(even) ends 76, 24^(odd) ends 24 |
| Base ends in 25 | 25^n ends in 25 for all n ≥ 1 (odd-power 25 / even patterns) |
| Binomial near 100 | (100±a)^n ≡ (±a)^n + 100·n·(±a)^(n−1) (mod 100) |