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:
- Individuals: 4 distinct boys and 2 distinct girls.
- Constraint: the two girls must be adjacent.
- Order matters, and all persons are distinct.
Concept / Approach:
- Treat the two girls as one “block” to honor adjacency.
- Count permutations of the resulting units in a row.
- Multiply by internal arrangements of the two girls within their block.
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:
- 120 counts the five units but misses the internal 2! for the girls.
- 720 is 6! ignoring the adjacency constraint.
- 148 is not a standard permutation count from this setup.
Common Pitfalls:
- Forgetting the internal permutations of the two girls.
- Accidentally counting 6! without enforcing adjacency.
Final Answer:
240
Discussion & Comments