Probability

Now that we gather some data and extracted features from them in form of variables is time to do inference, or educated guess with the data that you have available. In order to do inference we need to first understand probability.

Probability can be determined experimentally or theoretically

Theoretically

Consider below a fair dice

Here the probability of tossing the six-sided fair dice and having the value 1 is

On each toss only one value is possible (the dice only give one value at a time) and there are 6 possible values.

In order to make easier to find theoretical probabilities we may need to organize the data on tables or trees.

Experimentally

Consider that we rolled the dice 12 times with the results: 6,3,4,1,2,2,1,3,1,5,3,5

Here the experimental value is wrong but as we do more experiments the experimental probability tends to reach the theoretical value.

Some assumptions

Here we present some assumptions to guide you:

  • The sum of all probabilities is always 1

Conditional Probability

What is the probability of rolling a dice and it's value is less than 4 (B) given that the value is a odd number(A). In other words:

On this case the probability will be:

Dependence/Independence of events

It's important to define if the events has some kind of dependence or not because it will affect the way you calculate the probabilities.

  • Independent events: One event does not affect the likelihood of the next event to occur.

  • Dependent event: One event does affect the likelihood of the next event to occur.

Dependent event example:

You have a deck of cards, you shuffle them, then you take one card, and leave it out of the deck, them you take another card again, what is the probability of both been jokers.

First a deck has 52 cards, plus 2 jokers

So the probability of having a joker for the first time will be: (There are 2 jokers available on 54 cards)

Now take the joker out of the deck, shuffle and take one card again... What is the probability of having another joker ...

Now you need to consider the fact that one joker is already out

The complete probability will be:

Independent event example:

Now we do the same experiment but after we take the card you put it back again on the deck. On this case observe that the fact that we add the card back again make the events independent.

So the probability of having a joker for the first time will be: (There are 2 jokers available on 54 cards)

Now we but the card again on the deck and shuffle. What is the probability of having the joker again

The complete probability will be:

Random Variables

Random variables are any result of a stochastic system (random process) for example how many heads will occur in a series of 20 flips. The name variable is confusing is more like the output of a stochastic system. There are 2 types of random variables:

Normally all the observations from a process with uncertainties are random variables.

Example: X = Number of heads after 3 flips of a coin, calculate:

  • P(X=0)

  • P(X=1)

  • P(X=2)

  • P(X=3)

Adding all possible outcomes of a fair coin tossed 3 times

On this case:

So as mention before X is the output of a probabilistic process. Now let's also draw the probabilistic distribution for X

Probability Distribution

The probability distribution is a table, graph or function that describe all the probabilities for each possible outcome of a random process. Depending of the type of random variable the Probability distribution has different names:

  • Probability mass function: If variable is discrete

  • Probability density function: If variable is continuous.

All the values of a probability distribution are non-negative and sum to one.

The importance of the probability distribution is that you can easily infer information from it:

  • Mode: Gives you the most probable value, is the peak of the probability density function.

  • Mean or expected value: Is the weighted average of the possible values, using their probabilities as their weights

  • Median: The value such that the set of values less/bigger than the median has a probability of one-half.

Also the probability density function tells something about the random process: For example let X be the outcome of a fair dice.

On this case it's clear that all possible outcomes are equally probable.

Expected Value

The expected value is the average of a random variable. Or is a sum of the product between the random variable value and it's probability.

Example: Let X represent the outcome of a roll of a fair six-sided, calculate the expected value (or expectation) of X

Another example given the following probability distribution of a discrete random variable X

Joint probability distribution

The joint probability distribution is the probability space formed by 2 or more random variables.

Things that you can get from Joint probability distributions:

  • Check if the variables are independent and get the marginal probability function

  • Derive the joint distribution function

  • Derive the conditional probability function, conditional expectations, and conditional variance

  • Derive the joint expectation (Expected value of the product of 2 random variables]

References:

Last updated