Login
📚 Statistics with Technology 2e
Chapters ▾
⇩ Download ▾

7.2 One-Sample Proportion Test

There are many different parameters that you can test. There is a test for the mean, such as was introduced with the z-test. There is also a test for the population proportion, p. This is where you might be curious if the proportion of students who smoke at your school is lower than the proportion in your area. Or you could question if the proportion of accidents caused by teenage drivers who do not have a drivers’ education class is more than the national proportion.

To test a population proportion, there are a few things that need to be defined first. Usually, Greek letters are used for parameters and Latin letters for statistics. When talking about proportions, it makes sense to use p for proportion. The Greek letter for p is π, but that is too confusing to use. Instead, it is best to use p for the population proportion. That means that a different symbol is needed for the sample proportion. The convention is to use, p^, known as p-hat. This way you know that p is the population proportion, and that p^ is the sample proportion related to it.

Now proportion tests are about looking for the percentage of individuals who have a particular attribute. You are really looking for the number of successes that happen. Thus, a proportion test involves a binomial distribution.

Hypothesis Test for One Population Proportion (1-Prop Test)

  1. State the random variable and the parameter in words.
    x = number of successes
    I = proportion of successes
  2. State the null and alternative hypotheses and the level of significance
    Ho:p=po, where po is the known proportion
    HA:p<po
    HA:p>po, use the appropriate one for your problem
    HA:ppo
    Also, state your α level here.
  3. State and check the assumptions for a hypothesis test
    1. A simple random sample of size n is taken.
    2. The conditions for the binomial distribution are satisfied
    3. To determine the sampling distribution of p^, you need to show that np5 and nq5, where q=1p. If this requirement is true, then the sampling distribution of p^ is well approximated by a normal curve.
  4. Find the sample statistic, test statistic, and p-value
    Sample Proportion:
    p^=xn=# of successes # of trials 
    Test Statistic:
    z=p^pnpq
    p-value:
    TI-83/84: Use normalcdf(lower limit, upper limit, 0, 1) R: Use pnorm(z, 0, 1)
  5. Conclusion
    This is where you write reject Ho or fail to reject Ho. The rule is: if the p-value < α, then reject Ho. If the p-value α, then fail to reject Ho.
  6. Interpretation
    This is where you interpret in real world terms the conclusion to the test. The conclusion for a hypothesis test is that you either have enough evidence to show HA is true, or you do not have enough evidence to show HA is true.

Notice, the conclusion is that there wasn't enough evidence to show what H1 said. The conclusion was not that you proved Ho true. There are many reasons why you can’t say that Ho is true. It could be that the countries you chose were not very representative of what truly happens. If you instead looked at all high-income countries and compared them to low-income countries, you might have different results. It could also be that the sample you collected in the low-income country was not representative. It could also be that income level is not an indication of breastfeeding habits. There could be other factors involved. This is why you can’t say that you have proven Ho is true. There are too many other factors that could be the reason that you failed to reject Ho.

Homework