Probability theory is the mathematical foundation for statistics and is covered in chapter 3 of our text. In this portion of our outline, we'll look briefly at the beginning of that chapter.
That last bullet point is called the Law of Large Numbers and is a pillar of probability theory.
The Law of Large Numbers can be written symbolically as
$$P(A) \approx \frac{\# \text{ of occurrences of } A}{\# \text{ of trials}}.$$More importantly, the error in the approximation approaches zero as the number of trials approaches $\infty$.
Again, this is a symbolic representation where:
In the vizualization below, $n$ represents the number of experiments, $p$ represents the probability of success and the graph shows the proportion of successes in the first $k$ experiments. As $n$ increases, that proportion should converge to $p$.
It's important to understand that observations made in the Law of Large numbers are independent - the separate occurrences have nothing to do with one another and prior events cannot influence future events.
We now turn to the question of how to compute the probabily of certain types of events, which is not so bad, once you understand a few formulae and basic principles.
The serious, mathematical study of probability theory has its origins in the $17^{\text{th}}$ century in the writings of Blaise Pascal who studied - gambling. Many elmentary examples in probability theory are still commonly phrased in terms of gambling. As a result, it's long standing tradition to use coin flips, dice rolls and playing cards to illustrate the basic principles of probability. Thus, it does help to have a basic familiarity with these things.
A standard deck of playing cards consists of 52 cards divided into 13 ranks each of which is further divided into 4 suits
When we speak of a "well shuffled deck" we mean that, when we draw one card, each card is equally likely to be drawn. Similarly, when we speak of a fair coin or a fair die, we mean each outcome produced (heads/tails or 1-6) is equally likely to occur.
That brings us our first formula for computing probabilities!
When when the sample space is a finite set and all the individual outcomes are all equally likely, then the probability of an event $A$ can be computed by
$$P(A) = \frac{\# \text{ of possibilities in } A}{\text{total } \# \text{ of possibilities}}.$$Suppose we draw a card from a well shuffled standard deck of 52 playing cards.
The events $A$ and $B$ are called mutually exclusive if only one of them can occur. Another term for this same concept is disjoint. If we know the probability that $A$ occurs and we know the probability that $B$ occurs, then we can compute the probability that $A$ or $B$ occurs by simply adding the probabilities. Symbolically,
$$P(A \text{ or } B) = P(A) + P(B).$$I emphasize, this formula is only valid under the assumption of disjointness.
We again draw a card from a well shuffled standard deck of 52 playing cards.
If two events are not mutually exclusive, we have to account for the possibility that both occur. Symbolically:
$$P(A \text{ or } B) = P(A) + P(B) - P(A \text{ and } B).$$Yet again, we draw a card from a well shuffled standard deck of 52 playing cards.
Now, things are getting a little tougher so let's include the computation for that second one right here. Let's define our symbols and say
\begin{align*} A &= \text{we draw an odd numbered card} \\ B &= \text{we draw a club}. \end{align*}In a standard deck, there are four odd numbers we can draw: 3, 5, 7, and 9; and four of each of those for a total of 16 odd numbered cards. Thus, $$P(A) = \frac{16}{52} = \frac{4}{13}.$$ There are also 13 clubs so that $$P(B) = \frac{13}{52} = \frac{1}{4}.$$
Now, there are four odd numbered cards that are clubs - the 3 of clubs, the 5 of clubs, the 7 of clubs, and the 9 of clubs. Thus, the probability of drawing an odd numbered card that is also a club is $$P(A \text{ and } B) = \frac{4}{52} = \frac{1}{13}.$$ Putting this all together, we get $$P(A \text{ or } B) = \frac{4}{13} + \frac{1}{4} - \frac{1}{13} = \frac{25}{52}.$$
When two events are independent, we can compute the probability that both occur by multiplying their probabilities. Symbolically, $$P(A \text{ and } B) = P(A)P(B).$$
Suppose I flip a fair coin twice.
When two events $A$ and $B$ are not independent, we can use a generalized form of the multiplication rule to compute the probability that both occur, namely $$P(A \text{ and } B) = P(A)P(B|A).$$ That last term, $P(B|A)$, denotes the conditional probability that $B$ occurs under the assumption that $A$ occurs.
We draw two cards from a well-shuffled deck. What is the probability that both are hearts?
We draw two cards from a well-shuffled deck. What is the probability that both are hearts?
The probability of that the first is a heart is $13/52=1/4$. The probability that the second card is a heart is different because we now have a deck with 51 cards and 12 hearts. Thus, the probability of getting a second heart is $12/51 = 4/17$. Thus, the answer to the question is $$\frac{1}{4}\times\frac{4}{17} = \frac{1}{17}.$$ To write this symbolically, we might let
Then, we express the above as $$P(A \text{ and } B) = P(A)P(B\,|\,A) = \frac{1}{4}\times\frac{4}{17} = \frac{1}{17}.$$
Sometimes, it is the computation of conditional probability itself that we are interested in. Thus, we might rewrite our general multiplication rule in the form $$P(B\,|\,A) = \frac{P(A \text{ and } B)}{P(A)}.$$
What is the probability that a card is a heart, given that it's red?
In statistics, we'd often like to compute probabilities from data. For example, here's a contingency table based on our CDC data relating smoking and exercise:
exer/smoke | 0 | 1 | All |
---|---|---|---|
0 | 0.12715 | 0.12715 | 0.2543 |
1 | 0.40080 | 0.34490 | 0.7457 |
All | 0.52795 | 0.47205 | 1.0000 |
From here, it's pretty easy to read off basic probabilities or compute conditional probabilities.
The probability that a someone smokes, given that the exercise is $0.34490$
$$P(\text{smoke}|\text{exercise}) = \frac{P(\text{smokes} \cap \text{exercises})}{P(\text{exercises})} = \frac{0.3449}{0.7457} = 0.462518.$$