By the end of this chapter you'll be able to…

  • 1Decide permutation vs combination by whether order matters
  • 2Apply AND-multiply / OR-add to combine cases
  • 3Count word arrangements with repeats and circular arrangements
  • 4Compute probability as favourable ÷ total using combinations
  • 5Use the complement rule for 'at least one' questions
💡
Why this chapter matters in IBPS PO
Permutation, combination and probability scare candidates far more than their IBPS difficulty warrants — the questions are simple and template-driven, worth 1–3 Mains marks. The entire skill is answering one question first (does order matter?) and applying AND-multiply / OR-add. Probability is then favourable ÷ total using the same combination counts. Learning the templates converts an 'avoided' topic into dependable marks.

Permutation, Combination & Probability — IBPS PO Quant

This is the topic that scares people out of proportion to its difficulty. In IBPS the questions are simple and formulaic — 1–3 in Mains — and the entire skill is answering one question first: does order matter? If yes, it's a permutation (arrangement); if no, a combination (selection). Probability is then just favourable outcomes ÷ total outcomes, where both are combination counts. Learn the handful of templates and the "order?" test, and this becomes reliable marks; over-think it and you lose time you don't have.


1. What IBPS actually asks

  • Selection: "In how many ways can 3 men be chosen from 7?" (order doesn't matter → combination).
  • Arrangement: "How many words from the letters of MONDAY?" (order matters → permutation).
  • Probability: "A bag has 4 red, 5 blue balls; probability 2 drawn are red?"
  • Common contexts: committees, teams, seating in a line, forming numbers/words, and balls from a bag.

2. The one decision: does order matter?

  • Combination (selection): committees, teams, choosing balls — order irrelevant. ⁷C₃ = 35.
  • Permutation (arrangement): seating, ranking, forming words/numbers — order matters. ⁷P₃ = 210.
  • Relationship: ⁿPᵣ = ⁿCᵣ × r! (choose, then arrange).

Quick nCr values: ⁿC₀ = ⁿCₙ = 1, ⁿC₁ = n, ⁿC₂ = n(n−1)/2, and ⁿCᵣ = ⁿC₍ₙ₋ᵣ₎ (choosing r to include = choosing n−r to leave out — use the smaller).


3. Selection templates (most common)

  • "At least / at most": add the valid cases. "At least 2 red from 4 red, 3 blue, choose 3": (2R1B) + (3R0B) = ⁴C₂·³C₁ + ⁴C₃ = 18 + 4 = 22.
  • "Both/all from a group": multiply the group choices. "2 men from 5 AND 1 woman from 4": ⁵C₂ × ⁴C₁ = 40.
  • "Either/or (mutually exclusive)": add the cases.

The rule of thumb: AND ⇒ multiply, OR ⇒ add.


4. Arrangement templates

  • All distinct letters: n! ways. MONDAY (6 distinct) → 720.
  • Repeated letters: divide by the factorial of each repeat. BANANA = 6!/(3!·2!) (3 A's, 2 N's) = 60.
  • Circular arrangement: (n−1)! ways (fix one to break rotation).
  • Together/not-together: treat "together" items as one block, arrange, then multiply by internal arrangements; "not together" = total − together.

5. Probability — favourable ÷ total

  • Both counts are usually combinations. "2 red from a bag of 4 red + 5 blue (9 balls)": P = ⁴C₂ / ⁹C₂ = 6/36 = 1/6.
  • Complement: P(at least one) = 1 − P(none) — often far faster than summing cases.
  • Independent events: multiply (P(A and B) = P(A)·P(B)). Mutually exclusive: add.
  • Dice/coins: total outcomes = 6ⁿ / 2ⁿ; count favourable directly for small n.

Solved examples

Question 1 of 5

Q1 (selection). From 7 men and 4 women, a committee of 3 with exactly 1 woman?

Show explanation

Solution. 1 woman (⁴C₁) × 2 men (⁷C₂) = 4 × 21 = 84.

Question 2 of 5

Q2 (arrangement, repeats). Arrangements of the letters of "LEVEL"?

Show explanation

Solution. 5 letters, L×2, E×2 ⇒ 5!/(2!·2!) = 120/4 = 30.

Question 3 of 5

Q3 (at least). From 4 red and 3 green, choose 3 with at least 2 red?

Show explanation

Solution. (2R1G) + (3R) = ⁴C₂·³C₁ + ⁴C₃ = 18 + 4 = 22.

Question 4 of 5

Q4 (probability). A bag has 5 red, 4 blue. Two drawn at random; P(both red)?

Show explanation

Solution. ⁵C₂ / ⁹C₂ = 10/36 = 5/18.

Question 5 of 5

Q5 (complement). Probability of at least one head in 3 coin tosses?

Show explanation

Solution. 1 − P(no head) = 1 − (1/2)³ = 1 − 1/8 = 7/8.


7. Common traps

  • Using permutation for a selection (or vice versa) — always answer "does order matter?" first.
  • Forgetting to divide by repeats in word arrangements.
  • Adding when you should multiply — AND ⇒ multiply, OR ⇒ add.
  • Over-counting in "at least" — sum disjoint cases, or use the complement.
  • Circular vs linear — circular is (n−1)!, not n!.

8. The protocol

  1. Ask "does order matter?" → permutation (arrange) or combination (select).
  2. AND ⇒ multiply, OR ⇒ add the case counts.
  3. Word arrangements: n! ÷ (repeats!); circular = (n−1)!.
  4. Probability = favourable ÷ total, both as combinations; use the complement for "at least one".
  5. Keep it simple — IBPS PnC is basic; if the arithmetic explodes, you've mis-modelled the "order" question.

Key formulas & results

Everything to memorise for the exam hall, in one card. Screenshot this for revision.

Permutation
ⁿPᵣ = n!/(n−r)! (order matters)
Arrangements: seating, words, numbers.
Combination
ⁿCᵣ = n!/(r!(n−r)!) (order doesn't)
Selections: committees, teams, balls.
Relationship
ⁿPᵣ = ⁿCᵣ × r!
Choose, then arrange.
Quick nCr
ⁿC₀=ⁿCₙ=1, ⁿC₁=n, ⁿC₂=n(n−1)/2, ⁿCᵣ=ⁿC₍ₙ₋ᵣ₎
Use the smaller r.
AND/OR
AND ⇒ multiply; OR ⇒ add
Both from a group multiply; either/or add.
Repeats & circular
arrangements = n!/(repeats!); circular = (n−1)!
BANANA = 6!/(3!2!) = 60.
Probability
P = favourable ÷ total; P(at least one) = 1 − P(none)
Both counts usually combinations.
⚠️

Traps IBPS PO sets — and how to dodge them

These are the exact option-traps and misreads that cost marks under negative marking.

WATCH OUT
Using permutation for a selection (or vice versa)
Always ask 'does order matter?' first. Committees/teams/balls are combinations; seating/words/numbers are permutations.
WATCH OUT
Forgetting to divide by repeated letters
For word arrangements with repeats, divide n! by the factorial of each repeated letter's count. LEVEL = 5!/(2!2!) = 30.
WATCH OUT
Adding when you should multiply
AND ⇒ multiply (choices from separate groups); OR ⇒ add (mutually exclusive cases). Read the question's logic.
WATCH OUT
Summing overlapping cases in 'at least' questions
Break into disjoint cases (exactly 2, exactly 3…) and add, or use the complement 1 − P(none). Avoid double counting.
WATCH OUT
Treating circular arrangements like linear ones
Circular arrangements of n distinct items are (n−1)!, because rotations are identical — fix one position to break the rotation.

Exam-pattern practice

PYQ-style questions with full solutions. Work through them as a readiness check — mark yourself honestly and get your gap report at the end.

Readiness check

Are you exam-ready for Permutation, Combination & Probability?

6 problems from this chapter. Try each one, reveal the worked solution, mark yourself honestly — get your gap report at the end.

6 questions~4 min worth ~1 marks in IBPS PO exams

5-minute revision

The whole chapter, distilled. Read this the night before the exam.

  • First question: does order matter? Yes ⇒ permutation, No ⇒ combination.
  • ⁿPᵣ = n!/(n−r)!; ⁿCᵣ = n!/(r!(n−r)!); ⁿPᵣ = ⁿCᵣ·r!.
  • AND ⇒ multiply, OR ⇒ add.
  • Word arrangements: n!/(repeats!); circular = (n−1)!.
  • Probability = favourable ÷ total (both combinations).
  • P(at least one) = 1 − P(none) — the complement shortcut.
  • IBPS PnC is basic — if arithmetic explodes, you mis-modelled 'order'.

IBPS PO question blueprint

How this topic is asked, tier by tier — so you can prep to the pattern.

Typical weightage: Prelims: 0–1 marks (of 30) · Mains: 1–3 marks (of 60)

Question styleMarks eachTypical countWhat it tests
Selection / arrangement1 each1–2Order test, AND/OR, repeats, circular
Probability1 each0–1Favourable ÷ total, complement
Prep strategy
  • Day 1: the order-matters test and nPr/nCr with quick nCr values.
  • Day 2: selection templates (at least/at most, AND/OR) and word arrangements.
  • Day 3: probability basics and the complement rule under a 60-second cap.

Exam-hall strategy

Battle-tested tips from mentors and toppers for this topic under the sectional clock.

  1. Decide order-matters first: permutation or combination.
  2. Map wording to AND-multiply / OR-add.
  3. Divide by repeats for word arrangements; use (n−1)! for circular.
  4. Compute probability as favourable ÷ total with combinations.
  5. Use the complement for 'at least one'; keep the model simple.

Beyond the exam

Where this skill shows up in the job you're competing for — and in life.

Risk & odds

Probability underlies insurance pricing, credit risk and any odds-based decision a bank makes.

Combinatorial choices

Counting the ways to form teams, portfolios or product bundles is everyday combinatorics.

Where else this topic is tested

Prepare once, score in every exam that asks it.

IBPS Clerk / SBI PO & ClerkHigh — 1–3 Mains questions
RBI Grade B / RRB POMedium — selection and probability
CAT / XAT (QA)High — harder combinatorics and probability

Questions aspirants ask

Pulled from the Q&A community and mentor sessions.

Usually 1–3 in Mains and rarely in Prelims. The questions are deliberately simple, so a firm grasp of the order-matters test and a few templates makes them dependable marks rather than a topic to skip.

Ask whether the order of selection matters. Forming a committee or picking balls — order irrelevant — is a combination. Seating people, ranking, or forming words/numbers — order matters — is a permutation. Answer this before touching any formula.

AND means multiply (independent choices from different groups, e.g. 2 men AND 1 woman), OR means add (mutually exclusive cases, e.g. exactly 2 red OR exactly 3 red). Mapping the question's wording to AND/OR prevents most errors.

Use the complement: P(at least one) = 1 − P(none). Summing all the 'one or more' cases is slower and error-prone, whereas P(none) is usually a single easy product.
Header Logo