SSC MTS संख्या श्रृंखला एवं लुप्त संख्या — पैटर्न पहचानो, अंक ढूंढो

intermediate 18 min read

अवधारणा

संख्या श्रृंखला का अर्थ है — संख्याओं का एक क्रमबद्ध समूह जहाँ हर पद एक निश्चित नियम से बनता है। SSC MTS में इस topic से प्रश्न इसलिए आते हैं क्योंकि ये तुम्हारी pattern पहचानने की क्षमता जाँचते हैं — रटी हुई formula नहीं, बल्कि सोचने का तरीका।

एक सरल उदाहरण: 2, 4, 8, 16, 32, ?

यहाँ हर पद पिछले पद का दोगुना है। इसलिए अगला पद 64 होगा। यह सबसे सरल पैटर्न है — गुणोत्तर (geometric)।

लेकिन SSC MTS में इतना सीधा नहीं आता। वहाँ श्रृंखला कुछ ऐसी होती है: 9, 28, 65, 126, 217, 344 — यहाँ pattern है n³ + 1। इसे देखकर तुरंत पहचानना आना चाहिए।

एक सरल उपमा: मान लो तुम एक पहेली सुलझा रहे हो जिसमें एक-के-बाद-एक दरवाज़े हैं। हर दरवाज़े पर एक नियम लिखा है — वही नियम श्रृंखला का pattern है। पहला दरवाज़ा खुलते ही बाकी सब खुल जाते हैं। जिसने नियम पहचाना, उसने प्रश्न हल किया।

SSC MTS में संख्या श्रृंखला के प्रश्न दो प्रकार के होते हैं:

  1. लुप्त पद (Missing term) — श्रृंखला के बीच में या शुरू में ? दिया होता है।
  2. अगला पद (Next term) — श्रृंखला के अंत में ? होता है।

दोनों में approach एक ही है: पहले pattern पहचानो, फिर apply करो।


गहन विश्लेषण

श्रृंखला के मुख्य प्रकार और उनकी पहचान

प्रकार 1: अंतर श्रृंखला (Difference Series)

सबसे पहले consecutive terms का अंतर निकालो।

पहचान का तरीका: जब संख्याएँ ज़्यादा बड़ी न हों और एक-दूसरे के करीब हों, तो अंतर method सबसे पहले आज़माओ।

प्रकार 2: गुणा-जोड़ श्रृंखला (Multiply and Add/Subtract)

यह SSC MTS का सबसे लोकप्रिय pattern है। Rule होता है: पद × a ± b = अगला पद

पहचान का तरीका: जब संख्याएँ तेज़ी से बढ़ रही हों, तो पहले अनुपात (ratio) देखो। पद₂ ÷ पद₁ का approximate value निकालो — वह multiplier बताएगा। फिर जो remainder बचे, वह constant है।

Shortcut: Term₂ − Term₁ × ratio = constant। उदाहरण: 15 − 9 × 2 = 15 − 18 = −3 नहीं, इसलिए ratio 2 नहीं। Try करो ratio 3: 15 ÷ 9 ≈ 1.67... फिर 15 = 9 × 3 − 12 — हाँ, यह काम किया।

प्रकार 3: घात श्रृंखला (Power Series)

पहचान का तरीका: जब numbers suddenly बड़े jump लेते हों और ratio लगातार बदलता हो, तो cubes/squares check करो। 28 देखते ही सोचो: 3³ = 27, 28 = 27+165 = 64+1 = 4³+1। Pattern clear हो गया।

प्रकार 4: Analogy-based Pattern (दो संख्याओं का संबंध)

इस type में पहले दिए गए pair से rule निकालो, फिर नए number पर apply करो।

Pattern पहचानने का क्रम

हमेशा इसी क्रम में check करो:

  1. सबसे पहले: अंतर निकालो — Term₂ − Term₁, Term₃ − Term₂
  2. अगर अंतर equal हैं: Arithmetic series — done।
  3. अगर अंतर बढ़ रहे/घट रहे हैं: Second difference check करो।
  4. अगर अंतर बहुत बड़े हैं: Ratio देखो (×2, ×3, ×4...)
  5. अगर ratio भी regular नहीं: Multiply ± constant आज़माओ।
  6. अगर कुछ नहीं: Perfect squares/cubes check करो।

शॉर्टकट और युक्तियाँ

pattern'अंतर का अंतर' — Second Difference Method

जब consecutive terms का पहला अंतर regular न हो, तो उन अंतरों का फिर से अंतर निकालो।

उदाहरण: 86, 91, 101, 116, ? पहला अंतर: 5, 10, 15, 20 — यह arithmetic series है। दूसरा अंतर: 5, 5, 5 — constant है। इसलिए अगला पहला अंतर 25 होगा, तो 116 + 20 = 136

Standard method: हर ratio आज़माओ — 45 seconds। Second difference method: 10 seconds। 4-5 step की बचत।

pattern'Ratio + Remainder' — गुणा-जोड़ पैटर्न की त्वरित पहचान

जब numbers तेज़ी से बढ़ रहे हों:

