Introduction
Special-number properties और puzzles aptitude और olympiad-style questions में काफी पसंद किए जाते हैं। ये problems ऐसे well-known classes पहचानने की ability test करते हैं (perfect, amicable, narcissistic/Armstrong, Kaprekar, automorphic, Harshad, triangular/square numbers, repunits, आदि) और simple checks या constructions से यह decide करना होता है कि कोई number इन classes में आता है या नहीं।
Definitions, छोटे tests और कुछ constructive procedures (जैसे Kaprekar routine) सीखने से कई “trick” और pattern-type problems जल्दी solve हो जाते हैं।
Pattern: Special Properties & Number Puzzles
Pattern
हर special property का एक छोटा-सा test होता है - test को step-by-step apply करें और छोटी computations (digit sums, factor sums, powering digits, rearrangements) से verify करें।
- Armstrong / Narcissistic number (n-digit): हर digit^n का sum number के बराबर हो।
Test: अगर number में n digits हैं, तो Σ(digitn) निकालकर number से compare करें।
Example formula: 153 (3-digit): 1³ + 5³ + 3³ = 1 + 125 + 27 = 153. - Perfect number: Proper divisors का sum number के बराबर हो।
Test: ऐसे divisors d (जहाँ d < n और d|n) का sum निकालकर equality check करें।
Example: 28: 1 + 2 + 4 + 7 + 14 = 28. - Amicable pair (a, b): a के proper divisors का sum = b और b के proper divisors का sum = a.
Test: σ(a)-a और σ(b)-b compare करें। - Kaprekar’s routine (4-digit example → 6174): कोई भी 4-digit number जिसमें कम से कम दो digits अलग हों: digits को desc (D) और asc (A) order में लगाएँ, D - A निकालें, repeat करें; ज्यादातर numbers ≤ 7 iterations में 6174 तक पहुँचते हैं।
Procedure: Fixed point या loop तक दोहराएँ। - Automorphic number: उसके square के आखिरी digits खुद number हों।
Test: n² निकालें और आखिरी k digits (k = digits की संख्या) match करें। - Harshad / Niven number: Number digits के sum से divisible हो।
Test: Digit sum s निकालें; n mod s = 0 check करें। - Triangular / Square / Pentagonal tests: Inverse formulas का उपयोग करें: triangular n ↔ k(k+1)/2 = n को solve करें और k integer आए तो valid; square ↔ sqrt(n) integer, आदि।
- Repunits / Repeating-digit numbers: (111..1) जैसी forms पहचानें और divisibility या formula R_k = (10^k - 1)/9 से checks करें।
- Digital-root tricks: mod 9 divisibility, repeated-sum tests और impossibility spot करने में useful।
Step-by-Step Example
Question
3524 से शुरू करके Kaprekar की 4-digit routine apply करें और fixed point तक steps दिखाएँ।
Solution
-
Step 1: 4 digits ensure करें:
3524 पहले से 4-digit है (कम digits हों तो leading zeros से pad करें)। -
Step 2: Descending और ascending numbers बनाएँ:
Descending D = 5432 (digits high→low).
Ascending A = 2345 (digits low→high). -
Step 3: D - A निकालें:
5432 - 2345 = 3087. -
Step 4: 3087 पर routine दोहराएँ:
D = 8730, A = 0378 (यानी 378), 8730 - 378 = 8352. -
Step 5: 8352 पर repeat करें:
D = 8532, A = 2358 → 8532 - 2358 = 6174. -
Step 6: एक और iteration fixed point दिखाता है:
6174 से: D = 7641, A = 1467 → 7641 - 1467 = 6174 (fixed).Final Answer:
3524 से शुरू करके Kaprekar routine 3 steps में 6174 तक पहुँचती है और फिर वहीं fixed रहती है। -
Quick Check:
प्रत्येक subtraction और leading-zero handling verify करें (जैसे 0378 को 4-digit मानकर order करना)। Routine 6174 पर end हुई - जो 4-digit Kaprekar constant है। ✅
Quick Variations
1. 3-digit Kaprekar routine अक्सर 495 (3-digit Kaprekar constant) पर पहुँचती है-procedure similar है।
2. Automorphic test: n (k digits) के लिए n² mod 10^k निकालकर n से compare करें।
3. Armstrong numbers में n-digit होने पर power n बदलती है: 4-digit example 9474: 9⁴+4⁴+7⁴+4⁴ = 9474.
4. Perfect/amicable checks में divisors sum जल्दी निकालने के लिए prime factorization helpful है।
Trick to Always Use
- Step 1 → Definition पहले पढ़ें (precise test), फिर problem को छोटी computation (digit-sum, powering digits, divisor-sum, modular check) में reduce करें।
- Step 2 → Modular arithmetic (mod 9, mod 10^k) से heavy computation से पहले quick impossibility checks करें।
- Step 3 → Repeated routines (Kaprekar, iterations) में numbers को fixed-width रखें (leading zeros pad करके) और fixed point या short cycle तक track करें।
- Step 4 → Divisor sums के लिए prime factorization use करें: यदि n = Π p_i^{a_i} हो तो σ(n) = Π (p_i^{a_i+1} - 1)/(p_i - 1); proper-sum = σ(n) - n।
Summary
Summary
- Special-number classes (Armstrong, perfect, automorphic, Harshad, Kaprekar, आदि) की definitions और tests याद रखें और उनसे जुड़ी छोटी computations (digit powers, divisor sums, modular checks, iterative routines) apply करें।
- Heavy calculation से पहले modular reductions (जैसे mod 9, mod 10ᵏ) और digit-based shortcuts से impossibilities जल्दी पहचानें।
- Iterative routines (Kaprekar, repeated digit-power checks) में fixed-width numbers रखें (leading zeros pad करके) और fixed point/short cycle तक iterate करें।
- हमेशा quick verification करें-जैसे perfect/amicable checks में divisor sums दोबारा verify करें, automorphic test में n² mod 10ᵏ confirm करें।
याद रखने वाला example:
Kaprekar routine 3524 से → 5432 - 2345 = 3087 → 8730 - 0378 = 8352 → 8532 - 2358 = 6174 (fixed point).
