Introduction
Last-digit (cyclicity) problems involve finding the last digit of large powers or repeated multiplications without performing the full calculation. These problems are common in aptitude tests because the last digit follows a repeating pattern or cycle. Once you know the cycle, you can quickly find the last digit for huge exponents.
Pattern: Cyclicity of Digits (Last Digit Problems)
Pattern
The last digit of powers repeats in a fixed cycle. Reduce the base to its last digit, find the cycle, and use the remainder of the exponent divided by the cycle length to find the last digit.
- Step 1: Reduce base to last digit: Only the last digit of the base affects the result. Replace the base with (base mod 10).
- Step 2: Remember these standard cycles:
- 0 → [0] (length 1)
- 1 → [1] (length 1)
- 2 → [2, 4, 8, 6] (length 4)
- 3 → [3, 9, 7, 1] (length 4)
- 4 → [4, 6] (length 2)
- 5 → [5] (length 1)
- 6 → [6] (length 1)
- 7 → [7, 9, 3, 1] (length 4)
- 8 → [8, 4, 2, 6] (length 4)
- 9 → [9, 1] (length 2)
- Step 3: Reduce the exponent: If the cycle length = L, find remainder r = (exponent mod L). If r = 0, use r = L. The r-th number in the cycle gives the last digit.
- Step 4: Handle special cases: For base ending in 0, 1, 5, or 6 → last digit always remains the same.
Step-by-Step Example
Question
Find the last digit of 72024.
Solution
-
Step 1: Identify the cycle:
The last digit of powers of 7 repeats as [7, 9, 3, 1]. Hence, the cycle length L = 4. -
Step 2: Reduce the exponent:
2024 mod 4 = 0 → when remainder is 0, use r = 4. -
Step 3: Find the r-th term in the cycle:
The 4th element in [7, 9, 3, 1] is 1. -
Final Answer:
Last digit of 72024 is 1. -
Quick Check:
Since every 4th power of 7 ends with 1, 72024 (multiple of 4) → last digit 1 ✅
Quick Variations
1. Find the last digit of (am × bn): compute both separately and multiply the last digits.
2. For expressions like a(bc), reduce the top exponent mod the cycle length.
3. If the base ends with 0, 1, 5, or 6 → no need to calculate further, the last digit stays the same.
Trick to Always Use
- Step 1: Focus only on the last digit of the base.
- Step 2: Memorize the standard cycles (especially for 2, 3, 7, 8).
- Step 3: Reduce the exponent mod cycle length and pick that term.
- Step 4: If remainder is 0, take the last number in the cycle.
Summary
Summary
In Cyclicity of Digits problems:
- Only the last digit matters.
- Each digit (0-9) follows a fixed repetition cycle.
- Reduce the exponent modulo the cycle length to locate the correct last digit.
- This method works for huge exponents instantly without actual multiplication.
