Answer on Question #55687 – Math – Statistics and Probability
Question
In 2014 the Department of Social Services reported that 32% of current marriages in Australia were expected to end in divorce.
Find the probability that more than 8 marriages out of a random sample of 20 marriages which were current in 2014 would end in divorce.
Solution
We need to find the following probability: .
Obviously, more than 8 divorces means either 9 divorces or 10 divorces or 11 divorces and so on and so forth:
Now, let us find the probability of exactly divorces.
A divorce happens with a probability .
If we have divorces, then we have happy couples not divorced. Assume that couples 1 through have divorced, while others have not. It means that marriage ended with a divorce (with probability ), and the one ( again), ..., while did not end with a divorce (with probability ), ... These events occurred simultaneously, so we should multiply their probabilities: .
But it could've happened with the other combination of marriages chosen from 20, while there are ways to choose couples from 20. Thus, we have
Thus,
Substituting we have
(it was computed by means of Wolfram|Alpha Widgets: Binomial Distribution Calculator).
In Wolfram Mathematica we can also use
functbin[n_]:=BinomialDistribution[n,0.32];
In Excel 2013 it can be calculated by means of the following expression:
In Excel 2010 and Excel 2013 it can be calculated by means of the following expression:
In Excel 2000, Excel XP, Excel 2003, Excel 2007, Excel 2010, Excel 2013 it can be calculated by means of the following expression:
=BINOMDIST(20;20;0.32;TRUE)-BINOMDIST(8;20;0,32;TRUE)
The meaning of the functions are the following:
BINOM.DIST.RANGE(n; p; x; y)=the probability there are between and successes (inclusive) in trials where the probability of success on any trial is .
BINOMDIST(x; n; p; TRUE)=cumulative probability distribution F(x) value at x for the binomial distribution B(n, p), i.e. the probability that there are at most x successes in n trials where the probability of success on any trial is p. Here x is a non-negative integer, n is a positive integer, 0<p<1. A value of TRUE returns the cumulative distribution function.
BINOM.DIST is equivalent to BINOMDIST:
BINOM.DIST(number_success; number_trial; p; TRUE).
In R language it can be calculated by means of the following expression:
pbinom(20,20,0.32)-pbinom(8,20,0.32)
Answer: 0.1568.
www.AssignmentExpert.com
Comments