अग्निवीर वायु परीक्षा के लिए संख्या श्रृंखला — पैटर्न पहचान और तेज़ समाधान

intermediate 18 min read

अवधारणा

संख्या श्रृंखला (Number Series) एक ऐसा अनुक्रम है जिसमें संख्याएँ किसी निश्चित नियम के अनुसार आती हैं। तुम्हारा काम है — उस छिपे हुए नियम को पकड़ना और लुप्त संख्या या अगली संख्या बताना।

सोचो एक ताले की चाबी की तरह: हर श्रृंखला में एक "key pattern" होता है। जैसे ही वो pattern मिल गया, बाकी सब automatic है।

अग्निवीर वायु परीक्षा में यह topic इसलिए महत्वपूर्ण है क्योंकि:

मूल विचार: कोई भी संख्या श्रृंखला इन तीन चीज़ों में से एक पर आधारित होती है:

  1. जोड़-घटाव (addition-subtraction pattern)
  2. गुणा-भाग (multiplication-division pattern)
  3. शक्ति (powers — square, cube)

या इनका combination।

सरल उदाहरण:

पर परीक्षा में इतना सीधा कभी नहीं आता। Patterns हमेशा छुपे हुए होते हैं — अंतर (difference) के अंदर pattern होता है, या alternate terms में pattern होता है। इसीलिए एक systematic approach चाहिए।


गहन विश्लेषण

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

पहला काम हमेशा यह करो: consecutive terms का अंतर निकालो।

उदाहरण: 5, 8, 11, 14, 17, ? अंतर: 3, 3, 3, 3 → constant difference → अगला = 17 + 3 = 20

यह आसान है। परीक्षा में यह इतना सीधा नहीं आता।


प्रकार 2: बढ़ता/घटता अंतर (Increasing/Decreasing Difference)

अंतर निकाला, पर वो constant नहीं है — तो अंतर के अंतर (second difference) निकालो।

उदाहरण: 45, 54, 65, 78, 93, ? अंतर: 9, 11, 13, 15, 17 → second difference = 2, 2, 2 (constant) अगला अंतर = 17 → 93 + 17 = 110

यह pattern Agniveer Vayu 2023 में आया था।


प्रकार 3: गुणा-भाग श्रृंखला (Multiplication/Division)

जब संख्याएँ बहुत तेज़ी से बढ़ें या घटें, तो गुणा-भाग pattern देखो।

उदाहरण: 600, 120, 30, 10, 5, ?

यहाँ divisor हर बार 1 घट रहा है: 5, 4, 3, 2, 1


प्रकार 4: वर्ग/घन आधारित (Square/Cube Based)

सूत्र को पहचानो:

| Pattern | सूत्र | उदाहरण | |---|---|---| | n2n^2 | 1,4,9,16,25...1, 4, 9, 16, 25... | वर्ग श्रृंखला | | n21n^2 - 1 | 0,3,8,15,24...0, 3, 8, 15, 24... | वर्ग में से 1 घटाओ | | n2+nn^2 + n | 2,6,12,20,30...2, 6, 12, 20, 30... | n(n+1)n(n+1) | | n3n^3 | 1,8,27,64,125...1, 8, 27, 64, 125... | घन श्रृंखला |

Quick test: अगर 0, 3, 8, 15, ? दिखे — तुरंत सोचो: 0=11,3=41,8=91,15=1610=1-1, 3=4-1, 8=9-1, 15=16-1 → यह n21n^2-1 है → अगला = 251=2425-1=24


प्रकार 5: Alternating Pattern (एकान्तर)

दो अलग-अलग patterns एकसाथ चल रहे हों:

उदाहरण: 423, 407, 439, 391, 455, ?

अंतर: -16, +32, -48, +64, -80

यहाँ अंतर: 16, 32, 48, 64, 80 — ये 16 के multiples हैं (16×1, 16×2, 16×3...) और sign alternate हो रहा है। अगला: 455 - 80 = 375


प्रकार 6: अंतर स्वयं एक श्रृंखला हो (Differences form a series)

उदाहरण: 1, 2, 6, 15, 31, 56, ?

अंतर: 1, 4, 9, 16, 25 → ये 12,22,32,42,521^2, 2^2, 3^2, 4^2, 5^2 हैं अगला अंतर = 62=366^2 = 36 → 56 + 36 = 92

यह सबसे important pattern है Agniveer Vayu के लिए।


Pattern Recognition का क्रम (Decision Flow)

हर बार इसी क्रम में सोचो:

  1. अंतर निकालो → constant है? → simple AP
  2. अंतर constant नहीं → अंतर के अंतर देखो → increasing pattern?
  3. संख्याएँ बहुत बड़ी/छोटी हो रही हैं → गुणा-भाग pattern
  4. कोई recognizable sequence → squares, cubes, n21n^2-1, primes
  5. Alternate terms अलग → दो interleaved series हैं

