Permutation and Combination for SBI PO — Complete Strategy Guide

advanced 22 min read

Concept

At its core, this chapter is about one decision: does order matter?

If you are choosing 3 students from a class of 10 to sit in a row for a photograph, the position of each person changes the arrangement — that is a permutation (क्रमचय). If you are choosing 3 students to form a committee, a group is the same group regardless of who was picked first — that is a combination (संचय).

Here is the analogy that sticks: think of a lock versus a lottery. A combination lock is actually misnamed — it should be called a permutation lock, because 3-1-5 and 5-1-3 open different locks. A lottery, where you just need the right 5 numbers regardless of draw order, is the true combination scenario.

The two formulas flow directly from this:

nPr=n!(nr)!^nP_r = \frac{n!}{(n-r)!}

nCr=n!r!(nr)!^nC_r = \frac{n!}{r!(n-r)!}

The relationship between them is equally important:

nPr=nCr×r!^nP_r = ^nC_r \times r!

This makes sense: once you have selected rr items (combination), multiplying by r!r! accounts for all the ways those rr items can be ordered among themselves.

Why does SBI PO push this topic to advanced difficulty? Because the exam does not test bare formula substitution. It tests three higher-order applications — repeated letters in word arrangements, the gap method for non-adjacency constraints, and stars-and-bars for identical-object distribution. These three patterns account for the bulk of PYQs. Every concept in this page is aimed at cracking exactly those three patterns.

One more grounding point: 0!=10! = 1 by definition, and nC0=nCn=1^nC_0 = ^nC_n = 1. Do not second-guess these under exam pressure.


Deep Dive

Factorial and the Counting Principle

The fundamental counting principle states: if event A can happen in mm ways and event B in nn ways, both together happen in m×nm \times n ways. Factorial n!n! is simply this principle applied to arranging nn distinct objects: n×(n1)×(n2)××1n \times (n-1) \times (n-2) \times \cdots \times 1.

Quick recall: 5!=1205! = 120, 6!=7206! = 720, 7!=50407! = 5040, 8!=403208! = 40320, 9!=3628809! = 362880, 10!=362880010! = 3628800. Memorise up to 10!10! — you will use these as lookup values, not compute them from scratch.

Permutations with Repetition

When a word has repeated letters, the formula becomes:

Arrangements=n!p!q!r!\text{Arrangements} = \frac{n!}{p! \cdot q! \cdot r! \cdots}

where p,q,rp, q, r are frequencies of each repeated letter.

Example: PUNCTUAL has 8 letters, with U appearing twice. Answer = 8!2!=403202=20160\frac{8!}{2!} = \frac{40320}{2} = 20160.

The logic: without the denominator, you count every swap of the two U's as a new arrangement, which is wrong since both U's are identical.

The Gap Method (Non-Adjacency Constraint)

This is the most tested technique. When a problem says "no two [group X] should be together," you:

  1. First arrange the other group (say mm people) in m!m! ways. This creates m+1m+1 gaps — one before the first person, one between each consecutive pair, and one after the last.
  2. Choose rr gaps from those m+1m+1 gaps for group X: m+1Cr^{m+1}C_r ways.
  3. Arrange group X within chosen gaps: r!r! ways.
  4. Multiply: m!×m+1Cr×r!m! \times {^{m+1}C_r} \times r!

For 5 boys and 4 girls, no two girls together:

Treating a Group as One Unit (Always-Together Constraint)

When a problem says a specific set of people must always be together:

  1. Bind those people into one super-unit.
  2. Arrange the reduced total (original nn minus group size + 1) in that many factorial ways.
  3. Internally arrange the bound group: (group size)! ways.
  4. Multiply.

For 8 people with 3 always together: treat 3 as one unit → 6 units → 6!×3!=720×6=43206! \times 3! = 720 \times 6 = 4320.

Complementary Counting

When "at least one" of something is required, it is almost always faster to subtract the unwanted case from the total:

