Introduction to probability spaces

February 19, 2020

When describing something that requires a probabilistic description, we have to mathematically define a Probability Space is, which is done via three elements, together named, the Probability Triple. The elements of this triplet are defined as follows:

  1. - The sample space is the set of all possible outcomes.
  2. - An event space is a -Algebra over . It is a set of sets composed of the sample space.
  3. - Probability Measure that tells us the probability of each element in .

In order to undestand these further, let’s try to build a strong intuition first, and then build upon that intuition mathematically.

1. Sample Space

- Intuition

A sample space can be thought of as the set of all possible outcomes. Imagine you want to listen to music and you’re thinking about which piece of music to choose. Any and all music in your memory can be organized into a set; this is the set of all possible outcomes(songs) that is named the sample space.

- Mathematical Perspective

Once again, a sample space can be thought of as the set of all possible outcomes. Furthermore, the sample space can be tiny or infinite in size. For example, the set of all outcomes in a coin toss is 2, so the sample space {heads, tails}; the sample space, or set of all outcomes, of a die is 6 given 6 unique faces, is {1,2,3,4,5,6}. However, as an extreme example, the set of all outcomes that atoms can be arranged in the universe can be truly infinite (ever expanding infinite).

2. Event Space

- Intuition

Intuitively, we can think of the event space as subsets under some conditions from the event space that represent our probleem; in other words, we are creating a collection of subsets, where each subset is composed of elements from the sample space.

How we create this event space depends heavily on what question we are trying to ask and how we are trying to represent that question. The manner with which we represent a question is important because these sets are what we will map probabilities to; if we have irrelevant sets representing our question, we are missrepresenting our problem and the associated probabilities will not mean much. For instance, music you absolutely hate (or even duck sounds disguised as music) in your music sample space are useless, so there’s no need to include it in our event space; having consist of only the songs you already like represents the problem a lot better.

- Mathematical Perspective

We can think of the event space as a collection of subsets composed from the event space. An event space is known as a -Algebra over . A -Algebra are just the subsets of that represent our problem. Formally, is a collection of subsets of that satisfy the following properties:

  1. may contain the empty set and
  2. is closed under complements: , then , where ; is the subset of elements not found in the subset .

  3. is closed under countable unions: If , the . In other words, the unions of subset found in are still within . Similarly, is also closed under countable intersections: . This is a result from De Morgan’s Law, which states that and and the previous two properties.

Note:

  1. Having the complement of a set A written as instead of makes Morgan’s Law closer to its usual written form as: and . Or even and .

Technically, can be the entire possibility of subsets in each problem we are trying to represent, but that is not useful in all representations. For instance, if we had the die example again, .

If we had the die from the previous example with a sample space of 6, and we asked what the probability was of getting any of the 6 values, (assuming a normal die where each face is equally likely) then we’d have . Our event space here would be , since each subset would consist of a single unique element from our sample space which represents one face. Another we can use is the entire possible subsets . Notice how some of these elements like don’t even make sense for our what we are representing, so we create our event space under the conditions that fit our problem.

If we instead wanted to take the space where we want the probability of getting an even face value, then our event space would consist of subsets of the sample space where there are even numbers and another where is not (ie. the compliment of the set of even numbers); hence, . The probability of getting a number that is even is then 1/2, since our total event space is 2, and only one set satisfies the original question we were trying to represent.

3. Probability Measure

- Intuition

The Probability Measure gives probabilities to the elements in the event space, . Using our music example, this is just assigning a probability that you will listen to a song in the event space. The total probability among all events in is 1.

- Mathematical Perspective

The Probability Measure is a function that maps an event space to probabilities, so . A few properties on P are that:

  1. for all subsets
  2. , where
  3. if for all subsets . Furthermore, we can see this has countable additivity as well: , the , where .

Using the die example one more time, if your task was to find the probability of getting an even number, you had an event space of the set of even numbers and odd numbers(ie. the set of even number’s complement), . Since we have two sets of equal size, we can say that the set of even numbers can be mapped to a probability of . However, this mapping isn’t always so clear, and so you are either given this mapping or you find a way to find that relationship.

Important Note:

Sources

[1] Count Bayesie. Blog
[2] Probability space. Webpage
[3] Probability Definitions. SFU. PDF
[4] Introduction to Probability Theory. CalTech. PDF


Index
Introduction to Probability Spaces - February 19, 2020 - Volodymyr Kuleshov