- The 2010 American Community Survey estimates that 47.1% of women ages 15 and over are married.
- We can view this as a Bernoulli distribution with being married as our success criteria with a \(p = .471\)
September 21, 2015
(1-.471)^2 * .471
## [1] 0.1318051
.471^3
## [1] 0.1044871
1/.471
## [1] 2.123142
sqrt((1-.471)/(.471^2))
## [1] 1.544212
1/.3
## [1] 3.333333
sqrt((1-.3)/(.3^2))
## [1] 2.788867
Decreasing the probability of an event occurring serves to increase the mean of the distribution and it's standard deviation.