Introduction
कई probability problems में items को चुनने या arrange करने के तरीकों की संख्या निकालनी होती है। जब order matter नहीं करता, तब combinations (nCr) का उपयोग किया जाता है। जब order matter करता है, तब permutations (nPr) का उपयोग होता है। यह pattern selection, arrangement, committee formation और lottery-style problems के लिए बहुत महत्वपूर्ण है।
Logic simple है - favourable और total outcomes को permutation/combination formulas से count करें, और फिर यह formula apply करें: P(E) = Favourable Outcomes ÷ Total Outcomes.
Pattern: Probability Using Permutations/Combinations
Pattern
पहले तय करें कि order matter करता है या नहीं। Order matter करने पर permutations; order matter न करने पर combinations। फिर P = favourable ÷ total apply करें।
- Combinations (nCr): जब selection का order matter नहीं करता → nCr = n! / (r!(n-r)!).
- Permutations (nPr): जब order matter करता है → nPr = n! / (n-r)!
Step-by-Step Example
Question
(i) 52 cards की deck से बिना replacement 2 cards random निकाले जाते हैं। दोनों Aces होने की probability क्या है?
(ii) 5 students में से एक President और एक Secretary चुने जाते हैं। Alice President और Bob Secretary बनने की probability क्या है?
Solution
Part (i): Using Combinations (order matter नहीं करता)
Step 1: 2 cards चुनने के total ways = 52C2 = 1326.
Step 2: 2 Aces चुनने के favourable ways = 4C2 = 6.
Step 3: Probability = 6 ÷ 1326 = 1/221.
Quick Check (Alternative Method)
Sequentially: (4/52) × (3/51) = 12/2652 = 1/221 ✅
Part (ii): Using Permutations (order matter करता है)
Step 1: Total arrangements = 5P2 = 5 × 4 = 20.
Step 2: Favourable arrangement (Alice-President, Bob-Secretary) = 1.
Step 3: Probability = 1 ÷ 20 = 1/20.
Final Answers:
(i) दोनों Aces = 1/221
(ii) Alice-Bob pair = 1/20Quick Check:
दोनों results alternative verification से match करते हैं ✅
Quick Variations
1. Teams या committees select करना → combinations use करें।
2. Seats arrange करना या ranks assign करना → permutations use करें।
3. Cards या balls बिना replacement draw करना → आमतौर पर combinations।
4. Multi-step arrangements → ज़रूरत अनुसार nCr और nPr दोनों combine करें।
Trick to Always Use
- Step 1: पूछें - “क्या order matter करता है?” इससे nCr और nPr में सही चुनाव होगा।
- Step 2: Factorial formulas से total और favourable outcomes निकालें।
- Step 3: जब doubt हो (खासकर बिना replacement वाले cases में) sequential probability से verify करें।
Summary
Summary
Probability using Permutations and Combinations pattern में:
- nCr तब use करें जब order matter नहीं करता।
- nPr तब use करें जब order matter करता है।
- Total और favourable outcomes हमेशा सही count करें।
- P(E) = Favourable / Total apply करें।
- Replacement या sequence आने पर sequential multiplication से cross-check करें।
