Introduction
Simple Combinations तब उपयोग होती हैं जब हम items select करते हैं और order matter नहीं करता। Combinations तब use करें जब सिर्फ यह मायने रखता हो कि कौन-कौन से items चुने गए हैं - न कि वे किस क्रम में आते हैं।
यह pattern महत्वपूर्ण है क्योंकि कई real-world selection problems (team बनाना, committee members चुनना, lottery numbers select करना) permutations नहीं बल्कि combinations मांगती हैं।
Pattern: Simple Combinations (Order Doesn’t Matter)
Pattern
अगर n distinct items में से r items चुनने हों और order irrelevant हो, तो nCr का उपयोग करें।
Formula:
nCr = n! / (r! (n - r)!)
Shortcut idea: इसे nPr / r! के रूप में भी compute कर सकते हैं (हर selection के r! possible orders को divide कर देते हैं)।
Step-by-Step Example
Question
6 students में से 3 students की एक team चुननी है। Team कितने तरीकों से चुनी जा सकती है?
Solution
-
Step 1: दिए गए values पहचानें।
Total students = n = 6; team size = r = 3. Order matter नहीं करता। -
Step 2: Combination formula चुनें।
UsenCr = n! / (r! (n - r)!). -
Step 3: Substitute करें और compute करें।
6C3 = 6! / (3! × 3!) = (6 × 5 × 4 × 3!)/(3! × 3!) = (6 × 5 × 4) / (3 × 2 × 1) = 120 / 6 = 20 -
Final Answer:
Team 20 तरीकों से चुनी जा सकती है। -
Quick Check:
सोचें: चुने गए 3 students की permutations = 6 × 5 × 4 = 120 इन्हें 3! = 6 से divide करें (order हटाने के लिए) → 120 ÷ 6 = 20 ✅
Quick Variations
1. r = 1 → nC1 = n (simple)।
2. r = n → nCn = 1 (सभी चुनने का सिर्फ एक तरीका)।
3. Committees, lottery picks, unordered groups select करने में combinations उपयोग करें; अगर roles (order) assign होते हों तो permutations उपयोग करें।
Trick to Always Use
- Step 1: पूछें: "क्या order matter करता है?" अगर NO → combinations (nCr)।
- Step 2: nCr को factorials से या फिर nPr ÷ r! से (छोटे r पर तेज़) compute करें।
Summary
Summary
n में से r items चुनते समय जब order की कोई भूमिका नहीं होती:
- Use nCr = n! / (r! (n - r)!).
- Alternatively, permutations को r! से divide करके ordering हटा दें।
- हमेशा confirm करें कि problem में order चाहिए या नहीं - यही combination vs permutation तय करता है।
