11.3 Arrangement and Selection Problems


2026 📋 Syllabus Objectives

By the end of this topic, you should be able to:

  • Solve problems involving arrangements (where order matters) using permutations
  • Solve problems involving selections (where order does not matter) using combinations
  • Apply these skills to everyday context problems (e.g. choosing teams, forming codes)
  • Apply these skills to algebraic problems (e.g. solving equations with nPr or nCr)

Note: You will NOT be tested on: repeated objects, circular arrangements, or problems that mix both permutations and combinations in a single question.


Section 1: Quick Recap — Factorial Notation

Before solving arrangement and selection problems, you need to understand factorial notation.

The factorial of a number n (written as n!) means you multiply that number by every positive whole number below it, all the way down to 1.

n!=n×(n1)×(n2)××2×1n! = n \times (n-1) \times (n-2) \times \dots \times 2 \times 1

Examples:

  • 3!=3×2×1=63! = 3 \times 2 \times 1 = 6
  • 5!=5×4×3×2×1=1205! = 5 \times 4 \times 3 \times 2 \times 1 = 120
  • 0!=10! = 1 ← This is a special rule you must memorise

A useful shortcut:

n!=n×(n1)!n! = n \times (n-1)!

For example: 7!=7×6!7! = 7 \times 6!

This shortcut is very helpful when simplifying fractions involving factorials.


Section 2: What Is a Permutation?

A permutation is an arrangement of items where order matters.

Think of it this way: if you are choosing 3 people to stand in a line for a photo, the positions matter. Person A standing first is different from Person A standing last. So the order changes the outcome — this is a permutation.


The Permutation Formula

The number of ways to arrange r items chosen from n items (where order matters) is:

nPr=n!(nr)!^nP_r = \frac{n!}{(n-r)!}

  • n = total number of items available
  • r = how many you are choosing and arranging

Step-by-step logic behind the formula:

Imagine you have 8 letters and you want to arrange 3 of them in a row.

  • For the 1st space: you have 8 choices
  • For the 2nd space: 7 choices remain
  • For the 3rd space: 6 choices remain

Total = 8×7×6=3368 \times 7 \times 6 = 336

Using the formula: 8P3=8!(83)!=8!5!=8×7×6=336^8P_3 = \dfrac{8!}{(8-3)!} = \dfrac{8!}{5!} = 8 \times 7 \times 6 = 336

Sign in to view full notes