A permutation is an arrangement of a set of objects in a specific order. When order matters, different arrangements of the same objects are considered different permutations. The number of permutations of n distinct objects taken r at a time is denoted by nPr. Permutations appear across mathematics and computer science, for example in counting arrangements, ordering tasks and analysing sorting algorithms.
Combination
A combination is a selection of objects where order does not matter. When only the choice of members matters and not their order, we count combinations. The number of combinations of n distinct objects taken r at a time is denoted by nCr. Combinations are used when forming committees, groups, subsets and in probability problems.
The number of all permutations of n things taken r at a time is given by:

In standard notation this is
nPr = n! ÷ (n - r)!
where n! denotes factorial of n.
The number of all combinations of n things taken r at a time is given by:

In standard notation this is
nCr = nPr ÷ r! = n! ÷ (r!(n - r)!)
Use combinations when the order of selection does not matter.


For a non-negative integer n, the factorial n! is defined by the product of all positive integers from n down to 1.
n! = n × (n - 1) × (n - 2) × ... × 2 × 1
Example:
5! = 5 × 4 × 3 × 2 × 1

nPr denotes the number of ways to select and arrange r objects from n distinct objects. The general formula is
nPr = n! ÷ (n - r)!

Common permutation cases and formulas:
nCr denotes the number of ways to select r objects from n distinct objects when order does not matter. The formula is
nCr = n! ÷ (r!(n - r)!)

Example 1. How many ways can a committee of 3 be chosen from 7 people?
Sol.
Select 3 from 7; order does not matter.
7C3 = 7! ÷ (3!4!)
Compute or simplify to obtain the numeric value.
Ans. 35
Example 2. How many distinct arrangements are there of the letters in the word BANANA?
Sol.
Total letters = 6.
If letters were all distinct, permutations = 6!.
Letters repeated: A appears 3 times and N appears 2 times.
Distinct arrangements = 6! ÷ (3! × 2!)
Ans. 60
Example 3. In how many ways can 4 students be seated in a row of 10 chairs?
Sol.
Choose 4 chairs from 10 and arrange 4 students in those chairs.
Number of ways = 10P4 = 10! ÷ 6!
Ans. 5040
Summary: Use nPr = n! ÷ (n - r)! when order matters and nCr = n! ÷ (r!(n - r)!) when order does not matter. Remember special cases such as repetition, identical objects and circular arrangements, and apply product/sum rules where appropriate.
| 1. What is the definition of a permutation? | ![]() |
| 2. How is the factorial of a number defined, and how does it relate to permutations? | ![]() |
| 3. What is the formula for calculating combinations, and how does it differ from permutations? | ![]() |
| 4. Can you provide an example of a real-world application of permutations and combinations? | ![]() |
| 5. What are some important tips for solving problems involving permutations and combinations? | ![]() |