← JP Morgan Interview Insights
Took me a minute to set up the counting correctly.
Use combinatorics to count the total number of ways to choose 4 people from 10, then count the favorable outcomes where exactly 2 complete couples are selected. The favorable count involves choosing 2 couples out of 5 and then selecting 2 individuals from the remaining 3 couples such that they do not form a complete couple.
Pro tip: Clearly explain your reasoning step-by-step, as interviewers value logical clarity over just the final answer. Double-check that your favorable count excludes any possibility of a third complete couple.
Compute the total number of ways to choose 4 people from 10 using combinations: C(10,4).
Determine the number of ways to choose exactly 2 complete couples from the 5 available: C(5,2).
From the remaining 3 couples (6 people), choose 2 individuals such that they do not form a complete couple. This can be done by subtracting the number of ways to choose a complete couple from the total ways to choose 2 from 6: C(6,2) - C(3,1).
Multiply the results from steps 2 and 3 to get the total number of favorable outcomes.
Divide the favorable outcomes by the total outcomes to get the probability.
AI-generated suggestions, not part of the candidate's original notes. May be inaccurate — verify before relying on them.