Discrete Math: Combinations Without Repetition
Combinations without Repetition
-
How many teams of $L$ people can be formed from $N$ people?
We choose $L$ people from $N$ without regard to order:
$$ \binom{N}{L} $$ -
How many teams of $L$ people can be formed from $N$ people if a specific person must be on the team?
Fix the person, then choose the remaining $L-1$ from the other $N-1$:
$$ \binom{N-1}{L-1} $$ -
How many teams of $L$ people can be formed from $N$ people if a specific person cannot be on the team?
Choose all $L$ people from the remaining $N-1$:
$$ \binom{N-1}{L} $$ -
How many teams of $L$ people can be formed from $N$ people if all $k$ specific people must be on the team?
Fix the $k$ people, then choose the remaining $L-k$:
$$ \binom{N-k}{L-k} $$ -
How many teams of $L$ people can be formed from $N$ people if exactly one of two specific people is on the team?
Choose which one is included (2 ways), then choose the remaining $L-1$ from $N-2$:
$$ 2\binom{N-2}{L-1} $$ -
How many teams of $L$ people can be formed from $N$ people if at least one of $k$ specific people is on the team?
Total minus none of them:
$$ \binom{N}{L} - \binom{N-k}{L} $$ -
How many teams of $L$ people can be formed from $N$ people if 2 people are never on the same team?
We count all teams and subtract those where both are together. Total teams:
$$ \binom{N}{L} $$ Teams where both are included:
$$ \binom{N-2}{L-2} $$ Thus the number of valid teams is:
$$ \binom{N}{L} - \binom{N-2}{L-2} $$ -
How many teams of $L$ people can be formed from $N$ people if 2 people stick together?
Let the two people be a pair.
Case 1: Both are on the team. Then we choose the remaining $L-2$ people from the other $N-2$:
$$ \binom{N-2}{L-2} $$
Case 2: Neither is on the team. Then we choose all $L$ people from the other $N-2$:
$$ \binom{N-2}{L} $$ Total:
$$ \binom{N-2}{L-2} + \binom{N-2}{L} $$ -
How many teams of $L$ people can be formed from $N$ people if no two of $k$ specific people can be on the team together?
We can choose at most one of the $k$ people. Case 1: Choose none:
$$ \binom{N-k}{L} $$
Case 2: Choose exactly one of the $k$ (there are $k$ choices), then choose $L-1$ others:
$$ k\binom{N-k}{L-1} $$ Total:
$$ \binom{N-k}{L} + k\binom{N-k}{L-1} $$

Comments
Post a Comment