Skip to content

9709 · 5.2

Permutations and combinations — practice questions

Practice and worked examples for 9709 Permutations and combinations. Short previews only — attempt the full question in MarkScheme against the official scheme.

Worked example 1

A school is electing a student council consisting of a President, a Vice-President, and a Treasurer. There are 8 candidates. How many different ways can the three positions be filled?

Show solution outline

Here, the order matters; being President is different from being Vice-President. We are arranging 3 people from a group of 8.

This is a permutation problem with n=8n=8 and r=3r=3.

Number of ways = 8P3^8 P_3

8P3=8!(83)!=8!5!^8 P_3 = \frac{8!}{(8-3)!} = \frac{8!}{5!}

=8×7×6×5×4×3×2×15×4×3×2×1= \frac{8 \times 7 \times 6 \times 5 \times 4 \times 3 \times 2 \times 1}{5 \times 4 \times 3 \times 2 \times 1}

=8×7×6= 8 \times 7 \times 6

=336= 336

There are 336 different ways to fill the three positions.

Worked example 2

A team of 5 players is to be chosen from a squad of 12. (a) How many different teams can be chosen? (b) The squad consists of 5 defenders and 7 attackers. How many teams can be chosen that have exactly 2 defenders?

Show solution outline

(a) Order does not matter when choosing a team. This is a combination with n=12n=12 and r=5r=5.

Number of teams = 12C5=12!5!(125)!=12!5!7!^{12} C_5 = \frac{12!}{5!(12-5)!} = \frac{12!}{5!7!}

=12×11×10×9×85×4×3×2×1=792= \frac{12 \times 11 \times 10 \times 9 \times 8}{5 \times 4 \times 3 \times 2 \times 1} = 792 teams.

(b) This is a multi-stage problem. We must choose 2 defenders AND 3 attackers (to make a team of 5).

Step 1: Choose 2 defenders from 5. Ways = 5C2=5!2!3!=10^5 C_2 = \frac{5!}{2!3!} = 10.

Step 2: Choose 3 attackers from 7. Ways = 7C3=7!3!4!=35^7 C_3 = \frac{7!}{3!4!} = 35.

Step 3: Since we need both events to happen, we multiply the results. Total teams = (Ways to choose defenders) ×\times (Ways to choose attackers) =10×35=350= 10 \times 35 = 350 teams.