Question:medium

If n is the number of ways five different employees can sit into four indistinguishable offices where any office may have any number of persons including zero, then n is equal to:

Updated On: May 19, 2026
  • 47
  • 53
  • 51
  • 43
Show Solution

The Correct Option is C

Solution and Explanation

The number of distinct arrangements for partitioning the integer 5 into 4 components is enumerated as follows:

  • Partition: 5, 0, 0, 0. Count: 1 arrangement.
  • Partition: 4, 1, 0, 0. Count: \(\frac{5!}{4!} = 5 \text{ ways}\).
  • Partition: 3, 2, 0, 0. Count: \(\frac{5!}{3!2!} = 10 \text{ ways}\).
  • Partition: 2, 2, 1, 0. Count: \(\frac{5!}{2!2!1!} = 15 \text{ ways}\).
  • Partition: 2, 1, 1, 1. Count: \(\frac{5!}{2!1!1!1!} = 10 \text{ ways}\).
  • Partition: 3, 1, 1, 0. Count: \(\frac{5!}{3!1!1!} = 10 \text{ ways}\).

Summation:

\[ 1 + 5 + 10 + 15 + 10 + 10 = 51 \text{ ways} \]

Was this answer helpful?
0

Top Questions on permutations and combinations