This chapter explains permutations and related counting techniques clearly and step-by-step. It begins with the basic principles of counting, defines factorial and permutation, lists important results and formulae used repeatedly in problems, and then covers special topics such as division into groups and circular permutations. Worked examples illustrate the methods used in school examinations and competitive tests.
If a task can be completed by performing two successive operations so that the first operation can be done in m ways and for each choice of the first, the second can be done in n ways, then the combined task can be done in m × n ways. This principle extends to any finite sequence of operations: if there are m1, m2, ..., mk ways for the 1st, 2nd, ..., k-th operations respectively, then the total number of ways is m1 × m2 × ... × mk.
If a task can be completed by doing one of two mutually exclusive operations, the first in m ways and the second in n ways, then the task can be done in m + n ways. This extends to any finite number of mutually exclusive choices.
For any natural number n, the factorial of n, written n!, is defined by the product
n! = n × (n - 1) × (n - 2) × ... × 3 × 2 × 1.
By convention, 0! = 1 and therefore 1! = 1.
Each different arrangement (ordering) of some or all of a collection of objects is called a permutation.
The number of ways of arranging n distinct objects in order, taking r at a time (where 0 ≤ r ≤ n), is denoted by P(n, r) or nPr. The formula is
P(n, r) = n × (n - 1) × ... × (n - r + 1) = n! / (n - r)!
Two groups of sizes m and n
The number of ways in which (m + n) distinct objects can be divided into two groups containing m and n objects respectively is the binomial coefficient
(m + n)! / (m! n!)
Three groups of sizes m, n and p
The number of ways to divide (m + n + p) distinct objects into three groups of sizes m, n, p respectively is the multinomial coefficient
(m + n + p)! / (m! n! p!)
Equal groups of size n
If we divide 2n distinct objects into two groups each of size n, then
Similarly, for mn distinct objects divided equally into m groups each of size n:
Distributing n distinct objects into r distinct groups with none empty
The number of ways of assigning n distinct objects to r distinct groups so that no group is empty is given by inclusion-exclusion:
rn - C(r,1)(r - 1)n + C(r,2)(r - 2)n - ... + (-1)r-1 C(r, r - 1)1n
This counts functions from an n-set to an r-set that are surjective (every group receives at least one object).
In a circular permutation the arrangements are considered equivalent under rotation. We usually fix a reference position or treat rotations as identical to avoid counting identical rotations multiple times.
Find the number of different 4-letter arrangements (words) that can be formed from the letters A, B, C, D, E if repetition is not allowed.
Sol.
There are 5 distinct letters and we need ordered arrangements of 4 letters.
Use the formula for permutations without repetition: P(5, 4) = 5! / (5 - 4)!.
Compute P(5, 4) = 5 × 4 × 3 × 2 = 120.
Therefore, 120 different 4-letter arrangements are possible.
How many distinct words (arrangements) can be formed using all letters of the word BALLOON?
Sol.
Count letters: B, A, L, L, O, O, N → total n = 7 letters.
Identical letters: two L's and two O's. All other letters are distinct.
Number of distinct permutations = 7! / (2! × 2!).
Compute numerator and denominator to find the value (arithmetic simplification optional here).
In how many ways can 5 persons be seated around a round table?
Sol.
For seating around a round table where rotations are considered identical, use (n - 1)! for n distinct persons.
Here n = 5, so number of distinct seatings = (5 - 1)! = 4! = 24.
From 8 students, a committee of 3 is to be chosen and a president is to be appointed from the committee. How many ways are possible?
Sol.
First choose the 3 committee members in C(8, 3) ways.
For each chosen committee, choose a president from the 3 members in 3 ways.
Total number = C(8, 3) × 3.
Compute value if required: C(8, 3) = 56, so total = 56 × 3 = 168.
Summary
The basic counting principles-addition and multiplication-combined with factorials and permutation formulae allow you to count ordered arrangements efficiently. Special cases to remember are permutations with repetition, permutations with identical objects, block arrangements (objects together or apart), division into labelled or unlabelled groups, and circular permutations. Practice problems that mix these ideas will build fluency.
| 1. What is a permutation? | ![]() |
| 2. How do you calculate the number of permutations? | ![]() |
| 3. What is the difference between a permutation and a combination? | ![]() |
| 4. Can repetitions be allowed in permutations? | ![]() |
| 5. In how many ways can you arrange the letters of the word "MISSISSIPPI"? | ![]() |