4.4 Permutations, Combinations & Probability Principles

Key Takeaways

  • The Fundamental Counting Principle multiplies sequential independent choice counts (n1 * n2) and adds mutually exclusive event counts (n1 + n2).
  • Permutations (P(n,r) = n! / (n-r)!) count ordered arrangements, whereas indistinguishable items use n! / (p! * q! * r!) and circular arrangements use (n-1)!.
  • Combinations (C(n,r) = n! / (r!*(n-r)!)) count unordered selections, exhibiting key properties C(n,r) = C(n, n-r) and sum of subsets sum(C(n,k)) = 2^n.
  • Probability axioms bound P(A) in [0,1]; for independent events P(A and B) = P(A) * P(B), and for mutually exclusive events P(A or B) = P(A) + P(B).
  • Complementary probability P(A) = 1 - P(A') provides the standard shortcut for 'at least one' success problems (P(at least one) = 1 - P(zero successes)).
Last updated: July 2026

4.4 Permutations, Combinations & Probability Principles

Combinatorics and discrete probability represent advanced Quantitative Reasoning topics on the HEC Higher Education Aptitude Test (HAT). These concepts evaluate a candidate's structural analytical capacity to count arrangements, evaluate multi-stage selection committees, and quantify likelihoods under probabilistic constraints. Mastered systematically, permutation, combination, and probability items can be solved rapidly using factorial properties and complementary shortcuts without manually listing outcome sample spaces.


The Fundamental Counting Principle

The Fundamental Counting Principle provides the foundation for all combinatorics rules.

1. Multiplication Principle (Sequential Independent Choices)

If an operation consists of $k$ sequential stages, where Stage $1$ can be performed in $n_1$ ways, Stage $2$ in $n_2$ ways, $\dots$, and Stage $k$ in $n_k$ ways, the total number of composite ways to perform the operation is:

Total Outcomes=n1×n2×n3××nk\text{Total Outcomes} = n_1 \times n_2 \times n_3 \times \dots \times n_k

Worked Example: A security passcode requires $2$ uppercase letters (from $26$) followed by $3$ non-zero digits (from $1$ to $9$). How many distinct passcodes can be created if repetition is allowed?

  • Total Passcodes $= 26 \times 26 \times 9 \times 9 \times 9 = 676 \times 729 = 492,804$.

2. Addition Principle (Mutually Exclusive Alternatives)

If a choice can be made either from Set A (containing $m$ options) or from Set B (containing $n$ options), and Set A and Set B share no common elements (disjoint sets), the total number of available choices is:

Total Choices=m+n\text{Total Choices} = m + n


Permutations: Linear, Indistinguishable & Circular Arrangements

A permutation is an ordered arrangement of items. Order is paramount ($AB \neq BA$).

Linear Permutations

The number of ways to arrange $r$ distinct items chosen from a set of $n$ distinct items is:

P(n,r)=n!(nr)!P(n,r) = \frac{n!}{(n-r)!}

When arranging all $n$ items ($r = n$), $P(n,n) = n!$.

Permutations with Indistinguishable (Repeated) Items

If a set of $n$ items contains $p$ identical items of type 1, $q$ identical items of type 2, and $r$ identical items of type 3, the number of unique linear arrangements is:

Distinct Permutations=n!p!q!r!\text{Distinct Permutations} = \frac{n!}{p! \cdot q! \cdot r!}

Worked Example: How many distinct $8$-letter arrangements can be formed using all the letters of the word PAKISTAN?

  • Total letters $n = 8$.
  • Letter frequencies: P:1, A:2, K:1, I:1, S:1, T:1, N:1 (letter 'A' repeats $p=2$ times).
  • Distinct Arrangements $= \frac{8!}{2!} = \frac{40,320}{2} = 20,160$.

Circular Permutations

When arranging $n$ distinct items in a closed circle (where rotating the entire circle does not create a new relative ordering):

  1. Fixed Circular Orientation (e.g., seating people around a round table): Circular Permutations=(n1)!\text{Circular Permutations} = (n - 1)!
  2. Flippable Circular Orientation (e.g., threading distinct beads on a necklace or keys on a ring, where flipping the ring over yields identical arrangements): Necklace Permutations=(n1)!2\text{Necklace Permutations} = \frac{(n - 1)!}{2}

Worked Example: In how many ways can $6$ committee members be seated around a circular conference table?

  • Ways $= (6 - 1)! = 5! = 120$.

Combinations & Mathematical Properties

A combination is an unordered selection of items. Order does NOT matter ($AB = BA$).

Combinations C(n,r)=(nr)=n!r!(nr)!\text{Combinations } C(n,r) = \binom{n}{r} = \frac{n!}{r!(n-r)!}

Essential Algebraic Identities of Combinations

  1. Symmetry Property: $C(n,r) = C(n, n-r)$. (e.g., $C(10,8) = C(10,2) = \frac{10 \times 9}{2 \times 1} = 45$).
  2. Pascal's Identity: $C(n,r) + C(n, r-1) = C(n+1, r)$.
  3. Sum of Combinations: $\sum_{k=0}^n C(n,k) = C(n,0) + C(n,1) + \dots + C(n,n) = 2^n$.
  4. Boundary Values: $C(n,0) = 1, \quad C(n,1) = n, \quad C(n,n) = 1$.

Committee Selection Problems with Restrictions

Worked Example: A committee of $5$ members is to be selected from $6$ men and $5$ women. In how many ways can the committee be formed if it must contain exactly $3$ men and $2$ women?

  1. Select $3$ men from $6$: $C(6,3) = \frac{6 \times 5 \times 4}{3 \times 2 \times 1} = 20$.
  2. Select $2$ women from $5$: $C(5,2) = \frac{5 \times 4}{2 \times 1} = 10$.
  3. Total Committee Selection $= 20 \times 10 = 200 \text{ ways}$.

Basic Probability Axioms & Theoretical Rules

Classical probability quantifies the likelihood of an event $A$ occurring within a sample space $S$ containing equally likely outcomes:

P(A)=N(A)N(S)=Number of Favorable OutcomesTotal Number of Possible OutcomesP(A) = \frac{N(A)}{N(S)} = \frac{\text{Number of Favorable Outcomes}}{\text{Total Number of Possible Outcomes}}

Kolmogorov Axioms of Probability

  1. Probability Bounds: For any event $A$, $0 \le P(A) \le 1$.
  2. Certain Event: $P(S) = 1$; Impossible Event: $P(\emptyset) = 0$.

Multiplication Rule for Independent Events

Two events $A$ and $B$ are independent if the occurrence of $A$ does not alter the probability of $B$:

P(AB)=P(A)×P(B)P(A \cap B) = P(A) \times P(B)

Addition Rule for Mutually Exclusive Events

Two events $A$ and $B$ are mutually exclusive if they cannot occur simultaneously ($A \cap B = \emptyset$):

P(AB)=P(A)+P(B)P(A \cup B) = P(A) + P(B)

General Addition Rule (Non-Mutually Exclusive Events)

If events $A$ and $B$ can overlap:

P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)


