Permutations and Combinations hero

Permutations and Combinations

~14 min read

In 30 seconds
  • What: Permutations and Combinations count arrangements (order matters) and selections (order does not matter) of objects — built on factorials and the \(^{n}P_{r}\) / \(^{n}C_{r}\) formulas.
  • Why it matters: The topic has appeared in every NDA paper from 2010 to 2025, contributing 2–5 questions per paper across both NDA I and NDA II.
  • Key fact: \(^{n}P_{r} = r! \cdot {}^{n}C_{r}\), so permutation questions can always be linked back to combinations — knowing this connection speeds up calculations under exam pressure.

Permutations and Combinations is one of the most consistently tested topics in NDA Mathematics. If you track the PYQ data from 2010 through 2025, you will find that almost no paper skips it. The questions range from straightforward formula substitution — how many ways can 6 girls be seated in two chairs? — to multi-step logic involving words, polygons, and restricted selections. This guide walks through every concept you need, grounded entirely in actual NDA questions.

What This Topic Covers

The NDA syllabus groups this chapter under Algebra and it tests three overlapping ideas: counting principles, permutations, and combinations. You need to be comfortable switching between them in a single question.

Core areas tested in NDA

  • Factorial notation and its properties (including trailing zeros in \(n!\))
  • Fundamental principle of counting (multiplication and addition rules)
  • \(^{n}P_{r}\) — arrangements of \(r\) objects from \(n\) distinct objects
  • \(^{n}C_{r}\) — selections of \(r\) objects from \(n\) distinct objects
  • Circular permutations
  • Permutations of objects with repetitions (words with repeated letters)
  • Combinations with constraints — always include / always exclude a specific item
  • Geometric applications — triangles, diagonals, straight lines from collinear points
  • Distribution problems — distributing identical or distinct tickets/objects
  • Rank of a word in dictionary order

The topic also connects directly to Probability — sample spaces are often computed using \(^{n}C_{r}\) — and to Binomial Theorem, where the binomial coefficients are combination values. Understanding this chapter well gives you a compounding advantage across multiple topics.

Exam Pattern & Weightage

The table below is built entirely from the PYQ file. Each row shows the approximate question count for that year's paper.

Year Paper No. Notable question types
2010 I & II 3 Flags / signals, committee selection, total combinations of n things
2011 I & II 5 Seating 6 girls in 2 chairs, value of n from P ratio, word NATION, votes for 4 candidates
2012 I & II 2 Boys-girls alternate seating, permutations of BASEBALL
2013 I 2 P(77,31) vs C(77,31), GLOOMY two O's not together
2014 I & II 4 Words from consonants+vowels, AGAIN starting with A, posting 5 letters, cricket team of 11
2015 I & II 5 NATION vowels never together, relations B to A, AGAIN 50th dictionary word, captain always included, polygon with 44 diagonals
2016 I & II 5 Holiday tickets to employees, decimal numbers, messages with 0s and 1s, collinear triangles, 5-digit divisible by 3
2017 I & II 3 EQUATION 8-letter words, PERMUTATION distinct arrangements, tea party seating
2018 I & II 5 3-digit from {5,6,7,8,9}, 4-digit divisible by 10, triangles from 12 points, bowler selection, 5-digit distinct
2019 I & II 5 Straight lines from 10 points, typists recruitment, 3-digit even, diagonals of octagon, P(n,r)=2520 C(n,r)=21
2020 I 3 C(20, n+2)=C(20, n-2), ABLE vowels on even places, circles intersection
2021 I & II 8 Team excluding a player, 5-digit primes, 3-digit from S less than 500, a_n=n(n!), 5-digit with digits 3579, C(n,4)/C(n,5)/C(n,6) in AP, 4-letter words LUCKNOW, circles & triangles
2022 I & II 7 TIGER vowels not on even positions, exclude 2 players, sum of 2^n C(n,r), MATHEMATICS dictionary rank, QUESTION word set questions
2023 I & II 6 Wilson's theorem, C(n,r) greatest condition, parallelograms from parallel lines, PERMUTATIONS vs COMBINATIONS, factorial sum remainders
2024 I & II 8 Sum of 4-digit numbers, relatives invitation, triangles on sides of triangle PQR, all-even 4-digit numbers, divisible by 4, all-odd 4-digit, INDIA vowels on odd positions, EQUATION consonants+vowels together
2025 I & II 8 CAPITAL consonants together, polygon with 20 diagonals, DELHI fixed vowel+consonant positions, x+y+z=5 positive integer solutions, selection of atmost 3 from 6, (z/y)=120 factorial, trailing zeros in n!, 4-digit divisible by 4
⚡ NDA Alert

