For an interactive study experience with progress tracking, bookmarks, and solutions, try our reader.
Open in Interactive ReaderChapter Overview
This chapter is about counting without listing. Two big ideas run through everything: Permutation (order matters — ABC and BAC are different) and Combination (order doesn't matter — picking A,B,C is the same as picking C,A,B). Spot which one applies first, and the calculation becomes easy and fast.
What this chapter covers
Multiplication & Addition PrinciplesFactorial NotationLinear PermutationIdentical ObjectsCircular PermutationPermutation with RepetitionCombinationsComplementary CombinationPascal's RuleTogether & Never Together TricksAlternating / Gaps Trick
Learning Objectives
1
Tell apart situations where order matters (permutation) vs doesn't matter (combination) by asking one simple question
2
Use the multiplication principle and addition principle to break big counting problems into manageable steps
3
Apply formulas for linear permutation, identical-object permutation, and circular permutation correctly
4
Solve combination problems including committee selection and 'at least / at most' type questions
5
Recognise keyword patterns in questions (rank, arrange, choose, committee, necklace, PIN...) and match them to the right formula
6
Handle special constraints like 'must sit together', 'never together', and 'must alternate' using the bundling and gaps tricks
The One Question That Solves Everything
Key Insight
Before touching any formula, ask yourself: "If I swap two of the chosen items, do I get a different result?"
If YES → the order matters → use Permutation.
If NO → the order doesn't matter → use Combination.
If YES → the order matters → use Permutation.
If NO → the order doesn't matter → use Combination.
Example: Arranging 3 students in a line — swapping gives a different line → Permutation. Picking a committee of 3 — swapping gives the same group → Combination.
Key Definitions
Permutation
An arrangement of items where order matters. ABC and BAC are two different permutations of the same three letters. Think: positions are labelled.
Combination
A selection of items where order does not matter. {A, B, C} and {C, A, B} are the same combination. Think: we only care who's in the group, not who stands where.
Factorial (n!)
The product of all positive integers from 1 up to n. It counts the total ways to arrange n distinct objects in a line.
$$n! = n \times (n-1) \times (n-2) \times \cdots \times 2 \times 1, \qquad 0! = 1$$
Multiplication Principle
If task A can be done in m ways AND task B in n ways (independently), then both together can be done in m × n ways. Use this when steps happen one after another.
Addition Principle
If task A can be done in m ways OR task B in n ways (mutually exclusive — not both at once), then the total is m + n ways. Keywords: OR, either, at least, choose one type.
Mutually Exclusive
Two events that cannot happen at the same time. When events are mutually exclusive, you add their counts. Example: picking a red ball or a blue ball from a bag.
Permutation vs Combination — Side by Side
The most important distinction in this entire chapter. Study this table until the difference feels natural.
Permutation P(n, r)
$$P(n,r) = \dfrac{n!}{(n-r)!}$$
Order matters — ABC ≠ BAC ≠ CAB
Same items in different order = different result
Keywords: arrange, rank, order, sequence, line up, position
Examples: seating arrangement, forming a queue, choosing officers (President, VP, Sec)
Always ≥ C(n,r) because every combination produces r! permutations
VS
Combination C(n, r)
$$C(n,r) = \dfrac{n!}{r!(n-r)!}$$
Order doesn't matter — {A,B,C} = {C,A,B}
Same items in any order = same result
Keywords: choose, select, pick, committee, team, group, handshake
Examples: forming a committee, selecting players for a team, drawing cards
Always ≤ P(n,r) — it's permutation divided by r!
Memory trick: Permutation → Positions are labelled. Combination → Crowd, no labels.
Formula Sheet — All Formulas with Full Derivations
Linear Permutation
$$P(n,r) = \frac{n!}{(n-r)!}$$
Arranging r items chosen from n distinct items. Order matters, no repetition.
Permutation of Identical Objects
$$\frac{n!}{p! \; q! \; r! \; \cdots}$$
Arranging all n items when some are identical. Divide by factorial of each repeated group.
Circular Permutation
$$(n-1)!$$
Arranging n distinct items around a fixed circle (like a round table that cannot be flipped).
Circular — Flippable (Necklace / Bracelet)
$$\frac{1}{2}(n-1)!$$
Use when the circular object can be physically flipped over — necklaces, bracelets, garlands.
Permutation with Repetition
$$n^r$$
Filling r positions from n options when repetition is allowed (PINs, passwords, codes, mailboxes).
Combination
$$C(n,r) = \frac{n!}{r!(n-r)!}$$
Selecting a group of r from n items where order does not matter.
Complementary Combination
$$C(n,r) = C(n,\, n-r)$$
Powerful shortcut when r is large (e.g. C(20,17) = C(20,3) — much easier to compute).
Pascal's Rule
$$C(n,\,r-1) + C(n,\,r) = C(n+1,\,r)$$
Used in algebraic proofs, the binomial theorem, and Pascal's Triangle.
Which Formula Should I Use?
When you read a question, walk through these decision points in order. Each branch leads to the correct formula.
Is repetition allowed? (codes, PINs, passwords, mailboxes)
Yes
Use n^r — each of the r positions independently has n choices
No
Continue to next question ↓
Are items arranged in a CIRCLE? (round table, necklace, garland)
Yes
Round table → (n−1)! | Necklace/bracelet → ½(n−1)!
No
Continue to next question ↓
Does ORDER matter? (arranging, ranking, lining up, positions are labelled)
Yes
Use Permutation → P(n,r) = n! / (n−r)!
No
Use Combination → C(n,r) = n! / r!(n−r)!
Are there IDENTICAL / REPEATED items in the arrangement?
Yes
Divide n! by the factorial of each repeated group: n! / (p! × q! × ...)
No
Use the standard P or C formula from above
The 'Must Stay Together' and 'Never Together' Tricks
Trick: Items forced together → bundle them. Items that must stay apart → subtract the together-count from the total.
Steps to Remember:
- Together: Treat the 'must stay together' group as one single block. Now you have fewer total units to arrange. After arranging the units, multiply by the number of ways to internally arrange the members of the block.
- Never Together: Total arrangements (no restriction) − Arrangements where the forbidden items ARE together (calculated using the bundle method above).
- Example — Together: 5 people, A and B must be adjacent. Bundle AB as 1 unit → 4 units total. Circular: $(4-1)! = 6$. Internal swaps of A,B: $2! = 2$. Total: $6 \times 2 = 12$.
- Example — Never Together: Total circular arrangements of 5 = $(5-1)! = 24$. Minus arrangements where A,B are together = 12. Answer: $24 - 12 = 12$.
Mnemonic: Together = bundle into one block, then multiply by internal arrangements. Never Together = Total − Together.
The 'No Two Alike Adjacent' / Alternating / Gaps Trick
Trick: Place the larger group first to build gaps. Then drop the smaller group into those gaps — one per gap.
Steps to Remember:
- Step 1: Arrange the larger group in a line first. This creates gaps: one before the first person, one between each pair, and one after the last. For n people in a line, this gives (n+1) gaps.
- Step 2: Place members of the smaller group one per gap using permutation. Since gaps are distinct positions, use $P(\text{gaps}, \text{smaller group size})$.
- Step 3: Multiply both counts using the Multiplication Principle.
- Example: 5 boys and 4 girls, no two girls adjacent. Arrange 5 boys: $5! = 120$. Gaps created: 6 (_B_B_B_B_B_). Place 4 girls in 6 gaps: $P(6,4) = 360$. Total: $120 \times 360 = 43,200$.
- Circular version: Fix the larger group in a circle first → $(n-1)!$ ways. Now there are exactly n gaps between them (equal to group size). Place smaller group in n gaps → $n!$ ways. Multiply.
Mnemonic: Bigger group first builds the gaps. Smaller group fills the gaps. Gaps in line = n+1. Gaps in circle = n.
Common Mistakes
These mistakes account for the most lost marks in NEB exams for this chapter. Read each one carefully.
- P vs C confusion — Always ask: 'does swapping two of the chosen items change the outcome?' Yes → P. No → C. Don't guess based on the feel of the question.
- Forgetting ÷2 for necklaces and bracelets — A round table cannot be flipped, so use $(n-1)!$. A necklace or bracelet CAN be flipped, so use $\frac{1}{2}(n-1)!$. Garlands also follow the bracelet rule.
- Forgetting internal arrangements inside a bundle — When items are grouped together, always multiply by the factorial of the bundle size. If A and B are bundled, multiply by $2! = 2$ for their internal swap.
- 'At least / at most' handled wrong — These must be split into separate mutually exclusive cases and added together. Never try to handle 'at least 2' with one single formula.
- 0! = 1, not 0 — This trips up many students. $0!$ is defined as 1 by convention. Without this, $P(n,n) = n!/0!$ would break.
- Digit problems where 0 cannot be the leading digit — Always handle the first position separately. The first digit of a number cannot be 0 or the number has fewer digits than expected.
NEB Exam Traps — These Appear Every Year
NEB Exam Warning
Board examiners deliberately test these edge cases. Students who don't know them lose 1–3 marks per question.
- Bracelet/necklace question asks for 'arrangements' — students use $(n-1)!$ and forget the ÷2. Always confirm: can this object be flipped?
- Committee question with gender restrictions — students add instead of multiply. Use multiplication principle: (men choices) × (women choices).
- 'At least one' type — students subtract from total. This works, but only if you subtract the correct complement. Wrong complement → wrong answer.
- Identical letters word problem — students forget to divide by the factorial of EACH repeated letter, not just the most frequent one. ENGINEERING has E×3, N×3, G×2, I×2 — all four must be divided.
- Circular arrangement where one person is 'fixed' — some students still divide by n. If one person is already fixed, treat it as a linear arrangement of the remaining (n−1) people.
- Pascal's Rule proof — if asked for 'combinatorial proof', use the committee argument (include/exclude one person). If asked for 'algebraic proof', use factorials and find the common denominator.
Question Recognition Guide
| Keyword / Phrase in Question | Use This |
|---|---|
| Arrange / line up / rank / order people or letters | Linear Permutation → P(n,r) |
| Word has repeated letters (APPLE, ENGINEERING, MATHEMATICS) | Identical Objects → n! ÷ (p! × q! × ...) |
| Round table / circular seating (not flippable) | Circular Permutation → (n−1)! |
| Necklace / bracelet / garland (can be flipped) | Flippable Circle → ½(n−1)! |
| Codes / PINs / passwords / passwords / mailboxes — repetition allowed | Repetition → n^r |
| Committee / team / group / handshake / draw cards — no positions | Combination → C(n,r) |
| 'must sit / stand together' constraint | Bundle Trick → treat group as 1 block |
| 'never together' / 'must not be adjacent' | Total − Together (using bundle trick for 'together') |
| 'no two alike sit adjacent' / 'alternate' / 'boys and girls alternating' | Gaps Trick → seat larger group first, fill gaps |
| 'at least' / 'at most' / 'exactly k' | Split into cases, add using Addition Principle |
| Diagonals of a polygon / handshakes in a group | C(n,2) − n (for diagonals) or C(n,2) (for handshakes) |
| C(n, x) = C(n, y) and x ≠ y | Complementary rule: n = x + y |
| C(n, r−1) + C(n, r) — asked to simplify | Pascal's Rule → C(n+1, r) |
Why Circular Arrangements ÷ n?
Below are 5 people (A, B, C, D, E) seated in a circle. If everyone rotates one seat clockwise, the circle looks exactly the same — same neighbours, same relative positions. There are n=5 such rotations, each producing an identical-looking arrangement. That's why we divide n! by n to get (n−1)!
Both circles show the same relative arrangement (A next to B and E, B next to A and C, etc.) — rotating everyone one seat doesn't change anything. 5 such rotations exist, so we divide 5! by 5 = 4!
Solved Examples (Easy → Hard)
1
In how many ways can the letters of the word 'APPLE' be arranged?
Easy
2
5 friends sit around a circular table. A and B must always sit next to each other. How many arrangements are possible?
Medium
3
How many 3-digit even numbers can be formed from the digits 1, 2, 3, 4, 5 without repetition?
Medium
4
A committee of 5 must be selected from 6 teachers and 8 students such that it includes at least 2 teachers. In how many ways?
Hard
5
In how many ways can the letters of the word 'ENGINEERING' be arranged?
Hard
MCQ Practice
Mixed Level — MCQ
1
A room has 5 doors. In how many ways can a person enter through one door and exit through a different door?
Correct!
Incorrect. Correct: 20
2
If C(n, 12) = C(n, 8), what is the value of n?
Correct!
Incorrect. Correct: 20
3
In how many ways can 6 different coloured beads form a bracelet?
Correct!
Incorrect. Correct: 60
4
How many handshakes occur in a room of 15 people if everyone shakes hands with everyone else exactly once?
Correct!
Incorrect. Correct: 105
5
The value of C(10, 4) + C(10, 5) equals:
Correct!
Incorrect. Correct: C(11, 5)
6
How many 3-digit numbers can be formed using digits 1, 2, 3 if repetition is allowed?
Correct!
Incorrect. Correct: 27
7
Out of 8 consonants and 4 vowels, how many ways can we select 3 consonants and 2 vowels?
Correct!
Incorrect. Correct: 336
8
You want to seat 5 people at a round table where A and B must sit together. How many ways?
Correct!
Incorrect. Correct: 12
9
There are 4 math books and 3 science books. If you choose exactly 1 book to read, how many choices?
Correct!
Incorrect. Correct: 7
10
The value of 0! is:
Correct!
Incorrect. Correct: 1
Short Questions (2 Marks Each)
1
Find the value of n if P(n, 3) = 6 × P(n, 2).
[2 marks]
2
In how many ways can 5 boys and 4 girls be arranged in a straight line so that no two girls are adjacent?
[2 marks]
3
In how many ways can 8 people be seated around a circular table?
[1 marks]
4
A box contains 5 red balls and 6 black balls. In how many ways can 3 balls of the same colour be drawn?
[2 marks]
5
How many 4-digit numbers can be formed using digits 0, 2, 4, 6, 8 without repetition?
[2 marks]
6
Find the number of diagonals in a decagon (10-sided polygon).
[2 marks]
7
If C(15, r) = C(15, 2r − 3), find the value of r.
[2 marks]
8
Prove that C(n, r) = P(n, r) / r!
[2 marks]
9
In how many ways can you drop 4 distinct letters into 6 different mailboxes?
[1 marks]
10
How many words can be formed using all letters of 'ENGINEERING'?
[2 marks]
Long Questions (3 Marks Each)
1
In how many ways can the letters of 'MATHEMATICS' be arranged so that all vowels always come together?
[3 marks]
2
From 6 teachers and 8 students, a committee of 5 must include at least 2 teachers. How many ways?
[3 marks]
3
Find the number of ways 5 gentlemen and 5 ladies can be seated at a round table so that they alternate.
[3 marks]
4
In how many ways can the letters of 'SOCIOLOGICAL' be arranged so that all 3 O's never come together?
[3 marks]
5
An exam has 12 questions: Section A has 7, Section B has 5. A student must attempt 8 total with at least 3 from each section. How many ways?
[3 marks]
6
If P(n, r) = 2520 and C(n, r) = 21, find n and r.
[3 marks]
7
How many 5-digit odd numbers can be formed from 1, 2, 3, 4, 5, 6, 7 without repetition?
[3 marks]
8
A committee of 6 is formed from 7 men and 5 women with exactly 4 men. How many ways?
[3 marks]
9
Prove Pascal's Rule algebraically: C(n, r−1) + C(n, r) = C(n+1, r).
[3 marks]
10
A cricket squad of 15: captain and wicket-keeper must be included; 2 injured players must be excluded. Select 11 players. How many ways?
[3 marks]
Past NEB Board Questions
Past NEB Board Questions
1
Find the number of ways 5 boys and 4 girls can be arranged in a row so that no two girls sit together.
NEB 2079
[3 marks]
2
Prove that C(n, r−1) + C(n, r) = C(n+1, r). [Combinatorial Proof]
NEB 2078
[3 marks]
3
In how many ways can the letters of 'MATHEMATICS' be arranged so that all vowels come together?
NEB 2077
[3 marks]
Chapter Test — Full Mixed Paper
Attempt this test in 45 minutes without looking at notes. Then check your solutions.
1
Section A — MCQs (1 Mark Each)
Mixed Level — MCQ
1
The value of 0! is:
Correct!
Incorrect. Correct: 1
2
In how many ways can 4 people sit around a circular table?
Correct!
Incorrect. Correct: 6
3
C(10, 3) equals:
Correct!
Incorrect. Correct: 120
2
Section B — Short Questions (2 Marks Each)
1
How many diagonals does a decagon (10 sides) have?
[2 marks]
2
Find n if C(n, 2) = 21.
[2 marks]
3
Section C — Long Questions (3 Marks Each)
1
Find the number of ways 5 gentlemen and 5 ladies can be seated at a round table so that they alternate.
[3 marks]
2
In how many ways can 6 men and 4 women be arranged in a row so that no two women are adjacent?
[3 marks]
One-Page Revision Cheat Sheet
1
Swap test first: Swapping chosen items changes outcome? → P. Doesn't change? → C.
2
Repetition allowed? → Use $n^r$ (codes, PINs, mailboxes).
3
Linear arrangement: $P(n,r) = n!/(n-r)!$ — order matters, no repeats.
4
Identical letters/objects: $n! \div (p! \times q! \times \cdots)$ — divide by each repeat group.
5
Round table (fixed): $(n-1)!$ — fix one person, arrange the rest.
6
Necklace / Bracelet (flippable): $\frac{1}{2}(n-1)!$ — divide by 2 extra.
7
Selection (group): $C(n,r) = n! \div [r!(n-r)!]$ — order doesn't matter.
8
Complementary shortcut: $C(n,r) = C(n,n-r)$ — use when r is large.
9
Pascal's Rule: $C(n,r-1) + C(n,r) = C(n+1,r)$.
10
Together trick: Bundle into 1 block → arrange blocks → × internal arrangements.
11
Never together: Total − Together.
12
No two adjacent / alternate: Seat larger group first → count gaps → fill gaps with P.
13
At least / at most: Split into separate cases, add with Addition Principle.
14
AND → multiply. OR (exclusive) → add.
15
Diagonals of n-gon: $C(n,2) - n = n(n-3)/2$. Handshakes in n people: $C(n,2)$.
Static SEO Version
Next