Note:
  • Probabilities are ALWAYS written as decimal value between 0 and 1. Do not convert to a percentage or leave as a fraction. Also note that we discussed probabilities being reported as at least 3 but no more than 4 decimals.
  • Probabilities are not “odds” so don’t say, for example in the first question below, that “the odds of a chipmunk eating an acorn is 0.47.” Odds are the probability of an event divided by the probability of not that event.

Food Choice by Chipmunks

  1. The probability that a chipmunk eats an acorn is 0.471 (\(=\frac{8}{17}\)).
  2. The probability that a chipmunk eats a kernel of corns is 0.529. (\(=\frac{9}{17}\))
  3. The probability that a chipmunk eats a kernel of corn assuming that it has already eaten six kernels of corn and no acorns is 0.273 (\(=\frac{3}{11}\)).

In the questions below note that you must:
  • Explicitly state which distribution (population or sampling) is to be used to answer the question and why that distribution is used (question is about an individual or a statistic from a sample).
  • Explicitly state whether the distribution is normal or not and how you know whether it is or is not normal. For population distributions you will be told in the background if it is normal or not. For sampling distributions you will have to determine if one of the three criteria of the Central Limit Theorem has been met.
  • Explicitly state whether you can answer the question or not. Simply, the question can be answered if the required distribution is normal (as determined as described above). If the distribution is not normal then you should say that you “cannot answer the question” because the PARTICULAR distribution is not normal. You should explicitly state which distribution it is that is not normal. See the answers below for examples.

Pollutants in Auto Exhaust

  1. About a mean from n=50 …
    1. Sampling (because about a statistic from a sample).
    2. x̄~N(0.9,\(\frac{0.15}{\sqrt{50}}\)=0.0212) because n≥30.
    3. Can be answered (because sampling distribution is normal).
    4. 0.1729.
  2. About an individual …
    1. Population (because about an individual).
    2. Right-skewed (not normal).
    3. Can NOT be answered (because population distribution is not normal).
    4. Can’t answer.
  3. About a mean from n=50 …
    1. Sampling (because about a statistic from a sample).
    2. x̄~N(0.9,\(\frac{0.15}{\sqrt{50}}\)=0.0212) because n≥30.
    3. Can be answered (because sampling distribution is normal).
    4. 0.0092.
  4. About a mean from n=15 …
    1. Sampling (because about a statistic from a sample).
    2. x̄~N(0.9,\(\frac{0.15}{\sqrt{50}}\)=0.0212) because n≥15 and the population distribution is not strongly skewed (assume not strongly skewed unless it says strongly skewed).
    3. Can be answered (because sampling distribution is normal).
    4. 0.0049.
  5. About a mean from n=50 …
    1. Sampling (because about a statistic from a sample).
    2. x̄~N(0.9,\(\frac{0.15}{\sqrt{50}}\)=0.0212) because n≥30.
    3. Can be answered (because sampling distribution is normal).
    4. 0.949 g/mi.

R Appendix.

distrib(0.92,mean=0.9,sd=0.15/sqrt(50),lower.tail=FALSE)
distrib(0.85,mean=0.9,sd=0.15/sqrt(50))
distrib(1,mean=0.9,sd=0.15/sqrt(15),lower.tail=FALSE)
distrib(0.01,mean=0.9,sd=0.15/sqrt(50),lower.tail=FALSE,type="q")

People in Car

  1. No. Left side will be truncated at 0 (i.e., more than 2 SD away from mean becomes negative, which is not possible). Discrete data with lots of ones and twos with few higher than that.
  2. About a mean from n=40 …
    1. Sampling (because about a statistic from a sample).
    2. x̄~N(1.5,\(\frac{0.75}{\sqrt{40}}\)=0.1186) because n≥30.
    3. Can be answered (because sampling distribution is normal).
    4. 0.0057.
  3. About a mean from n=5 …
    1. Sampling (because about a statistic from a sample).
    2. Not normal because n<15 and the population distribution is not normal.
    3. Can NOT be answered (because sampling distribution is not normal).
    4. Can’t answer.
  4. About a mean from n=50 …
    1. Sampling (because about a statistic from a sample).
    2. x̄~N(1.5,\(\frac{0.75}{\sqrt{50}}\)=0.1061) because n≥30.
    3. Can be answered (because sampling distribution is normal).
    4. 0.0000012.
  5. About a mean from n=700 (through a total) …
    1. Sampling (because about a statistic from a sample).
    2. x̄~N(1.5,\(\frac{0.75}{\sqrt{700}}\)=0.0283) because n≥30.
    3. Can be answered (because sampling distribution is normal).
    4. 0.1039.

R Appendix.

distrib(1.2,mean=1.5,sd=0.75/sqrt(40))
distrib(2,mean=1.5,sd=0.75/sqrt(50),lower.tail=FALSE)
distrib(1075/700,mean=1.5,sd=0.75/sqrt(700),lower.tail=FALSE)

Banking

  1. About an individual …
    1. Population (because about an individual).
    2. x~N(550,150) as given in the background.
    3. Can be answered (because population distribution is normal).
    4. 0.0098
  2. About a mean from n=5 …
    1. Sampling (because about a statistic from a sample).
    2. x̄~N(550,\(\frac{150}{\sqrt{5}}\)=67.0820) because the population distribution is normal.
    3. Can be answered (because sampling distribution is normal).
    4. 0.7720.
  3. About an individual …
    1. Population (because about an individual).
    2. x~N(550,150) as given in the background.
    3. Can be answered (because population distribution is normal).
    4. 0.0478
  4. About a mean from n=10 …
    1. Sampling (because about a statistic from a sample).
    2. x̄~N(550,\(\frac{150}{\sqrt{10}}\)=47.4342) because the population distribution is normal.
    3. Can be answered (because sampling distribution is normal).
    4. 0.8533.

R Appendix.

distrib(200,mean=550,sd=150)
distrib(600,mean=550,sd=150/sqrt(5))
distrib(800,mean=550,sd=150,lower.tail=FALSE)
ab <- distrib(700,mean=550,sd=150/sqrt(10))
a <- distrib(500,mean=550,sd=150/sqrt(10))
ab-a