At least one=TotalNone at all\text{At least one} = \text{Total} - \text{None at all}

From 6 novels + 3 poems, choose 4 with at least 1 poem:

Train yourself to reach for complementary counting the moment you see "at least one."

Stars and Bars (Identical Object Distribution)

This pattern appears repeatedly in SBI PO under distribution problems. The formula for distributing nn identical objects into kk distinct groups with no restriction (groups can receive 0):

Ways=n+k1Ck1\text{Ways} = {^{n+k-1}C_{k-1}}

When each group must receive at least 1, first give 1 to each group, reducing nn to nkn-k, then apply the unrestricted formula:

Ways=(nk)+(k1)Ck1=n1Ck1\text{Ways} = {^{(n-k)+(k-1)}C_{k-1}} = {^{n-1}C_{k-1}}

For 10 identical books to 4 students, each getting at least 1:

Note that 9C3=9×8×73×2×1=5046=84^9C_3 = \frac{9 \times 8 \times 7}{3 \times 2 \times 1} = \frac{504}{6} = 84.

Key nCr Values to Recall Instantly

| Expression | Value | |---|---| | 9C3^9C_3 | 84 | | 9C4^9C_4 | 126 | | 6C4^6C_4 | 15 | | 7C4^7C_4 | 35 | | 8C3^8C_3 | 56 |

These come up directly in PYQs. Compute them once; do not recompute under time pressure.


Memory Tricks & Shortcuts

eliminationOrder Detective

Before writing any formula, ask one question: "If I swap two chosen items, do I get a different valid answer?" If yes, use permutation (nPr). If no, use combination (nCr). For a committee of 3 from 10 people: swap any two — same committee. Use nCr. For a President-VP-Secretary selection: swap two — different result. Use nPr. This single check eliminates the most common mistake. Standard method: hesitate 20 seconds deciding. This check: 3 seconds.

patternSubtraction Reflex for At-Least-One

The moment a problem says "at least one [condition]," write: Total − None. Do not enumerate cases (exactly 1, exactly 2, exactly 3...) — that is 3× slower. For "at least 1 poem from 3 poems while choosing 4 from 9 books": Total = 9C4=126^9C_4 = 126, None (0 poems) = 6C4=15^6C_4 = 15, Answer = 111. Direct enumeration would require computing 3C1×6C3+3C2×6C2+3C3×6C1=60+45+6=111^3C_1 \times ^6C_3 + ^3C_2 \times ^6C_2 + ^3C_3 \times ^6C_1 = 60 + 45 + 6 = 111 — same answer, 4× the steps.

patternGap Method Visual

For non-adjacency problems, draw the other group first as placeholders: _ P _ P _ P _ P _ P _ (for 5 people, this immediately shows 6 gaps). Count the underscores — that is your gap count. Then gapsCrestricted group size×(restricted group size)!^{\text{gaps}}C_{\text{restricted group size}} \times (\text{restricted group size})!. This visual prevents the classic error of writing 5C4^5C_4 instead of 6C4^6C_4. Standard method (formula recall from memory): 30 seconds. Gap visual: 10 seconds.

patternStars and Bars Trigger Words

If a problem contains all three of: "identical" (or "same") objects + "distinct" boxes/students/groups + "distribute," immediately write n+k1Ck1^{n+k-1}C_{k-1} where nn = objects, kk = groups. If it also says "each gets at least 1," write n1Ck1^{n-1}C_{k-1} directly (this is the pre-simplified version after the mandatory 1-each reduction). For 10 balls, 4 boxes, each non-empty: n1=9n-1 = 9, k1=3k-1 = 3, answer = 9C3=84^9C_3 = 84. No setup steps needed.

patternRepeated-Letter Quick Scan

