0
0

Special Properties & Number Puzzles

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

  1. Step 1: 4 digits ensure करें:

    3524 पहले से 4-digit है (कम digits हों तो leading zeros से pad करें)।
  2. Step 2: Descending और ascending numbers बनाएँ:

    Descending D = 5432 (digits high→low).
    Ascending A = 2345 (digits low→high).
  3. Step 3: D - A निकालें:

    5432 - 2345 = 3087.
  4. Step 4: 3087 पर routine दोहराएँ:

    D = 8730, A = 0378 (यानी 378), 8730 - 378 = 8352.
  5. Step 5: 8352 पर repeat करें:

    D = 8532, A = 2358 → 8532 - 2358 = 6174.
  6. Step 6: एक और iteration fixed point दिखाता है:

    6174 से: D = 7641, A = 1467 → 7641 - 1467 = 6174 (fixed).

    Final Answer:

    3524 से शुरू करके Kaprekar routine 3 steps में 6174 तक पहुँचती है और फिर वहीं fixed रहती है।
  7. 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).

Practice

(1/5)
1. Which of the following numbers is an Armstrong number?
easy
A. 153
B. 154
C. 155
D. 156

Solution

  1. Step 1: Count digits:

    153 has 3 digits, so raise each digit to the power 3.
  2. Step 2: Compute:

    1³ + 5³ + 3³ = 1 + 125 + 27 = 153.
  3. Final Answer:

    153 equals the sum of its digit-cubes → 153 → Option A.
  4. Quick Check:

    Recompute 1 + 125 + 27 = 153 ✅
Hint: For an n-digit number, sum each digit^n and compare to the number.
Common Mistakes: Using wrong power (e.g., square instead of cube for 3-digit numbers).
2. Which of the following is a perfect number?
easy
A. 6
B. 8
C. 10
D. 12

Solution

  1. Step 1: Recall definition:

    A perfect number equals the sum of its proper divisors (divisors excluding the number itself).
  2. Step 2: Compute for 6:

    Proper divisors of 6 are 1, 2, 3 → sum = 1 + 2 + 3 = 6.
  3. Final Answer:

    Sum of proper divisors equals 6 → 6 → Option A.
  4. Quick Check:

    Other choices: 8 → 1+2+4=7 ≠ 8; 10 → 1+2+5=8 ≠ 10 ✅
Hint: Sum proper divisors and check equality with the number.
Common Mistakes: Including the number itself when summing divisors.
3. Which of the following numbers is automorphic (its square ends with the number itself)?
easy
A. 24
B. 76
C. 57
D. 98

Solution

  1. Step 1: Compute square and check ending digits:

    We need n² to end with n.
  2. Step 2: Check 76:

    76² = 5776 → last two digits = 76, so 76 is automorphic.
  3. Final Answer:

    76's square ends with 76 → 76 → Option B.
  4. Quick Check:

    Verify other options quickly: 24²=576 (ends 76), 57²=3249 (ends 49) → only 76 matches ✅
Hint: Check n² mod 10ᵏ (k = number of digits) and compare to n.
Common Mistakes: Checking only one digit for multi-digit numbers instead of k digits.
4. What is the Kaprekar constant for 4-digit numbers (the fixed point reached by the Kaprekar routine)?
medium
A. 495
B. 153
C. 6174
D. 9999

Solution

  1. Step 1: Recall Kaprekar routine:

    For 4-digit numbers (with at least two distinct digits) repeatedly form D (digits desc) and A (asc), compute D-A; iterate.
  2. Step 2: Known fixed point:

    For 4-digit numbers this routine converges to 6174 (Kaprekar constant) and then remains fixed: 7641-1467=6174.
  3. Final Answer:

    Kaprekar 4-digit constant is 6174 → Option C.
  4. Quick Check:

    Example: 3524 → 5432-2345=3087 → 8730-0378=8352 → 8532-2358=6174 → fixed point ✅
Hint: For 4-digit Kaprekar routine, the attractor (when it exists) is 6174.
Common Mistakes: Not padding with leading zeros for numbers with fewer than 4 digits during iterations.
5. Which of the following pairs is an amicable pair (sum of proper divisors of each equals the other)?
medium
A. (220, 285)
B. (1185, 1210)
C. (2620, 2925)
D. (220, 284)

Solution

  1. Step 1: Recall amicable definition:

    For pair (a,b): sum_proper_divisors(a)=b and sum_proper_divisors(b)=a.
  2. Step 2: Known classical pair:

    (220, 284) is the smallest known amicable pair: proper divisors of 220 sum to 284, and those of 284 sum to 220.
  3. Final Answer:

    (220, 284) is amicable → Option D.
  4. Quick Check:

    Proper divisors of 220: 1+2+4+5+10+11+20+22+44+55+110 = 284 ✅
Hint: Use known amicable pairs or compute proper-divisor sums via prime-factorization σ(n)-n.
Common Mistakes: Confusing amicable numbers with perfect numbers (where proper-divisor sum equals the same number).

Mock Test

Ready for a challenge?

Take a 10-minute AI-powered test with 10 questions (Easy-Medium-Hard mix) and get instant SWOT analysis of your performance!

10 Questions
5 Minutes