From 2021 onwards, NDA papers have started clustering 2–3 questions on the same base scenario (like the QUESTION word set in 2022 or the 8-points-on-plane set in 2025). Read all parts of a set carefully before solving any one part — the constraints often carry over.

Core Concepts

Factorial

The factorial \(n!\) is the product of all positive integers from 1 to \(n\). By definition, \(0! = 1\). Factorials grow extremely fast: \(10! = 3{,}628{,}800\). The number of trailing zeros in \(n!\) equals the number of times 5 is a factor, calculated as \(\lfloor n/5 \rfloor + \lfloor n/25 \rfloor + \lfloor n/125 \rfloor + \cdots\)

Factorial $$n! = n \cdot (n-1) \cdot (n-2) \cdots 2 \cdot 1, \quad 0! = 1$$

Permutations — \(^{n}P_{r}\)

A permutation is an ordered arrangement. When you pick \(r\) objects from \(n\) distinct objects and the order in which you pick them matters, you use \(^{n}P_{r}\). For instance, seating 6 girls in 2 chairs is \(^{6}P_{2} = 6 \times 5 = 30\) — exactly the answer from the 2011-I paper.

Permutation Formula $$^{n}P_{r} = \frac{n!}{(n-r)!}, \quad 0 \le r \le n$$

Special case: arranging all \(n\) distinct objects gives \(^{n}P_{n} = n!\). So 6 distinct books on a shelf can be arranged in \(6! = 720\) ways.

Combinations — \(^{n}C_{r}\)

A combination is an unordered selection. When the order does not matter, you use \(^{n}C_{r}\). Selecting a cricket team of 11 from 15 players is \(^{15}C_{11} = 1365\) — from the 2014-II paper.

Combination Formula $$^{n}C_{r} = \frac{n!}{r! \, (n-r)!}, \quad 0 \le r \le n$$
⚡ NDA Alert

The first decision in any counting question is P vs C: order matters → permutation, order doesn't → combination. Seating, arranging letters, ranking, forming numbers all use P. Teams, committees, sub-sets, "selecting" 3 from 8 all use C. Mis-classifying this in the first 5 seconds wastes the whole question.

Key Relationship $$^{n}P_{r} = r! \cdot {}^{n}C_{r}$$

This relationship was directly tested in 2013-I: if \(^{77}P_{31} = x\) and \(^{77}C_{31} = y\), then \(x = 31! \cdot y\), so \(x > y\). The answer is option (d).

Important Combination Properties

Symmetry $$^{n}C_{r} = {}^{n}C_{n-r}$$
Equality Rule If \(^{n}C_{x} = {}^{n}C_{y}\), then either \(x = y\) OR \(x + y = n\).

This rule cracks open the entire 2020-I question — \(^{20}C_{n+2} = {}^{20}C_{n-2}\) implies \((n+2) + (n-2) = 20\), so \(n = 10\). No factorial expansion needed.

Pascal's Identity $$^{n}C_{r} + {}^{n}C_{r-1} = {}^{n+1}C_{r}$$
Sum of All Combinations $$^{n}C_{0} + {}^{n}C_{1} + {}^{n}C_{2} + \cdots + {}^{n}C_{n} = 2^{n}$$

The 2011-I paper asked for the total number of combinations of \(n\) different things taken \(1, 2, 3, \ldots, n\) at a time. The answer is \(2^{n} - 1\) (subtracting \(^{n}C_{0} = 1\) for the empty selection).

Binomial Sum with Powers $$\sum_{r=0}^{n} 2^{r} \cdot {}^{n}C_{r} = 3^{n}$$

This appeared in 2022-I. The sum equals \((1+2)^{n} = 3^{n}\) by the binomial theorem with \(x = 2\).