For word-arrangement problems, before computing n!n!, scan the word and tally repeated letters in under 5 seconds. Write only the repeating letters and their counts as a fraction denominator: PUNCTUAL → scan → U appears twice → answer = 8!/2!8!/2!. If you check every letter individually as a separate step, you add 15 seconds and risk missing a repeat. The scan also catches problems like MISSISSIPPI (4S, 4I, 2P) where the denominator has three terms.


Fast-Solving Framework

Read the problem. Then follow this decision path:

Step 1 — Identical or distinct objects?

Step 2 — Does order matter?

Step 3 — Is there a constraint?

Step 4 — Repeated elements?

Step 5 — Compute using memorised factorial/nCr values.

If a problem seems to combine two constraints, apply them one at a time in the order: arrangement first, then constraint second. Never try to build both simultaneously.


Solved PYQs

Why this question: Tests the most fundamental word-arrangement formula with a repeated-letter twist that catches unprepared candidates.

Previous Year Questionपिछले वर्ष का प्रश्न2015
In how many different ways can the letters of the word 'PUNCTUAL' be arranged?
  1. 64
  2. 20160
  3. 960
  4. 40320
Solutionसमाधान
PUNCTUAL has 8 letters with 'U' repeated twice. Number of arrangements = 8!/2! = 40320/2 = 20160.

Solving path: Write PUNCTUAL, count 8 letters. Scan for repeats: U appears at positions 2 and 7 — twice. No other repeats. Apply formula: 8!2!=403202=20160\frac{8!}{2!} = \frac{40320}{2} = 20160. The trap option 40320 (which is 8!8!) is there for candidates who miss the repeated U. The option 960 would require a very specific additional constraint that does not exist — eliminate it immediately.


Why this question: Tests the gap method under a non-adjacency constraint — one of the three core SBI PO P&C patterns.

Previous Year Questionपिछले वर्ष का प्रश्न
In how many ways can 5 boys and 4 girls be arranged in a row such that no two girls sit together?
5 लड़कों और 4 लड़कियों को एक पंक्ति में कितने तरीकों से बैठाया जा सकता है, जबकि कोई भी दो लड़कियाँ एक साथ न बैठें?
  1. 43200
  2. 46800
  3. 43800
  4. 42000
  1. 43200
  2. 46800
  3. 43800
  4. 42000
Solutionसमाधान
First arrange 5 boys in 5! ways = 120. This creates 6 gaps (before first, between boys, after last). Choose 4 gaps from 6 for girls in 6C4 = 15 ways. Arrange 4 girls in chosen gaps in 4! = 24 ways. Total = 120 × 15 × 24 = 43200.
पहले 5 लड़कों को 5! = 120 तरीकों से व्यवस्थित करें। इससे 6 स्थान बनते हैं। 6 में से 4 स्थान चुनें = 6C4 = 15 तरीके। 4 लड़कियों को चुने गए स्थानों में 4! = 24 तरीकों से व्यवस्थित करें। कुल = 120 × 15 × 24 = 43200।

Solving path: Draw the 5 boy slots mentally: _ B _ B _ B _ B _ B _ → 6 gaps. Arrange 5 boys: 5!=1205! = 120. Choose 4 of 6 gaps for girls: 6C4=15^6C_4 = 15. Arrange 4 girls: 4!=244! = 24. Multiply: 120×15×24=120×360=43200120 \times 15 \times 24 = 120 \times 360 = 43200.


Why this question: Tests the complementary counting reflex — the fastest path to "at least one" problems.

Previous Year Questionपिछले वर्ष का प्रश्न
From 6 different novels and 3 different poems, in how many ways can 4 books be selected if at least one poem must be included?
6 अलग-अलग उपन्यासों और 3 अलग-अलग कविता-संग्रहों में से 4 किताबें कितने तरीकों से चुनी जा सकती हैं, यदि कम से कम एक कविता-संग्रह जरूर शामिल हो?
  1. 105
  2. 111
  3. 120
  4. 126
  1. 105
  2. 111
  3. 120
  4. 126
