Permutations & Combinations
As you may have already noticed, finding patterns in the possible ways events can occur is very useful in helping us count the number of desirable events in our sample space. Two of the easiest methods for doing this are with permutations (when order matters) and combinations (when order doesn't matter).
Permutations
An ordered arrangement of objects from a set, , of objects (where ) is called an -element permutation of . You can also think of this as a permutation of 's elements taken at a time. The number of -element permutations of an -object set is denoted by the following formula:
Note: We define to be ; otherwise, would be (when ).
permutations = 3 * 2 * 1 = 3! = 6
-> written as n!
- of a subset
k-permutations = 8 * 7 * 6 = 3366
select k elements out of a pool of n objects
- with replacement
Now the number of possible outcomes is 3 * 3 * 3.
Generalizing this to n, this means that the number of permutations with replacenent when having n distinct objects is equal to n^j where j is the number of “draws”.
Combinations
An unordered arrangement of objects from a set, , of objects (where ) is called an -element combination of . You can also think of this as a combination of 's elements taken at a time.
Because the only difference between permutations and combinations is that combinations are unordered, we can easily find the number of -element combinations by dividing out the permutations ():
When we talk about combinations, we're talking about the number of subsets of size that can be made from a set of size . In fact, is often referred to as " choose ", because it's counting the number of -element combinations that can be chosen from a set of elements. In notation, is typically written as .
In general, combinations answer the question: "How many ways can we create a subset k out of n objects?". The subset is not ordered.
We define a binomial process to be a binomial experiment meeting the following conditions:
The number of successes is k.
The total number of trials is n.
The probability of success of 1 trial is p.
The probability of failure of 1 trial q, where q = 1 - p.
b(n, k, p) is the binomial probability, meaning the probability of having exactly successes out of n trials.
The binomial random variable is the number of successes, k, out of n trials.
The binomial distribution is the probability distribution for the binomial random variable, given by the following probability mass function:
Last updated