Hi there!
This is a great combinations problem that tests your ability to handle constraints. The key concept here is restricted combinations — when certain elements have placement rules, we need to account for them systematically.
Let me walk through this step-by-step:
Step 1: Understand the setup
We have 10 people total: Larry, his 2 twin sisters, and 7 others. We're forming Larry's team of 5 people, which means Larry is already on the team. We need to choose 4 more people from the remaining 9.
Step 2: Identify the constraint
The twin sisters cannot be on opposite teams. This means:
- Both sisters are with Larry, OR
- Both sisters are on the other team, OR
- One sister is with Larry and one sister sits out... wait, no — everyone must be on a team!
So really: both sisters together with Larry, or both sisters together on the opposite team.
Step 3: Use complementary counting (the easier approach)
Instead of counting valid arrangements directly, let's count total arrangements and subtract invalid ones.
Total ways to choose 4 people from the 9 remaining (ignoring constraints) = C(9,4) = 126
Step 4: Subtract invalid arrangements
Invalid = twin sisters on opposite teams. This means exactly one sister is with Larry.
- Choose 1 sister from 2: C(2,1) = 2
- Choose 3 more people from the remaining 7: C(7,3) = 35
- Invalid arrangements = 2 × 35 = 70
Step 5: Calculate the answer
Valid arrangements = 126 - 70 = 56
Answer: (C) 56
Common trap: Many students try to add the cases (both sisters with Larry + both sisters away) instead of using complementary counting, which leads to calculation errors. The constraint "cannot be on opposite teams" is actually easier to handle by identifying what violates it.
Takeaway: When you see "cannot be separated" or "cannot be on opposite sides" in combinations problems, complementary counting (Total - Violations) is often cleaner than case-by-case addition.
Hope this helps! Let me know if you have questions.