202405240847
Status: #idea
Tags: Probability Theory
State: #nascient
Event
Informally, an event is any subset of of the sample space
An event will often be worded similarly to a filter in programming languages. Like we are trying to capture a subset of the data and think about its specific properties. ie: We are looking for the outcomes that are even.
event_even = df.loc[df['count_of_heads'] % 2 == 0] # checking for even
Consequences of this definition
- If something occurring is of interest, then it not occurring is also of interest (it's the dual of it in a sense)
# if we try to create a event_even, then
even_even_prime = df.drop(event_even.index) # the odd subset is created at the same time
- If two events are occurring? Then their interaction with each other will be of interest as well. What is their union? their intersection?
- The sample space is always an event by definition, it is literally the thing we are working on. Our workbench so to speak.
These altogether give us what's referred to as an Algebra.
Independence of Events
We say two events
If
A set
By that same definition, except in the aforementioned cases,