Remainders
Remainders sit at the top of every CAT aspirant’s "high-effort, high-reward" list. The questions look intimidating — find the remainder when 17^256 is divided by 13, or the last two digits of 7^2024 — but they all collapse to one idea: instead of computing the giant number, reduce it modulo the divisor at every step. Once you think in remainders rather than full values, a 200-digit power becomes a one-line calculation. CAT and XAT lean on this topic precisely because brute force is impossible and the smart method is invisible to the unprepared. This chapter builds the full toolkit. We start with the remainder theorem for products and powers (the core habit of replacing a number by its remainder), then negative remainders (treating a remainder as −1 or −2 to kill a power instantly), and finish with the three named theorems that turn ugly exponents into 1: Fermat’s little theorem, Euler’s theorem, and Wilson’s theorem for factorials. Every method comes with worked CAT-style examples, the fastest exam route, and the traps — sign errors, non-coprime divisors, and misread cycle lengths — that quietly cost marks.
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.
- Never carry the full number — reduce every base and factor to its remainder before multiplying or raising to a power.
- Nudge the base to the nearest multiple of n: if it is ≡ −1, the answer is decided by the parity of the exponent ((−1)^even = 1, (−1)^odd = −1).
- Fermat: for prime p, reduce the exponent mod (p−1) since a^(p−1) ≡ 1 when gcd(a,p)=1.
- Euler for any modulus: a^φ(n) ≡ 1 (mod n) when gcd(a,n)=1; for last two digits use mod 100, φ(100)=40.
- Wilson for factorials by a prime p: (p−1)! ≡ −1 and (p−2)! ≡ 1 (mod p).
- Finish by converting any negative remainder to standard form: add n (e.g. −1 mod 7 → 6).
⚠️ Common mistakes & traps
CAT is designed so that careless errors here cost you marks. Internalise each trap before the exam.
- Applying Fermat or Euler when the base and modulus are NOT coprime — the theorems then fail.
- Leaving the answer as a negative remainder (−1) instead of converting to the positive form (n − 1).
- Reducing the exponent mod p instead of mod (p−1) in Fermat (the cycle length is p−1, not p).
- Mis-computing φ(n): φ(100) = 40, not 50; use n·∏(1 − 1/p) over DISTINCT primes.
- Forgetting that the divisor must be prime for Wilson — (n−1)! ≡ −1 only holds for prime n.
📈 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 Remainders 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 (3 topics) | 3/3 |
| Best topic-test score | — → 80%+ |
| Chapter test score | — → 80%+ |
| Flashcards drilled to instant recall | 12 cards |
Formula Reference Sheet
Modular reduction core
| Notation | a ≡ r (mod n) means n divides (a − r) |
|---|---|
| Sum / difference | (a ± b) mod n = (a mod n ± b mod n) mod n |
| Product | (a × b) mod n = ((a mod n)(b mod n)) mod n |
| Power | a^k mod n = (a mod n)^k mod n |
| Negative remainder | if a ≡ −1 (mod n) then a^k ≡ (−1)^k (mod n) |
Named theorems
| Fermat’s little theorem | a^(p−1) ≡ 1 (mod p), p prime, gcd(a,p)=1 |
|---|---|
| Euler’s theorem | a^φ(n) ≡ 1 (mod n), gcd(a,n)=1 |
| Euler’s totient | φ(n) = n·∏(1 − 1/p) over distinct primes p | n |
| Wilson’s theorem | (p − 1)! ≡ −1 (mod p), p prime |
| Corollary of Wilson | (p − 2)! ≡ 1 (mod p), p prime |