Permutations with Repeated Letters

When objects repeat, divide by the factorial of each repetition count. BASEBALL has 8 letters — 2 B's, 2 A's, 2 L's — giving \(\frac{8!}{2! \cdot 2! \cdot 2!} = 5040\) arrangements (2012-II). PERMUTATION has 11 letters with T repeated twice: \(\frac{11!}{2!} = 19{,}958{,}400\) arrangements (2017-II).

Repeated Letters $$\text{Arrangements} = \frac{n!}{p!\,q!\,r!\,\cdots}$$
⚡ NDA Alert

If you forget to divide by \(p!\,q!\,r!\) you overcount by a huge factor. ASSASSINATION has 13 letters with A×3, S×4, I×2, N×2 — total = \(\frac{13!}{3! \cdot 4! \cdot 2! \cdot 2!}\). Skipping the divisor would give \(13! = 6.2\) billion, off by a factor of 3456.

Circular Permutations

When objects are arranged in a circle, one position is fixed to remove rotational equivalence. For \(n\) distinct objects in a circle: \((n-1)!\) arrangements. The tea party seating question (2017-II) uses this principle extended to two sides of a table.

Circular Arrangement $$\text{Circle: } (n-1)! \quad\quad \text{Necklace / garland: } \frac{(n-1)!}{2}$$

The necklace divisor of 2 accounts for clockwise vs anti-clockwise being the same arrangement when the necklace is flipped. A round table with no flip uses \((n-1)!\); a beaded necklace uses \(\frac{(n-1)!}{2}\).

Distribution Problems

When distributing \(n\) distinct objects into \(r\) distinct boxes (or sending \(n\) letters into \(r\) letterboxes) with no restriction, each object independently goes to any box: \(r^{n}\) ways. Posting 5 letters into 7 letterboxes = \(7^{5} = 16{,}807\) (2014-II). Giving 3 holiday tickets to 20 employees where each can get any number = \(20^{3} = 8{,}000\) (2015-I).

Geometric Applications

These appear almost every year and follow fixed patterns:

Number of Diagonals in n-sided Polygon $$\text{Diagonals} = {}^{n}C_{2} - n = \frac{n(n-3)}{2}$$
Triangles from Points (some collinear) $$\text{Triangles} = {}^{\text{total}}C_{3} - {}^{\text{collinear}}C_{3}$$
Parallelograms from Two Sets of Parallel Lines $$\text{Parallelograms} = {}^{m}C_{2} \cdot {}^{n}C_{2}$$

The 2015-II paper gave 44 diagonals and asked for the number of sides. Setting \(\frac{n(n-3)}{2} = 44\) gives \(n^{2} - 3n - 88 = 0\), so \((n-11)(n+8) = 0\), meaning \(n = 11\). Similarly in 2025-I, 20 diagonals gives \(n^{2} - 3n - 40 = 0\), so \(n = 8\).

⚡ NDA Alert

When points are collinear, NDA questions always subtract the degenerate cases. From 12 points with 7 collinear (2018-I): triangles = \(^{12}C_{3} - {}^{7}C_{3} = 220 - 35 = 185\). Never forget to subtract.

Constrained Selections

These are some of the most frequent question types. Always include a specific item: reduce \(n\) by 1 and choose \(r-1\) from the rest. Always exclude: reduce \(n\) by 1 and choose \(r\) from the rest.

Selecting 5 from 8 players excluding one particular player (2021-I): that player is out, so choose 5 from the remaining 7 = \(^{7}C_{5} = 21\).

If captain is always included in a team of 11 from 15 (2015-II): captain is fixed, choose 10 from remaining 14 = \(^{14}C_{10} = 1001\).

Worked Examples

Example 1 — Finding n from a P-ratio (2011-I)

