Week 06: Discrete Vs Continuous Variables Part 2: Calculating Binomial Probabilities
Week 06: Discrete Vs Continuous Variables Part 2: Calculating Binomial Probabilities
5/13/17
Week 06: Discrete vs
Continuous Variables
Part 2: Calculating
Binomial Probabilities
Success must be defined.
Number of trials must be
determined.
The probability of success
must be known or estimated.
Sample space must be
defined.
0.1681
0.1323
0.0284
0.0024
0 1 2 3 4 5
Suppose you wanted to know the probability
that as many as 2 wells came in.
A minor adjustment in the Excel command:
=BINOM.DIST(X, n, , 1)
The 1 tells Excel to add the probabilities for all
values up to and including the x value you
designate.
=BINOM.DIST(2, 5, 0.3, 1) = 0.8369
0 1 2 3 4 5
0 1 2 3 4 5
A useful diagram . . .
and easy to sketch!
The company must have at least 2
strikes to cover its costs. What is
the probability that the company
will cover its costs or even make
money?
0 1 2 3 4 5
=1-BINOM.DIST(1,5,0.3,1) =
0.4718
0 1 2 3 4 5
What is the probability that more
than two but no more than four
wells come in?
=BINOM.DIST(4,5,0.3,1)
BINOM.DIST(2,5,0.3,1)= 0.1607
0 1 2 3 4 5
A right tailed or interior option
=BINOM.DIST.RANGE(n, , x1, x2)
Calculates the cumulative
probability of a range including the
probability of the limiting values.
What is the probability that more
than two but no more than four wells
come in?
=BINOM.DIST(4,5,0.3,1)
BINOM.DIST(2,5,0.3,1)= 0.1607
=BINOM.DIST.RANGE(5, 0.3, 3,