Step 1: Term₂ ÷ Term₁ का approximate ratio निकालो। Step 2: Term₂ − (Term₁ × ratio) = constant check करो।

उदाहरण: 9, 15, 33, 87, ? 15 ÷ 9 ≈ 1.67 (2 नहीं, 3 आज़माओ) 15 − (9 × 3) = 15 − 27 = −12 → Rule: × 3 − 12 Verify: 33 − (15 × 3) = 33 − 45 = −12

Standard trial-error: 60 seconds। Ratio+Remainder: 15 seconds। 3 steps की बचत।

pattern'घन-पहचान' — Cube Pattern Instant Recognition

8, 27, 64, 125, 216, 343 — इन्हें याद करो: 2³, 3³, 4³, 5³, 6³, 7³

जब कोई number इनमें से ±1, ±2 हो, तो तुरंत cube pattern सोचो।

उदाहरण: 28 देखते ही → 27+1 = 3³+16564+1 = 4³+1

Pattern देखते ही identification: 5 seconds। बिना पहचान के working: 40 seconds।

elimination'Analogy Pair' — दो पदों का नियम 30 सेकंड में

दो given pairs से rule निकालने के लिए:

Step 1: Output ÷ Input निकालो (अगर round number आए — rule multiply है)। Step 2: अगर नहीं, तो Output − Input निकालो। Step 3: दोनों pairs में same value हो — rule मिला।

13 → 103: 103 ÷ 13 ≈ 7.9 (8 try करो) → 13 × 8 = 104, 104 − 103 = 1 → Rule: ×8 − 1 9 → 71: 9 × 8 = 72, 72 − 1 = 71

Confirm करके apply: 20 seconds। Random guessing: 90+ seconds।

estimation'पहला और आखिरी पद' — Missing Middle Term का शॉर्टकट

जब बीच का पद missing हो और दोनों तरफ के पद दिए हों:

श्रृंखला: 34, 365, 388, ?, 434, 457 388 और 434 के बीच ? है। अंतर check करो: 434 − 388 = 46। दो steps में 46 — तो एक step में 23388 + 23 = 411

यह method तब काम करता है जब missing term दो known terms के बीच में हो। Standard: पूरी series pattern ढूंढो — 45 seconds। Middle term shortcut: 10 seconds।


तेज़-समाधान रूपरेखा

परीक्षा में श्रृंखला का प्रश्न देखते ही यह mental checklist चलाओ:

Step 1 (10 सेकंड): क्या numbers ज़्यादा बड़े हैं? अगर हाँ → Power series या Multiply pattern।

Step 2 (15 सेकंड): पहला अंतर निकालो। क्या equal है? हाँ → Arithmetic। नहीं → आगे बढ़ो।

Step 3 (15 सेकंड): दूसरा अंतर निकालो। Equal? → Quadratic pattern। नहीं → Ratio देखो।

Step 4 (20 सेकंड): Ratio approximate निकालो (÷ previous term)। अगर ≈ 2, 3, 4, 6 → Multiply ± constant आज़माओ।

Step 5 (10 सेकंड): किसी number के पास perfect cube/square दिखे → Power ± constant check करो।

Rule of thumb: अगर 45 सेकंड में pattern नहीं मिला, तो options से backward-verify करो। Option डालो और देखो कि pattern बनता है या नहीं — यह अक्सर 20 सेकंड में काम करता है।

कभी भी सभी options randomly try मत करो। Logic-first, options-second।


हल किए गए PYQs

क्यों यह प्रश्न: घन पैटर्न (n³ + 1) SSC MTS में repeat होता है। पहले term से pattern पकड़ने की practice ज़रूरी है।

समाधान का रास्ता: 28 = 27 + 1 = 3³ + 1, 65 = 64 + 1 = 4³ + 1, 126 = 125 + 1 = 5³ + 1 — pattern स्पष्ट है। तो पहला term 2³ + 1 = 8 + 1 = 9

Previous Year Questionपिछले वर्ष का प्रश्न2017
In the following question, select the missing number from the given alternatives. ?, 28, 65, 126, 217, 344
  1. 4
  2. 5
  3. 7
  4. 9
Solutionसमाधान
The series follows the pattern n³ + 1: 2³+1=9, 3³+1=28, 4³+1=65, 5³+1=126, 6³+1=217, 7³+1=344. So the missing number is 9.

क्यों यह प्रश्न: Analogy-based number relationship SSC MTS 2024 में आया। यह type तुम्हें systematic rule extraction सिखाता है।

समाधान का रास्ता: 13 × 8 = 104, 104 − 1 = 103 ✓। 9 × 8 = 72, 72 − 1 = 71 ✓। Rule confirm हुआ: × 8 − 1। अब 15 × 8 = 120, 120 − 1 = 119

Previous Year Questionपिछले वर्ष का प्रश्न2024
13 is related to 103 following a certain logic. Following the same logic, 9 is related to 71. To which of the following is 15 related, following the same logic? (NOTE: Operations should be performed on the whole numbers.)
  1. 119
  2. 109
  3. 112
  4. 117
