Suppose we have a probability space $(\Omega, \mathcal{F}, P)$. Thus, when we write $P(A \vert B)$, either $A \vert B$ is an element of the event space $\mathcal{F}$ (i.e. the domain of $P$), or this an abuse of notation. I suspect that this is simply an abuse of notation, but I'm looking for two things here:
- Am I interpreting (that is "unabusing") this notation correctly?
- Is it possible to view $A \vert B$ as an event, even if this isn't the standard way of thinking about it?
Notational Abuse?
Entertaining the second possibility (notational "abuse") I can easily imagine how to "desugar" this notation into something more formal. For instance, we could read $P(A \vert B)$ as $P_B(A)$, where $P_B$ is a probability measure on a new/derived probability space $(B, \mathcal{F}_B, P_B)$. That is, this new space has $B$ as its sample space and a different event space derived from our original event space. We can then define $P_B(A)$ in terms of our original probability measure $P$ as: $P_B(A) = \frac{P(A \cap B)}{P(B)}$. I haven't yet worked out the details (e.g. What is $\mathcal{F}_B$?, Is $P_B$ a probability measure?, etc.), but I suspect they're not too difficult.
Conditional Events?
But, is it possible to view $A \mid B$ as an event (that is, some element of $\mathcal{F}$)? This section of the Wikipedia article on Conditional Probability states that
Conditional probability can be defined as the probability of a conditional event $A_B$.
it then proceeds to define the "Goodman–Nguyen–Van Fraassen conditional event", but I haven't been able to decipher this yet.
Possible Counterexample
However, there appear to be simple examples in which $A \mid B$ just can't be an event. For instance, suppose we have a sample space $\Omega = \{ TT, TH, HT, HH \}$ and we define a probability measure using the mass function $p : \Omega \to [0, 1]$ like so:
$$ \begin{cases} p(TT) &= \frac{1}{6} \\ p(TH) &= \frac{1}{6} \\ p(HT) &= \frac{1}{6} \\ p(HH) &= \frac{1}{2} \end{cases} $$
We can think of this as some experiment involving flipping two coins that are biased in some strange way that makes double-heads more likely than other outcomes. Then the probability that ($A$) both coins land heads up given ($B$) the first coin lands heads up is
$$ \begin{align*} P(A \mid B) &= \frac{P(A \cap B)}{P(B)} \\ &= \frac{P(\{ HH \} \cap \{ HT, HH \})}{P(\{ HT, HH \})} \\ &= \frac{P(\{ HH \})}{P(\{ HT, HH \})} \\ &= \frac{p(HH)}{p(HT) + p(HH)} \\ &= \frac{\frac{1}{2}}{\frac{1}{6} + \frac{1}{2}} \\ &= \frac{3}{4} \end{align*} $$
However, no subset of the sample space has probability $\frac{3}{4}$, so $A \mid B$ can't be an event in the original probability space.
Have I made a mistake in this example, or am I misunderstanding the basic idea of "conditional events"?