Introduction
Last-digit (cyclicity) problems में बड़े powers या repeated multiplications की last digit बिना पूरा calculation किए निकाली जाती है। Aptitude exams में ये common हैं क्योंकि last digit हमेशा एक repeating pattern या cycle follow करती है। Cycle पता होने पर बड़े से बड़े exponent की last digit तुरंत मिल जाती है।
Pattern: Cyclicity of Digits (Last Digit Problems)
Pattern
Powers की last digit एक fixed cycle में repeat होती है। Base की last digit लें, cycle पहचानें, और exponent को cycle length से mod करके last digit तय करें।
- Step 1: Base की last digit लें: सिर्फ last digit ही matter करती है। Base को (base mod 10) से replace कर दें।
- Step 2: 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: Exponent reduce करें: अगर cycle length = L है, तो r = exponent mod L लें। अगर r = 0, तो r = L मानें। Cycle के r-th term से last digit मिल जाता है।
- Step 4: Special cases: Base की last digit 0, 1, 5 या 6 हो → last digit हमेशा वही रहती है।
Step-by-Step Example
Question
72024 की last digit निकालें।
Solution
-
Step 1: Cycle पहचानें
7 के powers की last digits → [7, 9, 3, 1] इसलिए cycle length L = 4. -
Step 2: Exponent reduce करें
2024 mod 4 = 0 → r = 4 लें (क्योंकि remainder 0 होने पर cycle का आखिरी term लेते हैं)। -
Step 3: r-th term चुनें
Cycle का 4th element = 1 -
Final Answer:
72024 की last digit = 1 -
Quick Check:
हर 4th power of 7 की last digit 1 होती है → 2024 multiple of 4 → last digit 1. ✅
Quick Variations
1. (am × bn) की last digit → दोनों की last digit अलग निकालें और multiply करें।
2. a(bc) जैसे expressions में top exponent को cycle length से mod करें।
3. Base ending with 0, 1, 5, 6 → कोई calculation ज़रूरी नहीं, last digit हमेशा same रहती है।
Trick to Always Use
- Step 1: सिर्फ base की last digit पर ध्यान दें।
- Step 2: Standard cycles याद रखें (खासकर 2, 3, 7, 8 के)।
- Step 3: Exponent को cycle length से mod करें और r-th term चुनें।
- Step 4: यदि remainder 0 हो, cycle का आखिरी term लें।
Summary
Summary
Cyclicity of Digits problems में:
- सिर्फ base की last digit matter करती है।
- हर digit (0-9) की powers एक fixed cycle follow करती हैं।
- Exponent को cycle length से mod करके correct term मिल जाता है।
- Huge exponents होने पर भी last digit instantly मिल जाती है।