Solutionसमाधान
Total ways to select 4 books from 9 = 9C4 = 126. Ways to select 4 books with no poems (all novels) = 6C4 = 15. Ways with at least one poem = 126 - 15 = 111.
9 किताबों में से 4 चुनने के कुल तरीके = 9C4 = 126। बिना कविता के (केवल उपन्यास) = 6C4 = 15। कम से कम एक कविता के साथ = 126 - 15 = 111।

Solving path: Total books = 6 + 3 = 9. Choose 4: 9C4=126^9C_4 = 126. All 4 from novels only: 6C4=15^6C_4 = 15. At least 1 poem = 12615=111126 - 15 = 111. Do not enumerate by exact poem count — the subtraction route is 4 steps versus 9.


Why this question: Tests stars and bars — the pattern that separates 80-percentile scorers from 95-percentile scorers on this topic.

Previous Year Questionपिछले वर्ष का प्रश्न
In how many ways can 10 identical books be distributed among 4 students such that each student gets at least 1 book?
10 एक जैसी किताबों को 4 छात्रों में कितने तरीकों से बाँटा जा सकता है, जबकि हर छात्र को कम से कम 1 किताब मिले?
  1. 84
  2. 70
  3. 126
  4. 120
  1. 84
  2. 70
  3. 126
  4. 120
Solutionसमाधान
First give 1 book to each student, leaving 6 books to distribute freely among 4 students. This is equivalent to finding non-negative integer solutions to x₁ + x₂ + x₃ + x₄ = 6. Using stars and bars formula: C(6+4-1, 4-1) = C(9,3) = 84.
पहले प्रत्येक छात्र को 1 किताब दें, जिससे 6 किताबें 4 छात्रों में मुक्त रूप से वितरित करने को बचती हैं। यह x₁ + x₂ + x₃ + x₄ = 6 के गैर-नकारात्मक पूर्णांक समाधान खोजने के बराबर है। stars और bars सूत्र का उपयोग करके: C(6+4-1, 4-1) = C(9,3) = 84।

Solving path: Identical books = 10, students = 4, each gets at least 1. Give 1 to each student: 6 books remain. Now distribute 6 identical books among 4 students freely: 6+41C41=9C3=9×8×76=84^{6+4-1}C_{4-1} = {^9C_3} = \frac{9 \times 8 \times 7}{6} = 84. Options 70, 126, 120 are planted for common formula errors (8C3^8C_3, 9C4^9C_4, 5!5!).


Why this question: Tests the always-together binding technique with a larger group, checking whether you correctly compute 6 units rather than 8.

Previous Year Questionपिछले वर्ष का प्रश्न
In how many ways can 8 people be arranged in a row such that 3 particular people are always together?
8 लोगों को एक पंक्ति में कितने तरीकों से खड़ा किया जा सकता है, जबकि 3 खास लोग हमेशा साथ रहें?
  1. 2880
  2. 3600
  3. 4320
  4. 5040
  1. 2880
  2. 3600
  3. 4320
  4. 5040
Solutionसमाधान
Treat the 3 particular people as one unit. So we have 6 units to arrange in 6! = 720 ways. Within the unit, 3 people can be arranged in 3! = 6 ways. Total arrangements = 6! × 3! = 720 × 6 = 4320.
3 विशेष व्यक्तियों को एक इकाई मानें। तो हमारे पास 6 इकाइयों को 6! = 720 तरीकों से व्यवस्थित करना है। इकाई के भीतर, 3 लोगों को 3! = 6 तरीकों से व्यवस्थित किया जा सकता है। कुल व्यवस्थाएं = 6! × 3! = 720 × 6 = 4320।

Solving path: Bind the 3 particular people into one unit → total units = 8 − 3 + 1 = 6. Arrange 6 units: 6!=7206! = 720. Arrange 3 people within their unit: 3!=63! = 6. Total = 720×6=4320720 \times 6 = 4320. The trap answer 5040 is 7!7! — for candidates who reduce to 7 units instead of 6.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →