Chapter 3 - Sampling the Imaginary

This chapter introduced the basic procedures for manipulating posterior distributions. Our fundamental tool is samples of parameter values drawn from the posterior distribution. These samples can be used to produce intervals, point estimates, posterior predictive checks, as well as other kinds of simulations. Posterior predictive checks combine uncertainty about parameters, as described by the posterior distribution, with uncertainty about outcomes, as described by the assumed likelihood function. These checks are useful for verifying that your software worked correctly. They are also useful for prospecting for ways in which your models are inadequate.

Place each answer inside the code chunk (grey box). The code chunks should contain a text response or a code that completes/answers the question or activity requested. Make sure to include plots if the question requests them.

Finally, upon completion, name your final output .html file as: YourName_ANLY505-Year-Semester.html and publish the assignment to your R Pubs account and submit the link to Canvas. Each question is worth 5 points

Questions

3-1. Suppose the globe tossing data had turned out to be 8 water in 15 tosses. Construct the posterior distribution, using grid approximation. Plot the posterior. Use the same flat prior as before.

p_grid = seq(from = 0, to = 1, length.out = 1e3)
prior = rep(1, 1e3)
likelihood = dbinom(8, size = 15, prob = p_grid)
posterior = likelihood * prior
posterior = posterior / sum(posterior)
samples = sample(p_grid, prob = posterior, size = 1e4, replace = TRUE)
plot(x = p_grid, y = posterior, type = 'l')

3-2. Draw 10,000 samples from the grid approximation from above. Then use the samples to calculate the 90% HPDI for p.

samples = sample(p_grid, prob = posterior, size = 1e4, replace = TRUE)
HPDI(samples, prob = .90)
##      |0.9      0.9| 
## 0.3343343 0.7217217

3-3. Construct a posterior predictive check for this model and data. This means simulate the distribution of samples, averaging over the posterior uncertainty in p. What is the probability of observing 8 water in 15 tosses?

w = rbinom(1e4, size = 15, prob = samples)
simplehist(w)

mean(w==8)
## [1] 0.1388
# The probability of observing 8 water in 15 tosses is 15%.

3-4. Using the posterior distribution constructed from the new (8/15) data, now calculate the probability of observing 6 water in 9 tosses.

w = rbinom(1e4, size = 9, prob = samples)
simplehist(w)

mean(w==6)
## [1] 0.178
# The probability of observing 6 water in 9 tosses is 17%.

3-5. Start over at 3-1, but now use a prior that is zero below p = 0.5 and a constant above p = 0.5. This corresponds to prior information that a majority of the Earth’s surface is water. Repeat each problem above and compare the inferences. Plot the posterior. What difference does the better prior make? If it helps, compare inferences (using both priors) to the true value p = 0.7.

p_grid = seq(from = 0, to = 1, length.out = 1e3)
prior = ifelse(p_grid < .5, 0, 1)
likelihood = dbinom(8, size = 15, prob = p_grid)
posterior = likelihood * prior
posterior = posterior / sum(posterior)
plot(x = p_grid, y = posterior, size = 1e4,type = "l")

samples = sample(p_grid, prob = posterior, size = 1e4, replace = TRUE)
HPDI(samples, prob = .90)
##      |0.9      0.9| 
## 0.5005005 0.7127127
w = rbinom(1e4, size = 15, prob = samples)
simplehist(w)

mean(w == 8)
## [1] 0.1591
w = rbinom(1e4, size = 9, prob = samples)
simplehist(w)

mean(w == 6)
## [1] 0.2356
# the probability of observing 8 water in 15 tosses has increased trending.
# the probability of observing 6 water in 9 tosses has increased trending.

3-6. Suppose you want to estimate the Earth’s proportion of water very precisely. Specifically, you want the 99% percentile interval of the posterior distribution of p to be only 0.05 wide. This means the distance between the upper and lower bound of the interval should be 0.05. How many times will you have to toss the globe to do this?

data = function(N, true_value_p) {
  likelihood = dbinom( round(N*true_value_p), size=N, prob=p_grid )
  posterior = likelihood * prior
  posterior = posterior / sum(posterior)
  samples = sample(p_grid, prob=posterior, size=1e4, replace=TRUE )
  interval = PI(samples, prob=0.99)
  names(interval) = NULL
  diff( interval )
}

true_value_p = 0.7
N = 100
data(N, true_value_p)
## [1] 0.2302302
true_value_p = 0.7
N = 1000
data(N, true_value_p)
## [1] 0.07507508
true_value_p = 0.7
N = 2000
data(N, true_value_p)
## [1] 0.05305305
true_value_p = 0.7
N = 3000
data(N, true_value_p)
## [1] 0.04304304
true_value_p = 0.7
N = 2200
data(N, true_value_p)
## [1] 0.04905405
#It would take between 2000 and 2200 observations for the distance between the upper and lower bound of the interval to be 0.05, based on p value of 0.7.