Master the most powerful theorems for remainders, divisibility, and modular arithmetic. These tools are essential for CAT, XAT, and other competitive exams!
Remainder Theorem for polynomials: The remainder when f(x) is divided by (x - a) is f(a).
Euclid's Division Lemma: For any integers a, b (b > 0), a = bq + r, 0 ≤ r < b.
LCM and GCD: For any positive integers a, b: LCM(a, b) × GCD(a, b) = a × b.
Properties of even/odd numbers: Even + Even = Even, Odd × Odd = Odd, etc.
Prime numbers: Only two positive divisors (1 and itself).
Advanced Remainder Theorems (In-Depth)
Fermat's Little Theorem
Statement: If p is a prime number and a is any integer, then ap ≡ a (mod p). If a and p are coprime, then ap-1 ≡ 1 (mod p).
When to Use: Use this theorem to quickly find remainders of large powers when divided by a prime, especially when the base and the prime are coprime.
Why It Works: The theorem is rooted in the properties of modular arithmetic and the fact that multiplying all nonzero residues modulo a prime cycles through all possible values.
Step-by-Step Example 1:
Find the remainder when 2256 is divided by 17.
17 is prime, 2 and 17 are coprime.
By Fermat: 216 ≡ 1 (mod 17).
256 = 16 × 16, so 2256 = (216)16.
So, (1)16 ≡ 1 (mod 17).
Final Answer: Remainder is 1.
Step-by-Step Example 2:
Find the remainder when 375 is divided by 37.
37 is prime, 3 and 37 are coprime.
By Fermat: 336 ≡ 1 (mod 37).
75 = 2×36 + 3, so 375 = (336)2 × 33.
(1)2 × 27 = 27 (mod 37).
Final Answer: Remainder is 27.
Edge Case: If a is a multiple of p, then ap-1 ≡ 0 (mod p).
Tips & Pitfalls:
Always check if the divisor is prime.
Check if the base and the prime are coprime for the second part.
For composite divisors, use Euler's theorem instead.
Euler's Theorem & Euler's Totient Function
Statement: If a and n are coprime, then aϕ(n) ≡ 1 (mod n), where ϕ(n) is the Euler's totient function (the count of numbers less than n that are coprime to n).
How to Compute ϕ(n): For n = p1k1 × p2k2 × ... × pmkm (prime factorization),
ϕ(n) = n × (1 - 1/p1) × (1 - 1/p2) × ... × (1 - 1/pm)
When to Use: Use Euler's theorem for large exponents with composite moduli, provided the base and modulus are coprime.
Step-by-Step Example 1:
Find the remainder when 2256 is divided by 15.
For large factorials, reduce step by step using modular arithmetic.
Chinese Remainder Theorem (CRT)
Statement: If you know the remainders of a number when divided by several pairwise coprime numbers, you can uniquely determine the remainder when divided by their product.
How to Use:
Break the divisor into coprime factors (e.g., 119 = 17 × 7).
Find the remainder for each factor.
Set up congruences and solve for the original number using the system of equations.
Step-by-Step Example 1:
Find the remainder when 344237 is divided by 119.
119 = 17 × 7 (coprime).
344237 mod 17 = 4, 344237 mod 7 = 1.
Set up: x ≡ 4 (mod 17), x ≡ 1 (mod 7).
Find x that satisfies both. The answer is 106.
Step-by-Step Example 2:
Find the remainder when 4952517 is divided by 78.
78 = 13 × 6 (coprime).
4952517 mod 13 = 1, 4952517 mod 6 = 3.
Set up: x ≡ 1 (mod 13), x ≡ 3 (mod 6).
Find x that satisfies both. The answer is 27.
Tips & Pitfalls:
Only works if divisors are coprime.
For more than two divisors, apply iteratively.
CRT is powerful for reconstructing numbers from modular information.
Ready to Test Your Arithmetic Theorems?
Practice a comprehensive set of Arithmetic Theorems questions, from basics to CAT-level challenges. Challenge yourself and track your progress!