Tier 1 ยท Number Theorymedium-hard
The Remainder Detective
When the numbers are huge, the remainder is small. Find the cycle.
The Tell
Questions like 'What is the remainder when X is divided by Y?' โ especially when X is huge (a big exponent) or contains a variable.
The Trap
Trying to compute the actual value. 3^64 is a 31-digit number. You never need it โ you need its remainder.
The Approach
- Test small cases first (n=1, 2, 3, 4, 5) and write out the remainders.
- Look for the cycle. Most remainders repeat every 2, 3, 4, or 5 cases.
- Reduce the problem using the cycle length: e.g., '7^100 mod 4' becomes 'find where 100 lands in the cycle.'
- Divisibility shortcuts to know cold: a number is divisible by 3 if its digit sum is divisible by 3. Divisible by 4 if last two digits form a multiple of 4. Divisible by 5 if last digit is 0 or 5. Divisible by 9 if digit sum is divisible by 9.
- If the question is QC and remainders vary across cases, the answer is D (cannot be determined).
Why It Matters
This is THE most-tested concept on hard GRE Quant. Master it and you crack 15-20% of the section.
Want a tutor in the loop?
Open the chat with a pre-loaded prompt so the coach drills you on this exact pattern.
Ask the AI Tutor