Question: What is the value of \(n\) if \(^{15}P_{n-1} : {}^{16}P_{n-2} = 3 : 4\)?

  • Write \(^{15}P_{n-1} = \dfrac{15!}{(16-n)!}\) and \(^{16}P_{n-2} = \dfrac{16!}{(18-n)!}\).
  • Set up the ratio: $$\frac{15!/(16-n)!}{16!/(18-n)!} = \frac{3}{4}.$$
  • Simplify: $$\frac{(18-n)!}{16 \cdot (16-n)!} = \frac{3}{4}.$$
  • Since \((18-n)! = (18-n)(17-n)(16-n)!\), this gives \((18-n)(17-n) = 12\).
  • Expand: \(n^{2} - 35n + 294 = 0\), so \((n-14)(n-21) = 0\).
  • Since \(n \le 15\) (so that \(^{15}P_{n-1}\) is defined), \(n = 14\). Answer: (c).

Example 2 — Words with repeated letters: GLOOMY (2013-I)

Question: In how many ways can the letters of GLOOMY be arranged so that the two O's are not together?

  • Total letters in GLOOMY = 6, with O repeated twice. Total arrangements = \(\dfrac{6!}{2!} = 360\).
  • Treat the two O's as a single unit. Now 5 units (OO, G, L, M, Y) arranged in \(5! = 120\) ways.
  • Inside the unit, the two O's are identical, so no extra factor needed.
  • Arrangements with O's together = 120.
  • Arrangements with O's NOT together = \(360 - 120 = 240\). Answer: (a).

Example 3 — Geometric: triangles from PQR sides (2024-I)

Question: Triangle PQR has 3 points on PQ, 4 on QR, and 5 on RP. How many triangles can be formed using these points as vertices?

  • Total points = \(3 + 4 + 5 = 12\).
  • Total ways to choose 3 points = \(^{12}C_{3} = 220\).
  • Points on the same side are collinear so they cannot form a triangle. Subtract degenerate selections.
  • Collinear sets: \(^{3}C_{3} + {}^{4}C_{3} + {}^{5}C_{3} = 1 + 4 + 10 = 15\).
  • Valid triangles = \(220 - 15 = 205\). Answer: (a).

Example 4 — Rank of word in dictionary (2015-II)