विशेष: अभाज्य संख्या श्रृंखला (Prime Number Series)

2, 3, 5, 7, 11, 13, ? → अगला prime = 17

Primes को याद रखो: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37...


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

patternD1-D2 तकनीक: दो-स्तरीय अंतर

जब पहला अंतर (D1) constant नहीं हो, तुरंत दूसरा अंतर (D2) निकालो। अगर D2 constant है, तो बस pattern आगे बढ़ाओ।

उदाहरण: 3, 7, 13, 21, 31, ? D1: 4, 6, 8, 10 → D2: 2, 2, 2 (constant) अगला D1 = 12 → 31 + 12 = 43

सामान्य तरीका: प्रत्येक term को formula से बनाने की कोशिश — 60 सेकंड D1-D2 तकनीक: 15 सेकंड (4 steps बनाम 10+ steps)

patternRatio Check: पहले 3 terms का भागफल देखो

अगर पहले तीन terms का अनुपात (ratio) same है, तो geometric series है।

5, 15, 45, 135, ? → 15/5=3, 45/15=3 → ratio = 3 → 135×3 = 405

Speed gain: Ratio check में 5 सेकंड लगते हैं। अगर match हो, तो answer 2 सेकंड में। अगर नहीं, तो difference method पर जाओ — कुल 8 सेकंड बनाम 30 सेकंड।

patternN²-1, N²+1 Recognition Pattern

जब श्रृंखला 0, 3, 8, 15, 24... जैसी दिखे — तुरंत पहचानो: ये n21n^2-1 है।

Quick check: पहली संख्या 0 है, दूसरी 3 → difference 3. दूसरी से तीसरी → difference 5. Differences हैं 3, 5, 7, 9... (odd numbers) → यह n21n^2-1 formula की पहचान है।

Standard method (formula ढूंढना): 40 सेकंड Recognition shortcut: 8 सेकंड — odd differences तुरंत n2±kn^2 ± k की तरफ इशारा करते हैं।

eliminationAlternate Sign Pattern: 16× multipliers

जब अंतर alternately positive-negative हों और तेज़ी से बढ़ रहे हों — जैसे -16, +32, -48, +64 — तो किसी constant (यहाँ 16) के multiples हैं।

परीक्षा में: Option elimination करो। अगर pattern घट रहा है, तो answer पिछली term से छोटा होगा। यह eliminate technique 50% options तुरंत हटा देती है।

Standard calculation: 45 सेकंड Elimination + pattern: 12 सेकंड

patternPerfect Square Differences: 1, 4, 9, 16...

जब D1 (पहले अंतर) 1, 4, 9, 16, 25 जैसे हों — ये perfect squares हैं।

1, 2, 6, 15, 31, 56, ? → D1: 1, 4, 9, 16, 25 → अगला D1 = 36 → 56+36=92

पहचान की निशानी: D1 में पहला अंतर = 1, दूसरा = 4 (1 का 4 गुना) → almost certainly perfect square series है।

इसे पहचानने में 5 सेकंड, solve करने में 3 सेकंड — कुल 8 सेकंड बनाम formula approach की 60 सेकंड।


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

परीक्षा-कक्ष में यह sequence follow करो — हर step 5-7 सेकंड का:

Step 1 — पहली नज़र: क्या संख्याएँ बहुत तेज़ी से बढ़/घट रही हैं? हाँ → गुणा-भाग pattern। नहीं → Step 2।

Step 2 — D1 निकालो: Consecutive terms का अंतर। Constant है? → Simple AP, done।

Step 3 — D1 constant नहीं: D2 निकालो। Constant है? → AP of differences, done।

Step 4 — D2 भी नहीं: D1 को देखो — क्या वो 1, 4, 9, 16... (perfect squares) हैं? या 1, 2, 3, 4... (natural numbers) हैं?

Step 5 — Alternate pattern: क्या odd-position और even-position terms अलग series बना रहे हैं? दोनों को अलग करो।

Step 6 — Formula recognition: n21n^2-1, n2+nn^2+n, n3+nn^3+n — familiar sequences पहचानो।

Time budget: एक number series प्रश्न में 35-40 सेकंड से ज़्यादा मत लगाओ। Step 4 तक नहीं पहुँचे तो option elimination से अनुमान लगाओ और आगे बढ़ो।


हल किए गए PYQs

क्यों यह प्रश्न: यह गुणा-भाग श्रृंखला का classic उदाहरण है। Divisor खुद एक descending series बनाता है — यह trap है क्योंकि 5÷1=5 देखकर लगता है "answer 5 कैसे हो सकता है?"

