krit.club logo

Permutations and Combinations - Combinations

Grade 11CBSE

Review the key concepts, formulae, and examples before starting your quiz.

πŸ”‘Concepts

β€’

Definition of Combination: A combination is a selection of items from a larger pool where the order of selection does not matter. Visually, think of a bag containing 5 different colored balls; if you reach in and grab 2, picking (Red, Blue) is considered the exact same outcome as picking (Blue, Red).

β€’

Difference between Permutations and Combinations: While permutations focus on 'arrangements' where order is key, combinations focus on 'selections' or 'groups'. For example, if 3 students are chosen to stand in a line, their order creates different permutations; however, if those same 3 students are chosen to form a committee, they represent only one single combination regardless of how they stand.

β€’

Complementary Combinations: The number of ways to select rr objects from nn is the same as the number of ways to leave behind nβˆ’rn-r objects. This is expressed as nCr=nCnβˆ’r^nC_r = ^nC_{n-r}. Visually, if you have a row of 10 light bulbs and you choose 8 to turn 'ON', it is logically the same as choosing 2 specific bulbs to stay 'OFF'.

β€’

Pascal's Rule and the Pascal Triangle: The identity nCr+nCrβˆ’1=n+1Cr^nC_r + ^nC_{r-1} = ^{n+1}C_r relates combinations to the construction of Pascal's Triangle. In this triangle, any number (which represents a combination value) is the sum of the two numbers directly above it in the preceding row, illustrating how selections grow as the pool size increases.

β€’

Selection from Distinct Objects: When choosing any number of items from nn distinct objects, each item has two choices: to be included or excluded. This leads to 2n2^n total ways. If at least one item must be selected, we subtract the case where none are chosen, resulting in 2nβˆ’12^n - 1 total combinations. Visually, this is like a branching tree where every branch splits into 'Yes' or 'No' for every item in the set.

β€’

Relationship with Permutations: A permutation can be viewed as a two-step process: first, select the items (combination), and then arrange them. Mathematically, nPr=nCrΓ—r!^nP_r = ^nC_r \times r!. Visually, if you select a group of 3 players for a team (nC3^nC_3), and then assign them specific positions like Captain, Vice-Captain, and Keeper (3!3!), you have created permutations.

β€’

Restricted Combinations: Sometimes certain items must always be included or always excluded. If kk particular objects are always included, we only need to choose rβˆ’kr-k objects from the remaining nβˆ’kn-k objects, resulting in nβˆ’kCrβˆ’k^{n-k}C_{r-k} ways. Visually, imagine a team selection where the Star Player's spot is already filled; you are effectively choosing from a smaller pool for fewer remaining spots.

πŸ“Formulae

nCr=n!r!(nβˆ’r)!,Β whereΒ 0≀r≀n^nC_r = \frac{n!}{r!(n-r)!}, \text{ where } 0 \le r \le n

nC0=nCn=1^nC_0 = ^nC_n = 1

nC1=n^nC_1 = n

nCr=nCnβˆ’r^nC_r = ^nC_{n-r}

nCr+nCrβˆ’1=n+1Cr^nC_r + ^nC_{r-1} = ^{n+1}C_r

nΓ—nβˆ’1Crβˆ’1=(nβˆ’r+1)Γ—nCrβˆ’1n \times ^{n-1}C_{r-1} = (n-r+1) \times ^nC_{r-1}

IfΒ nCx=nCy,Β thenΒ eitherΒ x=yΒ orΒ x+y=n\text{If } ^nC_x = ^nC_y, \text{ then either } x = y \text{ or } x + y = n

πŸ’‘Examples

Problem 1:

Find the number of ways to form a committee of 5 members from a group of 6 men and 4 women, such that the committee contains exactly 3 men.

Solution:

  1. We need to select 3 men out of 6 available men. This can be done in 6C3^6C_3 ways.
  2. Since the total committee size is 5, the remaining 5βˆ’3=25 - 3 = 2 members must be women. We select 2 women out of 4 available women in 4C2^4C_2 ways.
  3. Using the Multiplication Principle, the total ways = 6C3Γ—4C2^6C_3 \times ^4C_2.
  4. Calculate 6C3=6Γ—5Γ—43Γ—2Γ—1=20^6C_3 = \frac{6 \times 5 \times 4}{3 \times 2 \times 1} = 20.
  5. Calculate 4C2=4Γ—32Γ—1=6^4C_2 = \frac{4 \times 3}{2 \times 1} = 6.
  6. Total ways = 20Γ—6=12020 \times 6 = 120.

Explanation:

This problem uses the basic combination formula to select subsets from two different groups (men and women) and combines them using the fundamental principle of counting.

Problem 2:

If 2nC3:nC3=11:1^{2n}C_3 : ^nC_3 = 11 : 1, find the value of nn.

Solution:

  1. Write the ratio as a fraction: 2nC3nC3=111\frac{^{2n}C_3}{^nC_3} = \frac{11}{1}.
  2. Expand using the formula: (2n)!3!(2nβˆ’3)!n!3!(nβˆ’3)!=11\frac{\frac{(2n)!}{3!(2n-3)!}}{\frac{n!}{3!(n-3)!}} = 11.
  3. Simplify the expression: (2n)(2nβˆ’1)(2nβˆ’2)n(nβˆ’1)(nβˆ’2)=11\frac{(2n)(2n-1)(2n-2)}{n(n-1)(n-2)} = 11.
  4. Take common factors: 2n(2nβˆ’1)2(nβˆ’1)n(nβˆ’1)(nβˆ’2)=11\frac{2n(2n-1)2(n-1)}{n(n-1)(n-2)} = 11.
  5. Cancel terms nn and (nβˆ’1)(n-1): 4(2nβˆ’1)nβˆ’2=11\frac{4(2n-1)}{n-2} = 11.
  6. Solve for nn: 8nβˆ’4=11nβˆ’228n - 4 = 11n - 22.
  7. 3n=18β€…β€ŠβŸΉβ€…β€Šn=63n = 18 \implies n = 6.

Explanation:

This example demonstrates how to solve algebraic equations involving combination notations by expanding the factorials and simplifying common terms.