Acorn Production

  • An individual is a “mature white oak tree in Bayfield County.”
    • The individual is not an “acorn” because, as you will see in the next question, the variable is “number of acorns.” It does not make sense to record the “number of acorns” about an individual “acorn.” Always ask yourself if it makes sense to record the variable about the individual you have identified. If not, you likely do not have the correct individual.
  • The variable is “number of acorns”, which is discrete (quantitative).
  • μ=875 and σ=220.
  • The population distribution is right-skewed.
    • This is evident because it is about the oak trees (i.e., the individuals) and is given in the background with a “suppose” preface (i.e., we suppose or assume about things, like characteristics about a population, that cannot be known.)

 

In all of the following questions, I urge you to follow these steps when answering probability questions:
  1. Identify the distribution that would be used to answer the question (population or sampling).
  2. Identify characteristics of the required distribution; i.e., whether normal or not and, if normal, the center and dispersion (SD or SE).
  3. Identify whether the question can be answered or not (can be if normal, cannot be if not normal).
  4. Answer to the question; use distrib() if the probability can be computed (i.e., normal distribution) or explain why the probability cannot be computed (i.e., specifically note which distribution is not normal).

Keep this in mind as you consider the answers below.

 

  1. The probability that a sample of 50 oak trees will produce a mean greater than 900 acorns is 0.211.
    1. Sampling distribution because “sample of 50” and “a mean of”.
    2. N(875,\(\frac{220}{\sqrt{50}}\)) because n=50>30.
    3. Can be answered because sampling distribution IS normal.
    4. Used code below for this forward (given value of “x”) right-of (“more than”) question.
    5. > distrib(900,mean=875,sd=220/sqrt(50),lower.tail=FALSE)


  1. The probability that a sample of 35 oak trees will produce a mean between 850 than 900 acorns is 0.499.
    1. Sampling distribution because “sample of 35” and “a mean of”.
    2. N(875,\(\frac{220}{\sqrt{35}}\)) because n=35>30.
    3. Can be answered because sampling distribution IS normal.
    4. Used code below for this forward (given value of “x”) between question (I suppressed the plots).
    5. > ab <- distrib(900,mean=875,sd=220/sqrt(35))
      > a <- distrib(850,mean=875,sd=220/sqrt(35))
      > ab-a
      [1] 0.4985957


  1. The probability that an oak tree will produce more than 1000 acorns cannot be answered because the population distribution is not normal.
    1. Population distribution because about “an oak tree.”
    2. The population distribution is not normal as stated in the background.
    3. Cannot answer this question because the population distribution is not normal.
    4. NA


  1. The probability that a sample of 20 oak trees will produce a mean with fewer than 1000 acorns cannot be answered because the sampling distribution is not normal.
    1. Sampling distribution because “sample of 20” and “a mean of”.
    2. Not normal because n<30 and population is strongly skewed (as stated in the background)
    3. Cannot answer this question because the sampling distribution is not normal according to the Central Limit Theorem.
    4. NA


  1. There is a 15% probability that a sample of 35 oak trees will have a mean number of acorns produced greater than 836.5.
    1. Sampling distribution because “sample of 35” and “a mean of”.
    2. N(875,\(\frac{220}{\sqrt{35}}\)) because n=35>30.
    3. Can be answered because sampling distribution IS normal.
    4. Used code below for this reverse (given percent) “greater than” question.
    5. > distrib(0.15,mean=875,sd=220/sqrt(35),type="q")