In this article, we’ll explore the foundational concepts of permutations and combinations, provide essential formulas, and offer valuable shortcut tricks to efficiently solve problems. Whether you’re preparing for competitive exams or just curious about these concepts, this guide will make learning permutations and combinations easier.
Before diving into formulas, it’s crucial to understand the core difference between permutations and combinations:
If you need to select 2 objects from {A, B, C}, here’s how it works:
The permutation formula calculates the number of ways to arrange ‘r’ items out of ‘n’ total items:
P(n,r)=n!(n−r)!P(n, r) = \frac{n!}{(n – r)!}
This formula is used when the order of selection is important.
If you want to arrange 3 objects out of 5 (A, B, C, D, E), the number of permutations is:
P(5,3)=5!(5−3)!=5!2!=60P(5, 3) = \frac{5!}{(5 – 3)!} = \frac{5!}{2!} = 60
When some items are identical, the formula changes to:
P=n!p1!⋅p2!⋅⋯⋅pk!P = \frac{n!}{p1! \cdot p2! \cdot \dots \cdot pk!}
Where p1,p2,…,pkp1, p2, \dots, pk are the counts of identical items.
If you’re arranging items in a circle (where rotations matter), the formula becomes:
Circular Permutations=(n−1)!\text{Circular Permutations} = (n – 1)!
For non-rotational arrangements, divide by 2 if the order doesn’t matter between clockwise and counter-clockwise.
For 6 people sitting at a round table, the total arrangements are:
(6−1)!=5!=120(6 – 1)! = 5! = 120
In contrast to permutations, combinations calculate how many ways you can select ‘r’ items from a set of ‘n’ items, where the order doesn’t matter:
C(n,r)=n!r!(n−r)!C(n, r) = \frac{n!}{r!(n – r)!}
Selecting 3 people from a group of 5:
C(5,3)=5!3!(5−3)!=10C(5, 3) = \frac{5!}{3!(5 – 3)!} = 10
When repetition is allowed, the number of ways to select r items from n distinct items is:
C(n+r−1,r)C(n + r – 1, r)
This formula applies when you can choose the same item more than once.
Example 1: How many ways can you arrange the letters in the word “TIGER”?
The number of arrangements for a word with n distinct letters is simply n!.
For “TIGER,” which has 5 distinct letters:
5!=120 ways5! = 120 \text{ ways}
Example 2: In how many ways can 3 items be arranged from 5 distinct items?
First, recognize that this is a permutation problem because the order matters:
P(5,3)=5!(5−3)!=60P(5, 3) = \frac{5!}{(5 – 3)!} = 60
Example 3: In how many ways can you arrange the letters of “BBC”?
Since there are identical items (2 B’s), we adjust the permutation formula:
3!2!=3 ways(BBC,BCB,CBB)\frac{3!}{2!} = 3 \text{ ways} (BBC, BCB, CBB)
Example 4: In how many ways can two students be selected from 10 for a scholarship?
Since the order doesn’t matter, this is a combination problem:
C(10,2)=10!2!(10−2)!=45 waysC(10, 2) = \frac{10!}{2!(10 – 2)!} = 45 \text{ ways}
Example 5: A committee of 1 man and 3 women is to be formed from a group of 3 men and 4 women. How many ways can this be done?
First, calculate the number of ways to select 1 man and 3 women:
C(3,1)=3(ways to select 1 man)C(3, 1) = 3 \quad \text{(ways to select 1 man)} C(4,3)=4(ways to select 3 women)C(4, 3) = 4 \quad \text{(ways to select 3 women)}
Total ways = 3×4=123 \times 4 = 12 ways.
Example 6: 6 people are to be seated at a round table, but Sam will not sit next to Suhana. How many different ways can they sit?
Total number of circular permutations = (6−1)!=120(6 – 1)! = 120
When Sam and Suhana are seated together, treat them as a single unit:
2!×4!=48 ways2! \times 4! = 48 \text{ ways}
Thus, the required number of ways = 120−48=72120 – 48 = 72.
Understanding permutations and combinations is key to solving many types of probability and counting problems efficiently. By mastering these formulas and applying them to practice problems, you can significantly improve your problem-solving skills. If you’re preparing for competitive exams, these concepts will frequently appear.