Advanced Concepts in Numbers
These are special tools and observations that help you crack seemingly tough problems in seconds — especially useful in speed-based aptitude tests.
Digital Root (also called Digit Sum)
Definition: Repeatedly add digits of a number until a single digit remains.
Example:
Why it's Useful
- Helps in checking divisibility by 9 and 3
- Used in verifying calculation errors
- Reduces big number calculations for options-based questions
Properties
- Digital root of a number is same as , except when divisible by 9 (result is 9, not 0)
Cyclicity of Last Digits
Definition: Repeating pattern in the last digit of powers of numbers.
| Base | Pattern of last digit |
|---|---|
| 2 | 2, 4, 8, 6 (length = 4) |
| 3 | 3, 9, 7, 1 |
| 4 | 4, 6 |
| 7 | 7, 9, 3, 1 |
| 9 | 9, 1 |
How to Use:
To find the last digit of :
- Find the cyclic pattern of base
- Compute
- Pick the corresponding digit in the cycle
Example: Last digit of
Cycle for 7: 7, 9, 3, 1 → Length = 4
222 mod 4 = 2 → Answer = 9
Remainder Theorems
1. Remainder when a number is divided by 9 or 3
Use digital root or sum of digits.
2.
Use modular arithmetic + cyclicity (or Euler’s theorem for high level).
Example:
Cycle of : 2, 4, 3, 1
100 mod 4 = 0 → 4th element → Answer = 1
3. Fermat's Little Theorem (Advanced)
If is a prime, then:
Used when:
- is not divisible by
- Needed to reduce large exponents
Number of Zeroes in Factorial
Trailing Zeroes in
Count of zeroes = Number of times 5 is a factor (2 is always in excess):
Example: Zeroes in 100!
= 20 + 4 = 24
Factorial and Units Digit
To find the last non-zero digit of , eliminate 0s (remove 5s and matching 2s) and find the digit modulo 10. These are usually asked indirectly.
Highest Power of a Prime in a Factorial
In , the exponent of prime is:
Finding Number of Digits in a Number
To find number of digits in base 10:
For :
Common Mistakes
| Mistake | Clarification |
|---|---|
| Assuming digital root works for 7 or 11 | Only valid for 3 and 9 |
| Ignoring mod cycle lengths | Must match base with correct cycle length |
| Forgetting to handle zero case in factorial problems | Always watch for trailing zero traps |
Example Problems
Q1. What is the digital root of ?
8 + 5 + 3 + 2 = 18 → 1 + 8 = 9
Q2. Find last digit of
Cycle: 3, 9, 7, 1
45 mod 4 = 1 → Answer = 3
Q3. Remainder when is divided by 5?
Cycle of 23 mod 5 = same as 3 mod 5 = 3 → Cycle: 3, 4, 2, 1
456 mod 4 = 0 → Answer = 1
Q4. How many trailing zeroes in 200!?
Visual Summary
→ Digital Root = mod 9 trick
→ Cyclicity = last digits of powers (mod 10)
→ Factorials = zeroes, prime powers
→ Mod Arithmetic = use for remainder-based exponent problems