程序代写代做代考 Sample Questions for Test 2¶

Sample Questions for Test 2¶

Disclaimer: The sample questions are provided to give you a rough idea on what might be on the tests. They are not meant to be 100% comprehensive or 100% indicative of the contents of their respective assessments. In particular, there might be true/ false questions, fill-in-the-blanks questions, and/or any other types of questions not specifically included here.
In [1]:
import numpy as np
from scipy.stats import norm

**Preliminaries**
“The 100” is a popular TV series that is also available on Netflix. Per IMDB, the series can be summarised as follows:
“Set ninety-seven years after a nuclear war has destroyed civilization, when a spaceship housing humanity’s lone survivors sends one hundred juvenile delinquents back to Earth, in hopes of possibly re-populating the planet.”
Sample questions here are inspired by the 100 series (but not necessarily depicting an accurate account of what happens in the series).

**QUESTION 1:** The 100 individuals sent back to Earth can tolerate radiation to a certain degree. Specifically, the maximum radiation one of these individuals can tolerate is normally distributed with a mean of 10 grays and a standard deviation of 1.25 grays. The radiation level on the ground, however, is 8 grays. Compute the minimum number of radiation-proof suits they will need to fully accommodate the individuals who cannot tolerate the radiation on the ground.

**QUESTION 2:** The number of attacks on the 100’s camp from the grounders is 65 attacks per year (with 52 weeks in a year). Assuming the number of attacks follow a Poisson distribution, what is the probability that there is at least one attack within a 4-week period?

**QUESTION 3:** Commander of the grounders is interested whether her people would support peace with the 100 or they oppose peace. The commander randomly selects 200 grounders and it turns out 83 of them support peace.

A. Construct a 95% confidence interval for the proportion of grounders who support peace with the 100. Remember to check for any necessary conditions to construct this interval.

B. The commander’s chief counsel claims that majority of the grounders oppose peace with the 100. Does this sample provide enough evidence that the chief counsel is right at a 5% significance level? Please explain. Also report a p-value. Remember to check for any necessary conditions and also make sure to state the null and alternative hypotheses where “p” denotes the probability of supporting peace.