Complementary Probability & "At Least One" Problems

The Complementary Probability Law states:

P(Ac)=P(Not A)=1P(A)P(A^c) = P(\text{Not } A) = 1 - P(A)

Strategic Shortcut for "At Least One" Problems

Calculating the probability of "at least one success" across $n$ trials directly can be complex, as it requires summing $P(1) + P(2) + \dots + P(n)$. Using the complement rule makes it trivial:

P(At least one success)=1P(Zero successes)P(\text{At least one success}) = 1 - P(\text{Zero successes})

Worked Example: A fair coin is tossed $5$ times. What is the probability of getting at least one Head?

  • Probability of getting Zero Heads (all Tails) $= \left(\frac{1}{2}\right)^5 = \frac{1}{32}$.
  • $P(\text{At least one Head}) = 1 - P(\text{Zero Heads}) = 1 - \frac{1}{32} = \frac{31}{32}$.
Test Your Knowledge

How many distinct 8-letter permutations can be formed using all the letters in the word 'PAKISTAN'?

A
B
C
D
Test Your Knowledge

A selection committee of 5 members is to be formed from a group of 6 men and 5 women. In how many ways can the committee be selected if it must contain exactly 3 men and 2 women?

A
B
C
D
Test Your Knowledge

Two fair six-sided dice are rolled simultaneously. What is the probability that the sum of the numbers showing on top is a multiple of 4?

A
B
C
D
Test Your Knowledge

Three independent candidates take a qualifying screening test. The probabilities of candidates X, Y, and Z passing the test are 1/2, 2/3, and 3/4 respectively. What is the probability that at least one candidate passes the test?

A
B
C
D