How many 3-digit numbers can be formed from the digits 1, 2, 3, 4 and 5
assuming that
(i) repetition of the digits is allowed?
(ii) repetition of the digits is not allowed?
Theory
This problem is based on the Fundamental Principle of Counting (FPC): If a task can be performed in multiple independent steps, then total ways = product of number of ways of each step.
A 3-digit number consists of three positions: Hundreds, Tens, Units. Each position is filled according to given constraints.
Solution Roadmap
Step 1: Identify number of positions (3-digit ⇒ 3 places)
Step 2: Check restriction (repetition allowed or not)
Step 3: Assign choices for each position
Step 4: Multiply using FPC
Solution
Given digits: \(1,2,3,4,5\)
Case (i): Repetition Allowed
Each position (H, T, U) can be filled in 5 ways.
\[ \begin{aligned} \text{Total numbers} &= 5 \times 5 \times 5 \ &= 125 \end{aligned} \]Case (ii): Repetition Not Allowed
First position: 5 choices
Second position: 4 remaining choices
Third position: 3 remaining choices
Final Answer
(i) \(125\)
(ii) \(60\)
Exam Significance
This is a foundation problem for permutations and combinations. It directly builds intuition for:
- Digit formation problems (very common in boards)
- JEE pattern questions involving restrictions
- Understanding when order matters vs selection
In competitive exams, this concept is frequently extended to: numbers with conditions, divisibility, repetition constraints.