0
0

Selection with Conditions (At least / At most)

Introduction

Selection-with-conditions problems में items को ऐसे चुनना होता है जहाँ limits दी होती हैं-जैसे “at least one”, “at most two”, “exactly three”, या mixed constraints। ये problems exams में बहुत आती हैं क्योंकि ये combination concepts और case-wise counting दोनों की समझ को test करती हैं।

यह pattern महत्वपूर्ण है क्योंकि verbal condition को clear cases में तोड़ना (या complementary counting का उपयोग करना) मुश्किल दिखने वाली selection problems को भी आसान बना देता है।

Pattern: Selection with Conditions (At least / At most)

Pattern

मुख्य विचार: condition को exact cases में बदलें या complement (Total - forbidden) का उपयोग करें। Unordered selections के लिए combinations (nCr) का उपयोग करें और valid cases को जोड़ दें।

Typical approaches:

  • Direct case-splitting:Allowed values के लिए अलग-अलग combinations add करें। जैसे “at most 2” → 0 + 1 + 2 cases।
  • Complementary counting:Total combinations निकालें और disallowed cases subtract करें-“at least one” के लिए उपयोगी।
  • Mixed constraints:Required items पहले चुनें, फिर बाकी allowed pool से selections करें।
  • Ordering not important:Selections के लिए nCr; अगर order matter करे तो nPr।

Step-by-Step Example

Question

8 distinct books में से at most 2 books कितने तरीकों से चुने जा सकते हैं?

Solution

  1. Step 1: Condition को cases में बदलें।

    “At most 2” का मतलब है: 0 books, 1 book या 2 books। हर case को अलग compute करेंगे और जोड़ेंगे।
  2. Step 2: हर case के लिए combination formula लगाएँ।

    • Choose 0: 8C0 = 1
    • Choose 1: 8C1 = 8
    • Choose 2: 8C2 = 8×7 / 2 = 28
  3. Step 3: Cases add करें।

    Total = 1 + 8 + 28 = 37
  4. Final Answer:

    कुल 37 possible selections हैं।
  5. Quick Check:

    8 items के total subsets = 28 = 256; size > 2 वाले subsets = 256 - 37 = 219 → at most-2 count का छोटा होना सहज है ✅

Quick Variations

1. At least one: Complement का उपयोग करें → Total - none. उदाहरण: n items से at least one = 2n - 1।

2. At most k: nC0 + nC1 + ... + nCk का sum।

3. Exactly r with restrictions: Required items पहले चुनें, फिर बाकी items में से combinations लें।

4. At least r: r से n तक sum करें या complement का उपयोग करें → Total - (0 से r-1 तक sum)।

Trick to Always Use

  • Step 1 → Condition पढ़कर तय करें कि complement आसान है या direct cases।
  • Step 2 → हर r के लिए combinations nCr = n! / (r! (n - r)!) से निकालें और add करें।
  • Step 3 → Mixed constraints में पहले ज़रूरी items चुनें, फिर बाकी selections लें।
  • Step 4 → Quick sanity check: result total possible selections (2n) या nCr से ≤ होना चाहिए।

Summary

Summary

Selection-with-conditions के मुख्य विचार:

  • “At most k” → nC0 + nC1 + ... + nCk
  • “At least k” → nCk + ... + nCn या complement: 2^n - (nC0 + ... + nC(k-1)).
  • “Exactly r with requirements” → Required items पहले चुनें, फिर बाकी combinations लें।
  • हमेशा total subsets (2n) या nCr के साथ result को cross-check करें।

Practice

(1/5)
1. From 6 distinct pens, in how many ways can you select at least one pen?
easy
A. 63
B. 62
C. 64
D. 65

Solution

  1. Step 1: Total selections (including none).

    Each pen may be chosen or not → total subsets = 26 = 64.
  2. Step 2: Apply 'at least one'.

    Subtract the case where none is chosen: 64 - 1 = 63.
  3. Final Answer:

    63 → Option A.
  4. Quick Check:

    Only the empty subset is excluded, so 64 - 1 = 63 ✅
Hint: At least one = 2^n - 1.
Common Mistakes: Including the 'none' case when the question asks for at least one.
2. From 7 distinct books, how many ways can you choose at most one book?
easy
A. 7
B. 8
C. 9
D. 6

Solution

  1. Step 1: Interpret 'at most one'.

    This means choose 0 books or 1 book.
  2. Step 2: Compute cases.

    7C0 + 7C1 = 1 + 7 = 8.
  3. Final Answer:

    8 → Option B.
  4. Quick Check:

    Either choose none (1 way) or any one of the 7 books → total 8 ✅
Hint: At most one = nC0 + nC1.
Common Mistakes: Forgetting to include the zero-choice case.
3. From 9 distinct fruits, in how many ways can you select at most 2 fruits?
easy
A. 46
B. 45
C. 55
D. 37

Solution

  1. Step 1: Interpret 'at most 2'.

    Means choosing 0, 1, or 2 fruits.
  2. Step 2: Compute each case.

    9C0 = 1, 9C1 = 9, 9C2 = 36.
  3. Step 3: Sum the cases.

    Total = 1 + 9 + 36 = 46.
  4. Final Answer:

    46 → Option A.
  5. Quick Check:

    Counting none (1), any single (9) and any pair (36) gives 46 ✅
Hint: For 'at most k' sum nC0 through nCk.
Common Mistakes: Omitting the 0-selection case or miscomputing nC2.
4. Out of 10 players, a team of at least 8 players must be chosen. How many possible teams can be formed?
medium
A. 56
B. 120
C. 175
D. 200

Solution

  1. Step 1: Expand 'at least 8'.

    Possible team sizes: 8, 9, or 10.
  2. Step 2: Compute combinations for each size.

    10C8 = 45, 10C9 = 10, 10C10 = 1.
  3. Step 3: Add the cases.

    Total = 45 + 10 + 1 = 56.
  4. Final Answer:

    56 → Option A.
  5. Quick Check:

    All valid teams are the 8-member, 9-member and 10-member combos → 45 + 10 + 1 = 56 ✅
Hint: Sum nCr for r from the minimum required up to n.
Common Mistakes: Forgetting to include the "all chosen" case (nCn).
5. From 12 distinct items, in how many ways can you choose at least one item?
medium
A. 2,047
B. 2,048
C. 2,046
D. 4,095

Solution

  1. Step 1: Total subsets including none.

    Total = 212 = 4,096.
  2. Step 2: Remove the 'none' case.

    At least one = 4,096 - 1 = 4,095.
  3. Final Answer:

    4,095 → Option D.
  4. Quick Check:

    Only the empty selection is excluded, so 4,096 - 1 = 4,095 ✅
Hint: At least one = 2^n - 1.
Common Mistakes: Forgetting to subtract the empty selection case.

Mock Test

Ready for a challenge?

Take a 10-minute AI-powered test with 10 questions (Easy-Medium-Hard mix) and get instant SWOT analysis of your performance!

10 Questions
5 Minutes