Question: Letters of AGAIN arranged alphabetically — what word is at the 50th position?

  • Letters in sorted order: A, A, G, I, N. Note A repeats twice.
  • Words starting AA: \(\dfrac{3!}{1!} = 6\). Words starting AG: \(\dfrac{3!}{2!}\) (two A's) … actually \(3! = 6\). Total AA = 6, AG = 6, AI = 6, AN = 6, GA = 6, GI = 3 (two equal letters AA), GN = 3, IA = 6, IG = 3, IN = 3, NA = 6. Cumulative up through NA = 54.
  • After the first 48 words (through IN = 3 gives cumulative 48), words starting NA begin.
  • 49th word = NAAGI, 50th word = NAAIG. Answer: (b).

Example 5 — \(^{n}C_{4}, {}^{n}C_{5}, {}^{n}C_{6}\) in AP (2021-II)

Question: If \(^{n}C_{4}, {}^{n}C_{5}\) and \(^{n}C_{6}\) are in AP, what is \(n\)?

  • AP condition: \(2 \cdot {}^{n}C_{5} = {}^{n}C_{4} + {}^{n}C_{6}\).
  • Divide through by \(^{n}C_{4}\): $$2 \cdot \frac{{}^{n}C_{5}}{{}^{n}C_{4}} = 1 + \frac{{}^{n}C_{6}}{{}^{n}C_{4}}.$$
  • \(\dfrac{{}^{n}C_{5}}{{}^{n}C_{4}} = \dfrac{n-4}{5}\) and \(\dfrac{{}^{n}C_{6}}{{}^{n}C_{4}} = \dfrac{(n-4)(n-5)}{30}\).
  • So \(\dfrac{2(n-4)}{5} = 1 + \dfrac{(n-4)(n-5)}{30}\). Multiply by 30: \(12(n-4) = 30 + (n-4)(n-5)\).
  • Let \(m = n-4\): \(12m = 30 + m(m-1)\). Gives \(m^{2} - 13m + 30 = 0\), so \((m-3)(m-10) = 0\).
  • Factoring the original cubic gives \(n = 7\) as the valid answer. Answer: (a).

Example 6 — Identical-letter arrangement: ASSASSINATION

Question: How many distinct words can be formed using all the letters of the word ASSASSINATION?

  • Count the letters: A, S, S, A, S, S, I, N, A, T, I, O, N — total \(n = 13\).
  • Identify repetitions: A appears 3 times, S appears 4 times, I appears 2 times, N appears 2 times. T and O appear once each.
  • Apply the repeated-letters formula: $$\text{Arrangements} = \frac{13!}{3! \cdot 4! \cdot 2! \cdot 2!}.$$
  • Numerator \(13! = 6{,}227{,}020{,}800\). Denominator \(= 6 \cdot 24 \cdot 2 \cdot 2 = 1{,}728\).
  • Final count \(= 6{,}227{,}020{,}800 / 1{,}728 = 3{,}603{,}600\) distinct arrangements.

Example 7 — Equality Rule: solving for r

Question: If \(^{15}C_{3r} = {}^{15}C_{r+3}\), find the value of \(r\).

  • By the Equality Rule, either \(3r = r + 3\) OR \(3r + (r+3) = 15\).
  • Case 1: \(2r = 3 \implies r = 1.5\) — rejected, \(r\) must be a non-negative integer.
  • Case 2: \(4r + 3 = 15 \implies 4r = 12 \implies r = 3\).
  • Verify: \(^{15}C_{9} = {}^{15}C_{6}\) — true by symmetry. So \(r = 3\).

Example 8 — "Always together" arrangement

Question: In how many ways can the letters of EQUATION be arranged so that all the vowels are together?

  • EQUATION has 8 distinct letters. Vowels: E, U, A, I, O (5 vowels). Consonants: Q, T, N (3 consonants).
  • Treat all 5 vowels as a single block. Now arrange the block plus 3 consonants → 4 units in \(4! = 24\) ways.
  • Inside the block, the 5 vowels can be permuted among themselves in \(5! = 120\) ways.
  • Total arrangements with vowels together = \(4! \times 5! = 24 \times 120 = 2{,}880\).
  • The "block" or "glue" trick is the standard NDA approach for any "X items always together" question.

Apply these concepts in a timed NDA mock test

Permutations and Combinations questions in NDA require speed and accuracy. The only way to build both is through timed practice on actual-pattern mocks.

Start Free Mock Test

Exam Shortcuts (Pro-Tips)

Permutations and Combinations questions are usually time-sinks if you set them up from first principles. The shortcuts below collapse standard sub-types into one-line answers — every one of them maps to an NDA pattern seen across 2010–2025.

Shortcut 1 — Circular arrangement is \((n-1)!\)

For \(n\) distinct objects around a round table, fix one seat to eliminate rotational duplicates. That leaves \((n-1)!\) arrangements. For a necklace or garland, divide further by 2 because clockwise and anti-clockwise look identical when flipped.

Circular vs Necklace $$\text{Round table: } (n-1)! \quad\quad \text{Necklace: } \frac{(n-1)!}{2}$$

Shortcut 2 — Identical objects: divide by each repetition's factorial

Any time you arrange \(n\) items where some are alike, divide \(n!\) by the factorial of each repetition count. This single rule covers every BASEBALL / MATHEMATICS / ASSASSINATION-style question.

Identical Objects $$\frac{n!}{p! \cdot q! \cdot r! \cdots}$$

Shortcut 3 — Pascal identity collapses adjacent C-values

Whenever a question mixes \(^{n}C_{r}\) and \(^{n}C_{r-1}\) in a sum, fold them into a single \(^{n+1}C_{r}\) value. This is the fastest route to handle sums or AP-condition questions involving consecutive combinations.

Pascal Identity $$^{n}C_{r} + {}^{n}C_{r-1} = {}^{n+1}C_{r}$$

Shortcut 4 — Restricted positions: "always included" and "always excluded"

If \(p\) particular objects must always be included in a selection of \(r\) from \(n\), those \(p\) slots are pre-filled — just choose the remaining \((r-p)\) from \((n-p)\). If \(p\) objects must always be excluded, treat them as removed before selecting.

Restricted Selection $$\text{Include } p: {}^{n-p}C_{r-p} \quad\quad \text{Exclude } p: {}^{n-p}C_{r}$$

Example: A team of 11 from 15 with captain always included → \(^{14}C_{10} = 1001\). A team of 5 from 8 with one player excluded → \(^{7}C_{5} = 21\). Both have appeared verbatim in NDA papers (2015-II, 2021-I).

Shortcut 5 — "At least one" means use the complement

Selection questions asking for "at least one of type X" balloon if you sum cases for exactly 1, 2, 3 … Use the complement instead — subtract the count of "none chosen" from the total.

At-Least-One Shortcut $$N(\text{at least one X}) = N(\text{total}) - N(\text{no X})$$

Example: from 6 men and 4 women, the number of committees of 3 with at least one woman = \(^{10}C_{3} - {}^{6}C_{3} = 120 - 20 = 100\). Faster than enumerating 1W+2M, 2W+1M, 3W separately.

Shortcut 6 — Diagonals and triangles direct formulas

For any \(n\)-sided polygon, memorise diagonals \(= \dfrac{n(n-3)}{2}\). For "triangles from \(n\) points, \(m\) collinear" memorise \(^{n}C_{3} - {}^{m}C_{3}\). For "straight lines from \(n\) points, \(m\) collinear" memorise \(^{n}C_{2} - {}^{m}C_{2} + 1\).

Geometric Direct Results $$\text{Diagonals} = \frac{n(n-3)}{2} \quad\quad \text{Triangles} = {}^{n}C_{3} - {}^{m}C_{3}$$

Shortcut 7 — Derangements (the "wrong envelope" problem)

If \(n\) letters go into \(n\) addressed envelopes such that no letter sits in its correct envelope, the count is the derangement \(D_{n}\). Memorise the small values; NDA has never tested \(n > 5\) for this sub-type.

Derangement Values $$D_{3} = 2, \quad D_{4} = 9, \quad D_{5} = 44$$

Closed-form: $$D_{n} = n!\left(1 - \tfrac{1}{1!} + \tfrac{1}{2!} - \tfrac{1}{3!} + \cdots + \tfrac{(-1)^{n}}{n!}\right).$$ For NDA, the three values above are enough.

Shortcut 8 — Group division formula

To split \((m + n)\) distinct objects into two unequal groups of size \(m\) and \(n\): \(\binom{m+n}{m} = \dfrac{(m+n)!}{m!\,n!}\). If the two groups are of equal size \(n\), divide by an extra \(2!\) because the groups themselves are interchangeable.

Equal-Size Group Division $$\text{2n items into 2 equal groups of n: } \frac{(2n)!}{n! \cdot n! \cdot 2!}$$
⚡ NDA Alert

When dividing into equal-sized groups, the divisor for identical groups (the 2! above, or k! for k equal groups) is the single most-missed step in NDA. Without it your answer is over-counted by a factor equal to k!. Always check: are the groups distinguishable (different labels / different jobs) or interchangeable?

Common Question Patterns

After reviewing every question from 2010 through 2025, six recurring patterns emerge. Learning to spot the pattern in the first reading saves 30–60 seconds per question.

Pattern 1: Word arrangement with repeated letters

  • Identify repeated letters immediately. BASEBALL: B×2, A×2, L×2. PERMUTATION: T×2. COMBINATIONS: O×2, N×2, I×2.
  • Formula: \(\dfrac{n!}{p_{1}! \cdot p_{2}! \cdots}\). Then apply constraints like "vowels not together" by complement or by fixing vowel positions.
  • Appeared in: 2012-II (BASEBALL), 2013-I (GLOOMY), 2017-II (PERMUTATION), 2022-II (MATHEMATICS), 2023-I (PERMUTATIONS vs COMBINATIONS).

Pattern 2: Geometric counting (lines, triangles, diagonals)

  • Straight lines from \(n\) points (no 3 collinear) = \(^{n}C_{2}\). Triangles = \(^{n}C_{3}\).
  • If \(k\) points are collinear, subtract \(^{k}C_{2}\) from lines and \(^{k}C_{3}\) from triangles.
  • Diagonals of \(n\)-gon = \(^{n}C_{2} - n = \dfrac{n(n-3)}{2}\).
  • This pattern appeared in 2015-II, 2016-I, 2018-I, 2019-I, 2021-II, 2024-I, 2025-I.

Pattern 3: Distribution / allocation problems

  • \(r\) identical items to \(n\) people (each can receive any number): \(n^{r}\) ways.
  • The "letterbox" or "ticket" questions always follow this: 5 letters to 7 boxes = \(7^{5}\), 3 tickets to 10 employees = \(10^{3} = 1000\) (2016-I).

Pattern 4: Constrained team / committee selection

  • Always include one person: fix that person, choose the rest from \(n-1\).
  • Always exclude one person: choose all from \(n-1\).
  • Exclude two specific people: choose all from \(n-2\).
  • Appeared in: 2011-I (specified book included/excluded), 2015-II (captain always in), 2021-I (exclude player), 2022-I (exclude 2 players), 2018-I (include 3 bowlers from 5).

Pattern 5: Finding n from a given value of nPr or nCr

  • Set up the formula and solve. \(^{n}P_{r} = 2520\) and \(^{n}C_{r} = 21\) (2019-II): from \(^{n}P_{r} = r! \cdot {}^{n}C_{r}\), \(2520 = r! \times 21\), so \(r! = 120 = 5!\), thus \(r = 5\). Then \(^{n}C_{5} = 21 = {}^{7}C_{5}\), so \(n = 7\) and \(^{8}C_{6} = 28\).

Pattern 6: Remainder / divisibility with factorials

  • For \(S = 0! + 1! + 2! + \cdots + 100!\): all terms \(k!\) for \(k \ge 4\) are divisible by 8. Remainder \(= 0! + 1! + 2! + 3! = 1+1+2+6 = 10\), and \(10 \bmod 8 = 2\) (2023-I).
  • Similarly for divisibility by 60: all terms from \(5!\) onward are divisible by 60. Remainder \(= 0!+1!+2!+3!+4! = 34\), and \(34 \bmod 60 = 34\). Answer was (d) 34 in 2023-I.
⚡ NDA Alert

For "vowels in even / odd positions" questions, list the positions first (e.g., positions 1,2,3,4,5 — odd positions are 1,3,5; even are 2,4). Then count separately how vowels and consonants fill their designated slots. Mistakes here usually come from miscounting available positions.

Preparation Strategy

Permutations and Combinations rewards structured preparation more than most topics. Here is a week-by-week plan based on NDA PYQ analysis.

Week 1 — Build the formula base

Master the definitions of \(^{n}P_{r}\) and \(^{n}C_{r}\). Practice computing values by hand: \(^{6}P_{2}\), \(^{15}C_{11}\), \(^{7}C_{3} \times {}^{5}C_{2}\). Make sure you can quickly spot whether a question needs permutation (order matters) or combination (order does not matter). A good test: if you are selecting a team, order doesn't matter — use C. If you are arranging people in chairs or letters in words, order matters — use P.

Week 2 — Word arrangement questions

This sub-type appears in almost every NDA paper. Practice the following progression:

  • Count arrangements of a word with no repeats (TIGER = \(5! = 120\)).
  • Count arrangements with repeated letters (BASEBALL = \(\dfrac{8!}{2! \cdot 2! \cdot 2!} = 5040\)).
  • Apply constraints: vowels together (treat as block), vowels not together (complement), vowels in specific positions.
  • Rank in dictionary order (AGAIN 50th word = NAAIG).

These questions connect naturally to Sets, Relations and Functions — the relation count question in 2015-I (distinct relations from B to A = \(2^{n(A) \times n(B)} = 2^{12} = 4096\)) uses a similar counting approach.

Week 3 — Geometric counting

Drill the three formulas: lines, triangles, diagonals. Then practice questions with collinear points (subtract degenerate cases). Move on to the parallelogram formula \(^{m}C_{2} \times {}^{n}C_{2}\). NDA has tested this every 2–3 years; a question from 2023-I gave 60 parallelograms from \(m\) and \(n\) parallel lines, leading to \(m = 5, n = 4, m + n = 9\).

Week 4 — Mixed PYQ practice and speed

At this stage, stop doing concept practice and shift to timed PYQ solving. Target 2 minutes per question. Common slow spots: setting up the constraint (always include/exclude), handling the collinear point subtraction, and expanding word arrangement constraints. Time yourself on 10-question sets from this topic alone, then review every mistake.

How NDA Tests This Topic

NDA rarely asks a formula in isolation. The 2022-II set on QUESTION tested three different sub-types (2-vowel-2-consonant words, alternating positions, all consonants together) from a single base word. The 2025-II set used 8 collinear points to ask both triangle and quadrilateral counts. Expect multi-part sets and practice reading the full scenario before solving part one.

Cross-topic connections worth reinforcing: this topic feeds directly into Probability (favorable outcomes / total outcomes both use \(^{n}C_{r}\)), into Sequences and Series (the \(a_{n} = n(n!)\) question from 2021-II telescopes into \(11! - 1\)), and into Binomial Theorem (binomial coefficients = \(^{n}C_{r}\) values). Solving the cross-topic links in one sitting consolidates memory better than isolated drill.

For chapter-level context, return to NDA Maths to see how Permutations and Combinations fits within the full syllabus and mark scheme.

Frequently Asked Questions

How many questions from Permutations and Combinations appear in a typical NDA paper?

Based on PYQ data from 2010 to 2025, the topic contributes 2–5 questions per paper. From 2021 onward, the count has trended toward 5–8 questions per paper as NDA began including multi-part question sets on a single scenario (like the QUESTION word set in 2022 and the 8-points set in 2025).

What is the difference between permutation and combination, and how do I decide which to use?

A permutation counts ordered arrangements — the sequence matters. A combination counts unordered selections — only which items are chosen matters, not in what order. Practical test: if you are seating people in numbered chairs, order matters (permutation). If you are selecting a committee or a cricket team, order does not matter (combination). In word arrangement questions, always use permutation because the position of each letter matters.

How do I handle "vowels never together" type questions?

Use the complement method. First count all arrangements ignoring the constraint. Then count arrangements where the vowels ARE together (treat all vowels as a single block, arrange the block with remaining letters, then arrange the vowels within the block). Subtract. For NATION (2015-I): total = \(\dfrac{6!}{2!} = 360\). Vowels together (A, I, O as one block): \(\dfrac{4! \times 3!}{1} = 144\) but the word has N twice so adjust. The answer is \(360 - 72 = 288\).

What is the formula for the number of diagonals in a polygon and how has it been tested?

Diagonals in an \(n\)-sided polygon = \(^{n}C_{2} - n = \dfrac{n(n-3)}{2}\). To find the number of sides given diagonals, set \(\dfrac{n(n-3)}{2} = \text{diagonals}\) and solve the quadratic. NDA tested this in 2015-II (44 diagonals → \(n = 11\)), 2019-II (octagon → 20 diagonals), and 2025-I (20 diagonals → \(n = 8\)).

How do I find the rank of a word in dictionary order?

Sort the letters alphabetically. For each position, count how many valid words start with letters that come before the actual letter at that position. Sum all these counts and add 1. For AGAIN (2015-II): sorted letters are A, A, G, I, N. The 50th word turned out to be NAAIG by systematically counting words starting with AA (6), AG (6), AI (6), AN (6), GA (6), GI (3), GN (3), IA (6), IG (3), IN (3), NA (6) — cumulative 54 — and picking off the 49th and 50th within the NA group.

What is the trick for factorial remainder questions (like dividing 0!+1!+…+100! by 8)?

Identify the smallest factorial that is divisible by the divisor. For divisor 8: \(4! = 24\) is divisible by 8, so all factorials from \(4!\) onward contribute zero remainder. Only compute \(0! + 1! + 2! + 3! = 1+1+2+6 = 10\), and \(10 \bmod 8 = 2\). This appeared directly in NDA 2023-I. For divisor 60: \(5! = 120\) is divisible by 60, so compute \(0!+1!+2!+3!+4! = 34\), giving remainder 34.

How do I count 5-digit numbers with no digit repeated, where the first digit cannot be 0?

For digits 0–9 (2018-II): the first digit has 9 choices (1–9). The remaining 4 positions draw from the remaining 9 digits (including 0) without repetition: that is \(^{9}P_{4} = 9 \times 8 \times 7 \times 6 = 3024\). Total = \(9 \times 3024 = 27{,}216\). This question appeared in NDA 2018-II with answer (c).