Introduction
Sum of Digits और Digital Root patterns बड़े numbers को एक single-digit representative में बदलने की तेज़ technique देते हैं। ये divisibility checks (खासकर 3 और 9), checksum problems और repeated-sum tasks को simplify करने में बहुत उपयोगी हैं।
Pattern: Sum of Digits / Digital Root
Pattern
Digital root वह single-digit value है जो किसी number की digits को बार-बार जोड़ने पर अंत में बचती है। इसे divisibility (3 और 9) test करने और fast calculation के लिए modular formula से निकालें।
- Sum of digits (S): अगर n के digits d_k...d_1d_0 हैं, तो S(n) = d_0 + d_1 + ... + d_k.
- Digital root (DR): S को तब तक apply करें जब तक एक digit न बचे (0-9)।
- Fast modular formula:
n > 0 के लिए:DR(n) = 1 + ((n - 1) mod 9)n = 0 के लिए:DR(0) = 0 - Digit-sum divisibility tests:
- S(n) अगर 3 से divisible → n, 3 से divisible।
- S(n) अगर 9 से divisible → n, 9 से divisible।
- Casting out 9s: Digit-sum में 9 subtract करते रहना mod 9 remainder नहीं बदलता-mental calculation आसान होती है।
- Relation to mod 9: Digital root (9 आने पर छोड़कर) n mod 9 के बराबर होता है; DR(n) = 0 जब n ≡ 0 (mod 9), वरना DR = n mod 9 (या formula 1+((n-1) mod 9) use करें)।
Step-by-Step Example
Question
(a) 987654 का digital root निकालें।
(b) Sum-of-digits से जाँचें कि 987654, 3 और 9 से divisible है या नहीं।
Solution
-
Step 1: Sum of digits निकालें
S(987654) = 9 + 8 + 7 + 6 + 5 + 4 = 39.
-
Step 2: Digital root (iterative)
S(39) = 3 + 9 = 12.
S(12) = 1 + 2 = 3.
इसलिए DR(987654) = 3. -
Step 3: Modular formula से quick check
DR = 1 + ((987654 - 1) mod 9). 987654 mod 9 = (S = 39) → 39 mod 9 = 3, इसलिए DR = 3 → दोनों methods match।
-
Step 4: Divisibility conclusions
DR = 3 (digit-sum 39, 3 से divisible लेकिन 9 से नहीं), इसलिए 987654 → 3 से divisible, पर 9 से नहीं।
-
Final Answer:
(a) Digital root = 3.
(b) 3 से divisible: Yes. 9 से divisible: No. -
Quick Check:
987654 ÷ 3 = 329218 (integer) 987654 ÷ 9 = 109739.333... (integer नहीं) → result confirm। ✅
Quick Variations
1. Missing digit problems: किसी number में unknown digit x हो और उसे 9 से divisible होना हो, तो (S + x) ≡ 0 (mod 9) से x निकालें।
2. Negative numbers: Digit-sum और digital root के लिए absolute value लें।
3. Base-b version: Digital root का concept दूसरे bases में भी चलता है-modulus (b-1) का उपयोग करें।
Trick to Always Use
- Step 1 → Digit-sum निकालते समय 9s cast out करें-बड़ा sum जल्दी छोटा हो जाता है।
- Step 2 → Comfortable हों तो DR = 1 + ((n - 1) mod 9) से direct एक-step result लें।
- Step 3 → Missing-digit problems में (known sum + x) ≡ 0 (mod 3 या 9) से x तुरंत मिल जाता है।
Summary
Summary
- Digit-sum से 3 और 9 की divisibility जल्दी check होती है।
- Digital root digits को बार-बार जोड़कर single digit तक पहुँचता है।
- Formula DR(n) = 1 + ((n - 1) mod 9) बहुत fast है।
- Missing-digit problems के लिए digit-sum से congruence बनाएं।
Example:
987654 का digit-sum 39 → digital root 3 → 3 से divisible, 9 से नहीं।