Solutionसमाधान
The pattern is: multiply the number by 8 then subtract 1 (13×8−1=103, 9×8−1=71). Applying the same: 15×8−1=119.

क्यों यह प्रश्न: × 2 + 1 pattern सबसे classic SSC pattern है। इसे 10 सेकंड में पहचानना आना चाहिए।

समाधान का रास्ता: 3 × 2 + 1 = 7, 7 × 2 + 1 = 15, 15 × 2 + 1 = 31... pattern crystal clear है। 63 × 2 + 1 = 127

Previous Year Questionपिछले वर्ष का प्रश्न2024
What should come in place of the question mark (?) in the following series? 3, 7, 15, 31, 63, ?
  1. 168
  2. 576
  3. 127
  4. 177
Solutionसमाधान
Each term is obtained by multiplying the previous term by 2 and adding 1 (3×2+1=7, 7×2+1=15, 15×2+1=31, 31×2+1=63, 63×2+1=127).

क्यों यह प्रश्न: अंतर-श्रृंखला (difference of differences) का यह सरल उदाहरण है जो SSC MTS के level के लिए perfect है।

समाधान का रास्ता: अंतर निकालो: 91−86=5, 101−91=10, 116−101=15। Pattern: +5, +10, +15, +20। अगला: 116 + 20 = 136

Previous Year Questionपिछले वर्ष का प्रश्न2024
Select the number from among the given options that can replace the question mark (?) in the following series. 86, 91, 101, 116, ?
  1. 159
  2. 134
  3. 126
  4. 136
Solutionसमाधान
The differences are +5, +10, +15, +20, so the next term is 116+20=136.

क्यों यह प्रश्न: × 3 − 12 pattern में multiplier बड़ा और constant negative है — यह combination confusing लगता है लेकिन Ratio+Remainder method से 15 seconds में हल होता है।

समाधान का रास्ता: 15 ÷ 9 ≈ 1.67 (3 try करो)। 9 × 3 − 12 = 15 ✓। 15 × 3 − 12 = 33 ✓। 87 × 3 − 12 = 261 − 12 = 249

Previous Year Questionपिछले वर्ष का प्रश्न2023
What should come in place of '?' in the given series? 9, 15, 33, 87, ?, 735, 2193
  1. 249
  2. 237
  3. 225
  4. 241
Solutionसमाधान
The pattern is ×3−12: 9×3−12=15, 15×3−12=33, 33×3−12=87, 87×3−12=249, 249×3−12=735. So the missing number is 249.

क्यों यह प्रश्न: × 6 − 9 — large multiplier। इसमें ratio method ज़रूरी है क्योंकि numbers बहुत तेज़ी से बढ़ते हैं।

समाधान का रास्ता: 9 ÷ 3 = 3 (ratio 3 try करो), लेकिन 3 × 3 = 9 — constant 0 होगी। 9 − 3 = 6 — नहीं। Ratio 6 try करो: 3 × 6 = 18, 18 − 9 = 9 ✓। 9 × 6 = 54, 54 − 9 = 45 ✓। 1557 × 6 − 9 = 9342 − 9 = 9333

Previous Year Questionपिछले वर्ष का प्रश्न2023
What should come in place of '?' in the given series? 3 9 45 261 1557 ?
  1. 9433
  2. 8572
  3. 9555
  4. 9333
Solutionसमाधान
The pattern is ×6−9: 3×6−9=9, 9×6−9=45, 45×6−9=261, 261×6−9=1557, 1557×6−9=9333.

क्यों यह प्रश्न: × 4 + 1 — यह pattern × 2 + 1 जितना common है। दोनों में approach same है।

समाधान का रास्ता: 65 ÷ 16 ≈ 416 × 4 = 64, 64 + 1 = 65 ✓। 65 × 4 = 260, 260 + 1 = 261 ✓। 4181 × 4 + 1 = 16724 + 1 = 16725

Previous Year Questionपिछले वर्ष का प्रश्न2023
What should come in place of '?' in the given series? 16 65 261 1045 4181 ?
  1. 16725
  2. 16892
  3. 16273
  4. 16945
Solutionसमाधान
The pattern is ×4+1: 16×4+1=65, 65×4+1=261, 261×4+1=1045, 1045×4+1=4181, 4181×4+1=16725.

क्यों यह प्रश्न: Missing middle term जहाँ दोनों तरफ के पद ज्ञात हों — यह shortcut वाला प्रश्न है।

समाधान का रास्ता: 388 + 23 = 411, 411 + 23 = 434 — consistent difference 23 confirm। Answer 411

Previous Year Questionपिछले वर्ष का प्रश्न2022
In the following question, select the missing number of the given series. 34, 365, 388, ?, 434, 457
  1. 430
  2. 425
  3. 411
  4. 435
Solutionसमाधान
The difference between consecutive terms is consistently 23: 365–34=331... checking the pattern 365+23=388, 388+23=411, 411+23=434, 434+23=457. So the missing number is 411.

आम गलतियाँ

संबंधित विषय

SarkariRise पर अभ्यास

Sign up + get 3 free mocks →