Difficulty: Medium
Correct Answer: 240
Explanation:
Introduction / Context:This is a classic permutations-with-a-block problem. When two specified people must sit together in a line, we can temporarily treat them as a single unit while counting arrangements, then multiply by the internal permutations of that block.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Make a block G = (G1,G2). Units to arrange: {G, B1, B2, B3, B4} → 5! ways.Internal arrangements of (G1,G2) → 2! ways.Total arrangements = 5! * 2! = 120 * 2 = 240.Verification / Alternative check:Direct adjacency counting using positions for the pair also leads to the same product 5! * 2! = 240, confirming the result.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:240
Discussion & Comments