After careful consideration I've always enjoyed how:<p><pre><code> p(rain,coat) = p(rain) * p(coat | rain)
</code></pre>
Can be pronounced: "the probability of rain, and coat (wearing) is the probability of rain times the probability of (my wearing a) coat given rain". This intuitively showcases how the order of independent events doesn't effect the outcome, since after all:<p><pre><code> p(coat,rain) = p(rain,coat) = p(rain) * p(coat | rain)</code></pre>