Srihari Thyagarajan Akshay Agrawal commited on
Commit
9aa97cc
·
unverified ·
1 Parent(s): 59739a1

Expand on description

Browse files

Co-authored-by: Akshay Agrawal <[email protected]>

Files changed (1) hide show
  1. probability/02_axioms.py +3 -1
probability/02_axioms.py CHANGED
@@ -46,7 +46,9 @@ def _(mo):
46
  | **Axiom 2** | $P(S) = 1$ | The probability of the sample space is 1 |
47
  | **Axiom 3** | $P(E \cup F) = P(E) + P(F)$ | For mutually exclusive events, probabilities add |
48
 
49
- where $S$ is the sample space (all possible outcomes), and $E$ and $F$ are events.
 
 
50
  """
51
  )
52
  return
 
46
  | **Axiom 2** | $P(S) = 1$ | The probability of the sample space is 1 |
47
  | **Axiom 3** | $P(E \cup F) = P(E) + P(F)$ | For mutually exclusive events, probabilities add |
48
 
49
+ where the set $S$ is the sample space (all possible outcomes), and $E$ and $F$ are sets that represent events. The notation $P(E)$ denotes the probability of $E$, which you can interpret as the chance that something happens. $P(E) = 0$ means that the event cannot happen, while $P(E) = 1$ means the event will happen no matter what; $P(E) = 0.5$ means that $E$ has a 50% chance of happening.
50
+
51
+ For an example, when rolling a fair six-sided die once, the sample space $S$ is the set of die faces ${1, 2, 3, 4, 5, 6}$, and there are many possible events; we'll see some examples below.
52
  """
53
  )
54
  return