anvigargg
Why can't we use the partition method here?
anvigargg,
Great question! The partition method confusion is one of the most common mistakes in distribution problems. Let me clarify exactly why it doesn't work here.
The Key Distinction: Distinct vs. Identical Objects
The partition method (stars and bars) works
ONLY when objects are
identical. Here, we have
5 different fruits - they're distinct!
Think about it this way:
- If we had 5 identical apples → partition method would work
- But we have (say) apple, banana, orange, mango, grape → each is unique
Why Your Approach Doesn't Work:When you partition, you're essentially saying "put 2 objects here, 1 object there" etc. But with distinct fruits,
which 2 fruits matters! Giving Child A {apple, banana} is different from giving them {orange, mango}.
The Correct Approach:
Since fruits are distinct, think from
each fruit's perspective:
- Apple can go to any of 4 children → 4 choices
- Banana can go to any of 4 children → 4 choices
- Orange can go to any of 4 children → 4 choices
- Mango can go to any of 4 children → 4 choices
- Grape can go to any of 4 children → 4 choices
Total ways = \(4 \times 4 \times 4 \times 4 \times 4 = 4^5\)
Quick Decision Framework for GMAT:
- Objects identical + Distribution → Stars & Bars (partition method)
- Objects distinct + Distribution → Multiplication Principle
- Objects distinct + Selection → Combinations/Permutations
Remember: On the GMAT, always check if objects are "distinct," "different," "unique" vs. "identical," "same," "indistinguishable" - this determines your entire approach!
Answer: (A) \(4^5\)