Permutations and Combinations: PYQ Walkthrough (4)

easy 3 min read

Question

(JEE Main 2024 style) How many 4-digit numbers can be formed from the digits 1,2,3,4,5,61, 2, 3, 4, 5, 6 such that no digit is repeated and the number is even?

Solution — Step by Step

For an even number, the last digit must be even — so the units place must be one of {2,4,6}\{2, 4, 6\}. That’s 3 choices.

Place an even digit in the units position: 3 ways.

After placing the units digit, 5 digits remain for the other three positions.

Thousands, hundreds, tens places are filled from the remaining 5 digits — and order matters, so:

P(5,3)=5×4×3=60P(5, 3) = 5 \times 4 \times 3 = 60 ways.

Total =3×60=180= 3 \times 60 = 180 four-digit even numbers.

Answer: 180180.

Why This Works

The key principle: tackle the most constrained position FIRST. Units is constrained (must be even), so we pick it before the unconstrained positions. This avoids overcounting and double-counting.

If we had filled thousands first (no constraint), then hundreds, then tens, we would have committed to specific digits before knowing whether an even one was still available — possible but messier.

Strategy rule: In permutation problems with one position constrained, fix that position FIRST, then permute the rest. Saves seconds and avoids casework.

Alternative Method — Total Minus Odd

Total 4-digit numbers with no repetition from 6 digits =P(6,4)=6×5×4×3=360= P(6, 4) = 6 \times 5 \times 4 \times 3 = 360.

Odd numbers: units digit {1,3,5}\in \{1, 3, 5\}, 3 choices. Remaining: P(5,3)=60P(5, 3) = 60. So odd count =3×60=180= 3 \times 60 = 180.

Even count =360180=180= 360 - 180 = 180. Same answer.

This works because half the digits are even and half are odd — the symmetry guarantees a 50-50 split.

Common Mistake

Students often start by filling the thousands place first (with 6 choices) and don’t separate out the even-digit constraint. They end up with 6×5×4×3=3606 \times 5 \times 4 \times 3 = 360, the total count — and forget to halve it.

Another classic: forgetting that “no digit repeated” is given. Without that condition, the answer would be 63×3=6486^3 \times 3 = 648. Always re-read for the “no repetition” clause.

JEE Main has at least one P&C problem per shift, often built around digit constraints (even, divisible by 5, between 1000 and 5000, etc.). The “fix the constrained slot first” template handles 80%+ of these. CBSE Class 11 boards include similar problems for 4 marks.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next