Previous Year Questionपिछले वर्ष का प्रश्न2023
Select the number that can replace the question mark (?) in the following series. 600, 120, 30, 10, 5, ?
  1. 5
  2. 3
  3. 2
  4. 4
Solutionसमाधान
The series divides by 5, 4, 3, 2 alternately: 600÷5=120, 120÷4=30, 30÷3=10, 10÷2=5, 5÷1=5. So the next term is 5.

समाधान का रास्ता:

  1. Consecutive ratios निकालो: 600/120=5, 120/30=4, 30/10=3, 10/5=2
  2. Divisors की series: 5, 4, 3, 2, 1 → अगला divisor = 1
  3. 5 ÷ 1 = 5
  4. Trap: answer 5 देखकर मत घबराओ — यह सही है।

क्यों यह प्रश्न: D1-D2 तकनीक का perfect example। यहाँ D1 odd numbers की series बनाता है — यह Agniveer Vayu में बार-बार आने वाला pattern है।

Previous Year Questionपिछले वर्ष का प्रश्न2023
Find the next number of the series. 45, 54, 65, 78, 93, ?
  1. 112
  2. 113
  3. 111
  4. 110
Solutionसमाधान
Differences between consecutive terms are 9, 11, 13, 15, 17 (increasing by 2 each time). Adding 17 to 93 gives 110.

समाधान का रास्ता:

  1. D1 निकालो: 54-45=9, 65-54=11, 78-65=13, 93-78=15
  2. D1 की series: 9, 11, 13, 15 → अंतर 2-2 (constant) → अगला D1 = 17
  3. 93 + 17 = 110
  4. समय: 20 सेकंड में हल।

क्यों यह प्रश्न: n21n^2-1 pattern की पहचान सबसे ज़रूरी skill है। D1 निकालने पर 3, 5, 7, 9 (odd numbers) मिलते हैं — यही इस formula की signature है।

Previous Year Questionपिछले वर्ष का प्रश्न2023
Find the next number of the series. 0, 3, 8, 15, ?
  1. 25
  2. 23
  3. 22
  4. 24
Solutionसमाधान
The pattern is n²-1: 1²-1=0, 2²-1=3, 3²-1=8, 4²-1=15, so 5²-1=24.

समाधान का रास्ता:

  1. D1: 3-0=3, 8-3=5, 15-8=7 → odd numbers: 3, 5, 7 → अगला = 9
  2. 15 + 9 = 24
  3. Formula confirmation: 521=245^2-1=24
  4. दोनों तरीके (D1 और formula) 15 सेकंड में।

क्यों यह प्रश्न: Alternating pattern में sign और magnitude दोनों बदलते हैं — यहाँ गलती की सबसे ज़्यादा संभावना है। 16 के multiples पहचाना कि नहीं, यही तय करता है।

Previous Year Questionपिछले वर्ष का प्रश्न2022
Select the number that can replace the question mark (?) in the following series. 423, 407, 439, 391, 455, ?
  1. 374
  2. 407
  3. 375
  4. 373
Solutionसमाधान
The series alternates: subtract 16, add 32, subtract 48, add 64, subtract 80. So 455 - 80 = 375. The differences follow a pattern of increasing multiples of 16 with alternating signs.

समाधान का रास्ता:

  1. D1: -16, +32, -48, +64 → absolute values: 16, 32, 48, 64 = 16×1, 16×2, 16×3, 16×4
  2. अगला: 16×5 = 80, और sign negative है (pattern: -, +, -, +, -)
  3. 455 - 80 = 375
  4. Common trap: 455 + 80 = 535 लिख देना — sign ध्यान से देखो।

क्यों यह प्रश्न: Perfect square differences — यह intermediate-to-advanced pattern है जो Agniveer Vayu में high-frequency पर आता है।

Previous Year Questionपिछले वर्ष का प्रश्न2022
Select the number that can replace the question mark (?) in the following series. 1, 2, 6, 15, 31, 56, ?
  1. 93
  2. 92
  3. 90
  4. 148
Solutionसमाधान
Differences: 1, 4, 9, 16, 25 (perfect squares). Next difference = 36. So 56 + 36 = 92.

समाधान का रास्ता:

  1. D1: 2-1=1, 6-2=4, 15-6=9, 31-15=16, 56-31=25
  2. D1 की series: 1, 4, 9, 16, 25 = 12,22,32,42,521^2, 2^2, 3^2, 4^2, 5^2
  3. अगला D1 = 62=366^2 = 36
  4. 56 + 36 = 92

आम गलतियाँ


संबंधित विषय


SarkariRise पर अभ्यास

Sign up + get 3 free mocks →