Chapter 6: Inference for Proportions

Size: px
Start display at page:

Download "Chapter 6: Inference for Proportions"

Transcription

1 Chapter 6: These otes reflect material from our text, Explorig the Practice of Statistics, by Moore, McCabe, ad Craig, published by Freema, The Logic of a Cofidece Iterval for a Proportio Suppose we are studyig a biary categorical variable such as what proportio of the populatio will vote for a specific propositio i the ext electio. After the electio, this proportio of the etire votig populatio becomes kow; call it p. If we iterview a sample of voters before the electio, or i a exit poll, the we kow from the last chapter that the samplig distributio of the sample proportio ˆp of all voters i our sample votig for the propositio is a approximately ormal distributio with mea p ad stadard deviatio p(1 p)/. The proper ame for the stadard deviatio of a statistic is stadard error, so we will ofte write SE = p(1 p)/. But ow, 95% of a ormal distributio falls withi 1.96 stadard deviatios of its mea, so with probability 95%, the distace from the ceter p of our ormal samplig distributio to the sample proportio ˆp is less tha or equal to 1.96 SE. Well, the distace from A to B is the same as the distace from B to A, so we ca tur that aroud ad say that there is a 95% probability that such a iterval cetered o ˆp ad with radius 1.96 SE will cotai the populatio proportio p. Fially, 1.96 is a particular z-value associated with 95%, so let z = The the ceter of our cofidece iterval for a proportio is the poit estimate ˆp, the margi of error of the iterval is ME = z SE, ad the etire cofidece iterval has the form poit estimate ± ME = ˆp ± z SE. Logic of a CI If the distace from 0 to a data poit is < 2, the the distace from the data poit to 0 is < Sprig 2017 Page 1 of 13

2 Samplig distributio of ˆp Variable Statistic Shape Ceter Stadard Error Coditios p(1 p) categorical ˆp Normal p mi(p, (1 p)) 10 The stadard deviatio of a statistic is its stadard error: p(1 p) SEˆp = σˆp =. Whe it is kow, this value idicates the accuracy of ˆp. Whe it is ot kow, which is ofte the case, we use the estimated stadard error sˆp i its place (Rice, p.213). It is calculated from the data. ˆp(1 ˆp) sˆp =. Typical R code for a 95% cofidece iterval for a proportio # Peck, 1/e, ex p.hat < <- 200 alpha < z.star <- qorm(1 - alpha/2) se <- sqrt(p.hat * (1 - p.hat) / ) ci <- p.hat + z.star * se * c(-1, 1) # The above code explicitly iserts plus ad mius sigs to create upper ad lower limits for the cofidece iterval. Aother way to achieve the same result is to have the fuctio qorm retur a pair of z.star values. z.star <- qorm(c(alpha/2, 1 - alpha/2)) ci <- p.hat + z.star * se ci # Sprig 2017 Page 2 of 13

3 Hypothesis tests for statistical iferece There are four steps i the formal process of usig hypothesis tests for statistical iferece (Probability ad Statistics, Ope Learig Iitiative, CMU): Hypotheses. Formulate the ull ad alterative hypotheses. Data ad sample statistic. Collect relevat data from a radom sample ad summarize them usig a appropriate sample statistic. Verify the coditios which determie the distributio of the sample statistic. p value. Calculate the associated p value, the probability of obtaiig the observed sample statistic if the ull hypothesis is true. Coclusio. Decide whether or ot there is eough evidece to reject H 0 ad accept H A, ad state the coclusio i cotext. Example: a aciet coi A aciet piece of eight from a pirate s treasure claims to be a fair coi. Skeptical olookers ask for a bit of evidece, so the coi is flipped 100 times ad comes up heads 61 times. What should we believe? There are two hypotheses. The ull hypothesis assumes that othig is amiss. The alterative hypothesis states the cotrary. Let p be the probability of obtaiig a head with this coi. H 0 : p = 0.5 H a : p 0.5 The sample proportio is ˆp = 61/100 = 0.61, ad the stadard error of this statistic, assumig that the ull hypothesis is true, is so the z-score of ˆp is SE = p(1 p)/ = 0.05, z = (ˆp p)/se = 2.2. The probability of obtaiig a score this extreme or larger is 0.028, so the olookers quickly arrive at a coclusio. What did they coclude? Sprig 2017 Page 3 of 13

4 R code for the aciet coi # hypothesis test for a proportio # a aciet piece of eight claims to be a fair coi # H_0 : p == 0.5 # H_a : p!= 0.5 h <- 61; <- 100 p.hat <- h / p <- 0.5 se <- sqrt(p * (1 - p) / ) z <- (p.hat - p) / se # 2.2 p.value <- 2 * (1 - porm(z)) # Hypothesis Test (coi) p = z = Sprig 2017 Page 4 of 13

5 Sigificace (alpha, beta, ad power) A Type I error occurs if we reject H 0 whe H 0 is true. The probability of doig so is the sigificace level α of the hypothesis test. A Type II error occurs if we fail to reject H 0 whe H 0 is false. The probability of doig so is deoted by β. The power of a test is 1 β. The power of a hypothesis test is the probability of acceptig the alterative hypothesis H a whe the alterative hypothesis is true. If the alterative hypothesis is that a ew drug is more effective tha a established drug, the the power of the hypothesis test is very importat to the researcher s efforts to establish that fact. Decisio Reality Fail to reject H 0 Reject H 0 H 0 true correct Type I error H 0 false Type II error correct I the illustratios below, the z-test statistic has a stadard ormal distributio whe H 0 is true, illustrated by the curve o the left of each pair. The sigificace α is the area of the yellow regio. If the alterative hypothesis H a is true, ad the z-test statistic actually has a ormal distributio with mea 4 ad stadard deviatio 1, as i the curves o the right i the illustratios below, the β is the area of the regio i red. I the illustratio o the upper right, the power is the area of the regio i ta. Notice that reducig the probability of makig a Type I error amouts to shiftig the dividig lie separatig the yellow ad red areas to the right, reducig the area of the yellow regio, ad that will automatically icrease the probability of makig a Type II error, the area of the red regio. The size of β, ad hece of the power, 1 β, is very sesitive to the positio ad shape of the distributio of the z-statistic for the alterative hypothesis. Shiftig its mea to the left or right, or icreasig or decreasig its spread will affect β ad 1 β. These are samplig distributios, so the sample size,, plays a sigificat role i determiig the spread of these distributios. As gets larger, the spreads get arrower, so β gets smaller ad the power gets larger. alpha ad beta power icrease beta decrease beta Sprig 2017 Page 5 of 13

6 Oe proportio At oe poit, we studied a aciet coi recovered from a pirate s treasure chest, ad we wished to kow if the coi was fair or ot, that is, if it were flipped a large umber of times would the proportio of resultig heads be very close to 0.5. I this case, the relevat experimet is to flip the coi oce, ad the respose variable is categorical, the outcome is either a head or a tail. The evidece to decide the issue will be the outcomes from a certai umber of idepedet experimets. There are two ways to aalyze this evidece, by costructig a cofidece iterval or by performig a hypothesis test. The first step i both types of aalysis is to establish some defiitios ad otatio for expressig our ideas clearly. I this case, the populatio proportio, p, is the log ru probability of obtaiig a head o flippig the aciet coi. The sample proportio, ˆp, is the actual proportio of heads we observe i our sample of flips. Now, ˆp is a statistic, it varies from oe sample to the ext, so it has a samplig distributio. The stadard deviatio of that samplig distributio is called its stadard error, SE. For a proportio, the stadard error is give by SE = p(1 p)/ whe p is kow, ad SE = ˆp(1 ˆp)/ whe p is ukow. The Cetral Limit Theorem, CLT, applied to proportios shows that ˆp N(mea = p, SE = p(1 p)/) provided that certai coditios are satisfied : (1) the sample observatios are idepedet, ad (2) the sample size is sufficietly large, which is determied by the success-failure coditios (p 10 ad (1 p) 10). A cofidece iterval for a proportio ow takes the form poit estimate ± multiplier SE ˆp(1 ˆp) ˆp ± z where the multiplier, z, depeds o the desired cofidece level. For istace, for sigificace level α = 0.05 ad 95% cofidece we would use z = 1.96, ad for a more geeral (1 α) level of cofidece we would calculate z with the R commad qorm(1 alpha/2). A hypothesis test for a proportio posits the ull hypothesis H 0 : p = p 0, where p 0 = 0.5 i this case because of the ull assumptio that this is a fair coi, agaist a alterative hypothesis, which may take oe of three forms: The test statistic is H 0 : p p 0, H 0 : p > p 0, H 0 : p < p 0. z = (ˆp p 0 )/SE where the formula for the stadard error takes ito accout the presumptio of the ull hypothesis, sice p 0 is the ull value. SE = p 0 (1 p 0 )/ Sprig 2017 Page 6 of 13

7 We decide betwee the ull ad alterative hypotheses by calculatig the probability, called the p value, of obtaiig the test statistic that we actually did obtai from our evidece uder the coditios specified by the ull hypothesis. We summarize the above aalyses i the followig iferece table for a sigle proportio. Iferece Cofidece Iterval Test Statistic poit estimate ± multiplier SE (poit estimate - ull value) / SE proportio ˆp ± z ˆp(1 ˆp) p (ˆp p 0 )/ 0(1 p 0) Two proportios Suppose that we ow focus o two garly cois from the pirate s treasure. Is oe of them more likely tha the other to preset a head whe flipped, or do both cois share the same probability of comig up heads? This time we oce agai have a biary respose variable as a outcome, heads or tails, but the data come from two sources, the two cois. We have a biary explaatory variable with levels coi 1 ad coi 2. Let p 1 be the probability that coi 1 comes up heads, ad let p 2 be the probability that coi 2 comes up heads. The questio becomes, is p 1 = p 2? We ca ivestigate this questio with a hypothesis test whose ull hypothesis is H 0 : p 1 = p 2, or with a cofidece iterval which would put plausible bouds o the differece p 1 p 2. I both cases, the basic experimet is to flip each coi a certai umber of times ad record the outcome of each flip, head or tail. Let 1 be the umber of flips ad ˆp 1 the proportio of heads for coi 1 ad let 2 be the umber of flips ad ˆp 2 the proportio of heads for coi 2. The cofidece iterval for the differece of two proportios takes the form poit estimate ± multiplier SE where the poit estimate is ˆp 1 ˆp 2, the multiplier is z as before, ad the stadard error of our ew statistic is p 1 (1 p 1 ) SE = + p 2(1 p 2 ) 1 2 Notice that this formula for SE takes ito accout the variability of each coi. Therefore, the formula for the cofidece iterval for the differece of two proportios takes the form poit estimate ± multiplier SE (ˆp 1 ˆp 2 ) ± z p 1 (1 p 1 ) + p 2(1 p 2 ) 1 2 For a hypothesis test, the test statistic takes the form z = (poit estimate ull value)/se, where the ull value ad the SE are calculated assumig that the ull hypothesis is true. Sprig 2017 Page 7 of 13

8 The stadard error for the differece of two proportios for cofidece itervals ad for ull hypotheses of the form H 0 : p 1 p 2 0 is p 1 (1 p 1 ) SE = + p 2(1 p 2 ) 1 2 is where The stadard error for the differece of two proportios for ull hypotheses of the form H 0 : p 1 p 2 = 0 ˆp pool (1 ˆp pool ) SE = + ˆp pool(1 ˆp pool ) 1 2 ˆp pool = umber of successes i both groups combied All of the above cases for a categorical respose variable are summarized i the followig table. Iferece Cofidece Iterval Test Statistic poit estimate ± multiplier SE (poit estimate - ull value) / SE proportio ˆp ± z ˆp(1 ˆp) (ˆp p 0 )/ differece i proportios (ˆp 1 ˆp 2 ) ± z ˆp 1(1 ˆp 1) 1 + ˆp2(1 ˆp2) ( (ˆp1 2 ˆp 2 ) 0 ) / p 0(1 p 0) ˆp(1 ˆp) 1 + ˆp(1 ˆp) 2 For hypothesis tests ivolvig a differece i proportios, the test statistic may make use of the pooled proportio, ˆp, which pools the total umber of successes ad the total umber of observatios i the two samples: p pooled = # successes # observatios. For sigificace level α, for istace α = 0.05 for a 95% cofidece level, the multiplier z ca be calculated i R with alpha < z.star <- qorm(1 - alpha/2) May proportios How ca oe compare more tha two cois? Do they all share the same probability of producig a head, or is at least oe of the cois differet? A efficiet approach to the problem of multiple comparisos goes back to the tur of the cetury with Karl Pearso s discovery i 1900 of the chi-squared test, oe of the earliest statistical tests to be clearly explaied. We will study the chi-square test for goodess of fit ad the chi-square test for idepedece i a later chapter. Sprig 2017 Page 8 of 13

9 Differece of Two Proportios Hadedess Wikipedia uses a hypothetical radom sample of left- ad right-haded people to illustrate its article o cotigecy tables. right-haded left-haded total males females totals A first questio suggested by such a table is How may people are left-haded? The totals alog the bottom row idicate that, i this sample at least, about 13% of the (hypothetical) populatio that this sample was draw from is left-haded. The table also presets data o geder, so aother questio arises, Are males ad females equally likely to be left-haded? The mosaic plot o the left illustrates the distributio of hadedess i the sample, ad the plot o the right illustrates the proportios we would expect if hadedess were idepedet of geder. There is a differece, but is the differece i proportios simply due to radom samplig from male ad female populatios that are equally likely to be left-haded, or is the differece so great that we ca take it as evidece that males ad females actually differ i their likelihood to be left-haded? Hadedess i the Sample Expected Values if Hadedess Is Idepedet of Geder m f m f left left Haded right Haded right Geder Geder A hypothesis test of the differece of two proportios addresses that questio directly. Let p 1 be the proportio of left-haded me, ad let p 2 be the proportio of left-haded wome. The hypotheses to be tested are H 0 : p 1 p 2 = 0, H a : p 1 p 2 0. The poit estimate of the differece of proportios is ˆp 1 ˆp 2 = , the pooled proportio of left-haded people is p pooled = 0.13, ad the stadard error of this statistic is ( 1 SE = p pooled (1 p pooled ) + 1 ) = , 1 2 so the test statistic is z = (ˆp 1 ˆp 2 )/SE = Sprig 2017 Page 9 of 13

10 The test statistic z has a stadard ormal distributio, ad the probability of obtaiig a value this large or larger is p = Hypothesis Test (Hadedess) p = z = If males ad females are equally likely to be left-haded, we might expect to see a differece i the proportios of left- ad right-haded males ad females as large or larger tha we observed i about 18% of such samples. That is ot very much evidece agaist the ull hypothesis, so we fail to reject the ull hypothesis ad coclude that, i the light of this case at least, males ad females are equally likely to be left-haded. R Code # HT Here is supportig R code for the hypothesis test. x1 <- 9; 1 <- 52; x2 <- 4; 2 <- 48 p1.hat <- x1 / 1 p2.hat <- x2 / 2 p.pooled <- (x1 + x2) / (1 + 2) # 0.13 se <- sqrt(p.pooled * (1 - p.pooled) * (1 / / 2)) # z <- (p1.hat - p2.hat) / se # p.value <- 2 * (1 - porm(z)) # Sprig 2017 Page 10 of 13

11 Differece of Two Proportios Smokig The ad Now Here is aother hypothetical example. Suppose you come across a magazie article reportig o the icidece of smokig i Sewaee studets some years ago, say i the year Accordig to this article, a radom sample of Sewaee studets was asked Have you smoked at least oe cigarette i the last week? ad the article reports the umber of studets who respoded Yes. Hmm, you thik. I woder how that would compare with Sewaee studets today? So, of course, the atural thig to do is to take aother radom sample of today s Sewaee studets ad ask the same questio. First, let s defie some variables. Let p 1 deote the proportio of Sewaee studets who smoked i 1890, ad let p 2 deote the proportio of Sewaee studets who smoke ow. Here, whether a studet is cosidered to be a smoker or ot is determied by his aswer to that same questio. There are two differet ways to orgaize this study: calculate a cofidece iterval for the differece of populatio proportios p 2 p 1 to quatify how the proportio of smokers might have chaged, or create a hypothesis test to test whether these two populatio proportios are the same or ot. Let s create the cofidece iterval first. We record the results of the surveys symbolically: ˆp 1 is the proportio of the 1 studets reportig Yes i 1890, ad ˆp 2 is the proportio of the 2 studets reportig Yes this year. Our poit estimate for the differece i the populatio proportios is ˆp 2 ˆp 1, ad the stadard error of this statistic is ˆp 1 (1 ˆp 1 ) SE = + ˆp 2(1 ˆp 2 ), 1 2 so the desired 95% cofidece iterval is (ˆp2 ˆp 1 ) ± 1.96 SE. A hypothesis test framig this questio might take the form H 0 : p 1 = p 2, H a : p 1 p 2. I effect, the ull hypothesis claims that the differece i proportios is 0, ad our poit estimate of this differece is ˆp 2 ˆp 1. But ow the stadard error of this statistic must take ito accout the ull hypothesis which claims that there is o differece i these two proportios. Therefore, we create a ew proportio by addig together all of the smokers from both samplig years, ad dividig by the total umber of sampled studets: # of smokers p pooled = # of studets. The stadard error of our poit estimate is ow ( 1 SE = p pooled (1 p pooled ) + 1 ), 1 2 the z-statistic is z = (ˆp 2 ˆp 1 )/SE, ad the correspodig p-value is calculated by R as 2 * (1 - porm(z)), sice the alterative hypothesis is two-sided. Which approach seems to shed more light o the situatio, the cofidece iterval or the hypothesis test? Sprig 2017 Page 11 of 13

12 R Code Let s make up some totally fictitious data to illustrate how to tur the statistical discussio i the previous sectio o Smokig The ad Now ito umerical results. Assume that i the sample from 1890, a total of 120 Sewaee studets were iterviewed ad 23 idetified themselves as smokers. For the moder sample, assume that 142 studets were iterviewed ad 17 idetified themselves as smokers. The R fuctio prop.test is a sophisticated ad authoritative implemetatio of the above procedures. Its default is to use a cotiuity correctio for more accuracy, but if we request that the cotiuity correctio ot be used, by settig correct=false, the the results will match those that are outlied above. prop.test(x=c(23, 17), =c(120, 142), alterative="two.sided", cof.level=0.95) # 2-sample test for equality of proportios with cotiuity correctio # data: c(23, 17) out of c(120, 142) # X-squared = , df = 1, p-value = # alterative hypothesis: two.sided # 95 percet cofidece iterval: # # sample estimates: # prop 1 prop 2 # Outlie Outlie for oe-variable iferece for sample data: The goal is to geeralize from a sample to lear about a populatio categorical variable - oe proportio - cofidece iterval - oe-sample z CI for a proportio - hypothesis testig - oe-sample z HT for a proportio - differece of two proportios - cofidece iterval - two-sample z CI for a differece i proportios - hypothesis testig - two-sample z HT for a differece i proportios Statistical mythology You are a p.value. If you are sufficietly small, you ca slip uder the alpha fece ad ru away... ad escape from the spell of the ull hypothesis. fece, by Elizabeth Parrish, C 19 Sprig 2017 Page 12 of 13

13 Exercises We will attempt to solve some of the followig exercises as a commuity project i class today. Fiish these solutios as homework exercises, write them up carefully ad clearly, ad had them i at the begiig of class ext Friday. Homework 6a CI for a proportio Exercises from Sectio 6.1: 6.23 (Iuits), 6.24 (mates), 6.27 (seiors), 6.28 (seiors) Homework 6b CI ad HT for a proportio Exercises from Sectio 6.1: 6.30 (coffee), 6.31 (sermos), 6.32 (drivig), 6.38 (accidets) Homework 6c comparig two proportios Exercises from Sectio 6.2 ad Chapter 6 exercises: 6.48 (podcasts), 6.49 (podcasts), 6.72 (golf), 6.80 (water) Sprig 2017 Page 13 of 13

Chapter 11: Asking and Answering Questions About the Difference of Two Proportions

Chapter 11: Asking and Answering Questions About the Difference of Two Proportions Chapter 11: Askig ad Aswerig Questios About the Differece of Two Proportios These otes reflect material from our text, Statistics, Learig from Data, First Editio, by Roxy Peck, published by CENGAGE Learig,

More information

MOST PEOPLE WOULD RATHER LIVE WITH A PROBLEM THEY CAN'T SOLVE, THAN ACCEPT A SOLUTION THEY CAN'T UNDERSTAND.

MOST PEOPLE WOULD RATHER LIVE WITH A PROBLEM THEY CAN'T SOLVE, THAN ACCEPT A SOLUTION THEY CAN'T UNDERSTAND. XI-1 (1074) MOST PEOPLE WOULD RATHER LIVE WITH A PROBLEM THEY CAN'T SOLVE, THAN ACCEPT A SOLUTION THEY CAN'T UNDERSTAND. R. E. D. WOOLSEY AND H. S. SWANSON XI-2 (1075) STATISTICAL DECISION MAKING Advaced

More information

A quick activity - Central Limit Theorem and Proportions. Lecture 21: Testing Proportions. Results from the GSS. Statistics and the General Population

A quick activity - Central Limit Theorem and Proportions. Lecture 21: Testing Proportions. Results from the GSS. Statistics and the General Population A quick activity - Cetral Limit Theorem ad Proportios Lecture 21: Testig Proportios Statistics 10 Coli Rudel Flip a coi 30 times this is goig to get loud! Record the umber of heads you obtaied ad calculate

More information

Agreement of CI and HT. Lecture 13 - Tests of Proportions. Example - Waiting Times

Agreement of CI and HT. Lecture 13 - Tests of Proportions. Example - Waiting Times Sigificace level vs. cofidece level Agreemet of CI ad HT Lecture 13 - Tests of Proportios Sta102 / BME102 Coli Rudel October 15, 2014 Cofidece itervals ad hypothesis tests (almost) always agree, as log

More information

Section 9.2. Tests About a Population Proportion 12/17/2014. Carrying Out a Significance Test H A N T. Parameters & Hypothesis

Section 9.2. Tests About a Population Proportion 12/17/2014. Carrying Out a Significance Test H A N T. Parameters & Hypothesis Sectio 9.2 Tests About a Populatio Proportio P H A N T O M S Parameters Hypothesis Assess Coditios Name the Test Test Statistic (Calculate) Obtai P value Make a decisio State coclusio Sectio 9.2 Tests

More information

Topic 18: Composite Hypotheses

Topic 18: Composite Hypotheses Toc 18: November, 211 Simple hypotheses limit us to a decisio betwee oe of two possible states of ature. This limitatio does ot allow us, uder the procedures of hypothesis testig to address the basic questio:

More information

Math 140 Introductory Statistics

Math 140 Introductory Statistics 8.2 Testig a Proportio Math 1 Itroductory Statistics Professor B. Abrego Lecture 15 Sectios 8.2 People ofte make decisios with data by comparig the results from a sample to some predetermied stadard. These

More information

Frequentist Inference

Frequentist Inference Frequetist Iferece The topics of the ext three sectios are useful applicatios of the Cetral Limit Theorem. Without kowig aythig about the uderlyig distributio of a sequece of radom variables {X i }, for

More information

Overview. p 2. Chapter 9. Pooled Estimate of. q = 1 p. Notation for Two Proportions. Inferences about Two Proportions. Assumptions

Overview. p 2. Chapter 9. Pooled Estimate of. q = 1 p. Notation for Two Proportions. Inferences about Two Proportions. Assumptions Chapter 9 Slide Ifereces from Two Samples 9- Overview 9- Ifereces about Two Proportios 9- Ifereces about Two Meas: Idepedet Samples 9-4 Ifereces about Matched Pairs 9-5 Comparig Variatio i Two Samples

More information

April 18, 2017 CONFIDENCE INTERVALS AND HYPOTHESIS TESTING, UNDERGRADUATE MATH 526 STYLE

April 18, 2017 CONFIDENCE INTERVALS AND HYPOTHESIS TESTING, UNDERGRADUATE MATH 526 STYLE April 18, 2017 CONFIDENCE INTERVALS AND HYPOTHESIS TESTING, UNDERGRADUATE MATH 526 STYLE TERRY SOO Abstract These otes are adapted from whe I taught Math 526 ad meat to give a quick itroductio to cofidece

More information

If, for instance, we were required to test whether the population mean μ could be equal to a certain value μ

If, for instance, we were required to test whether the population mean μ could be equal to a certain value μ STATISTICAL INFERENCE INTRODUCTION Statistical iferece is that brach of Statistics i which oe typically makes a statemet about a populatio based upo the results of a sample. I oesample testig, we essetially

More information

Common Large/Small Sample Tests 1/55

Common Large/Small Sample Tests 1/55 Commo Large/Small Sample Tests 1/55 Test of Hypothesis for the Mea (σ Kow) Covert sample result ( x) to a z value Hypothesis Tests for µ Cosider the test H :μ = μ H 1 :μ > μ σ Kow (Assume the populatio

More information

Chapter 22. Comparing Two Proportions. Copyright 2010, 2007, 2004 Pearson Education, Inc.

Chapter 22. Comparing Two Proportions. Copyright 2010, 2007, 2004 Pearson Education, Inc. Chapter 22 Comparig Two Proportios Copyright 2010, 2007, 2004 Pearso Educatio, Ic. Comparig Two Proportios Read the first two paragraphs of pg 504. Comparisos betwee two percetages are much more commo

More information

STA Learning Objectives. Population Proportions. Module 10 Comparing Two Proportions. Upon completing this module, you should be able to:

STA Learning Objectives. Population Proportions. Module 10 Comparing Two Proportions. Upon completing this module, you should be able to: STA 2023 Module 10 Comparig Two Proportios Learig Objectives Upo completig this module, you should be able to: 1. Perform large-sample ifereces (hypothesis test ad cofidece itervals) to compare two populatio

More information

TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics

TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics Explorig Data: Distributios Look for overall patter (shape, ceter, spread) ad deviatios (outliers). Mea (use a calculator): x = x 1 + x 2 + +

More information

STAC51: Categorical data Analysis

STAC51: Categorical data Analysis STAC51: Categorical data Aalysis Mahida Samarakoo Jauary 28, 2016 Mahida Samarakoo STAC51: Categorical data Aalysis 1 / 35 Table of cotets Iferece for Proportios 1 Iferece for Proportios Mahida Samarakoo

More information

Properties and Hypothesis Testing

Properties and Hypothesis Testing Chapter 3 Properties ad Hypothesis Testig 3.1 Types of data The regressio techiques developed i previous chapters ca be applied to three differet kids of data. 1. Cross-sectioal data. 2. Time series data.

More information

Class 23. Daniel B. Rowe, Ph.D. Department of Mathematics, Statistics, and Computer Science. Marquette University MATH 1700

Class 23. Daniel B. Rowe, Ph.D. Department of Mathematics, Statistics, and Computer Science. Marquette University MATH 1700 Class 23 Daiel B. Rowe, Ph.D. Departmet of Mathematics, Statistics, ad Computer Sciece Copyright 2017 by D.B. Rowe 1 Ageda: Recap Chapter 9.1 Lecture Chapter 9.2 Review Exam 6 Problem Solvig Sessio. 2

More information

Chapter 22. Comparing Two Proportions. Copyright 2010 Pearson Education, Inc.

Chapter 22. Comparing Two Proportions. Copyright 2010 Pearson Education, Inc. Chapter 22 Comparig Two Proportios Copyright 2010 Pearso Educatio, Ic. Comparig Two Proportios Comparisos betwee two percetages are much more commo tha questios about isolated percetages. Ad they are more

More information

Lecture 5: Parametric Hypothesis Testing: Comparing Means. GENOME 560, Spring 2016 Doug Fowler, GS

Lecture 5: Parametric Hypothesis Testing: Comparing Means. GENOME 560, Spring 2016 Doug Fowler, GS Lecture 5: Parametric Hypothesis Testig: Comparig Meas GENOME 560, Sprig 2016 Doug Fowler, GS (dfowler@uw.edu) 1 Review from last week What is a cofidece iterval? 2 Review from last week What is a cofidece

More information

Chapter 8: Estimating with Confidence

Chapter 8: Estimating with Confidence Chapter 8: Estimatig with Cofidece Sectio 8.2 The Practice of Statistics, 4 th editio For AP* STARNES, YATES, MOORE Chapter 8 Estimatig with Cofidece 8.1 Cofidece Itervals: The Basics 8.2 8.3 Estimatig

More information

1 Inferential Methods for Correlation and Regression Analysis

1 Inferential Methods for Correlation and Regression Analysis 1 Iferetial Methods for Correlatio ad Regressio Aalysis I the chapter o Correlatio ad Regressio Aalysis tools for describig bivariate cotiuous data were itroduced. The sample Pearso Correlatio Coefficiet

More information

PSYCHOLOGICAL RESEARCH (PYC 304-C) Lecture 9

PSYCHOLOGICAL RESEARCH (PYC 304-C) Lecture 9 Hypothesis testig PSYCHOLOGICAL RESEARCH (PYC 34-C Lecture 9 Statistical iferece is that brach of Statistics i which oe typically makes a statemet about a populatio based upo the results of a sample. I

More information

This is an introductory course in Analysis of Variance and Design of Experiments.

This is an introductory course in Analysis of Variance and Design of Experiments. 1 Notes for M 384E, Wedesday, Jauary 21, 2009 (Please ote: I will ot pass out hard-copy class otes i future classes. If there are writte class otes, they will be posted o the web by the ight before class

More information

Y i n. i=1. = 1 [number of successes] number of successes = n

Y i n. i=1. = 1 [number of successes] number of successes = n Eco 371 Problem Set # Aswer Sheet 3. I this questio, you are asked to cosider a Beroulli radom variable Y, with a success probability P ry 1 p. You are told that you have draws from this distributio ad

More information

Expectation and Variance of a random variable

Expectation and Variance of a random variable Chapter 11 Expectatio ad Variace of a radom variable The aim of this lecture is to defie ad itroduce mathematical Expectatio ad variace of a fuctio of discrete & cotiuous radom variables ad the distributio

More information

Because it tests for differences between multiple pairs of means in one test, it is called an omnibus test.

Because it tests for differences between multiple pairs of means in one test, it is called an omnibus test. Math 308 Sprig 018 Classes 19 ad 0: Aalysis of Variace (ANOVA) Page 1 of 6 Itroductio ANOVA is a statistical procedure for determiig whether three or more sample meas were draw from populatios with equal

More information

7-1. Chapter 4. Part I. Sampling Distributions and Confidence Intervals

7-1. Chapter 4. Part I. Sampling Distributions and Confidence Intervals 7-1 Chapter 4 Part I. Samplig Distributios ad Cofidece Itervals 1 7- Sectio 1. Samplig Distributio 7-3 Usig Statistics Statistical Iferece: Predict ad forecast values of populatio parameters... Test hypotheses

More information

HYPOTHESIS TESTS FOR ONE POPULATION MEAN WORKSHEET MTH 1210, FALL 2018

HYPOTHESIS TESTS FOR ONE POPULATION MEAN WORKSHEET MTH 1210, FALL 2018 HYPOTHESIS TESTS FOR ONE POPULATION MEAN WORKSHEET MTH 1210, FALL 2018 We are resposible for 2 types of hypothesis tests that produce ifereces about the ukow populatio mea, µ, each of which has 3 possible

More information

Sampling Distributions, Z-Tests, Power

Sampling Distributions, Z-Tests, Power Samplig Distributios, Z-Tests, Power We draw ifereces about populatio parameters from sample statistics Sample proportio approximates populatio proportio Sample mea approximates populatio mea Sample variace

More information

This chapter focuses on two experimental designs that are crucial to comparative studies: (1) independent samples and (2) matched pair samples.

This chapter focuses on two experimental designs that are crucial to comparative studies: (1) independent samples and (2) matched pair samples. Chapter 9 & : Comparig Two Treatmets: This chapter focuses o two eperimetal desigs that are crucial to comparative studies: () idepedet samples ad () matched pair samples Idepedet Radom amples from Two

More information

Goodness-of-Fit Tests and Categorical Data Analysis (Devore Chapter Fourteen)

Goodness-of-Fit Tests and Categorical Data Analysis (Devore Chapter Fourteen) Goodess-of-Fit Tests ad Categorical Data Aalysis (Devore Chapter Fourtee) MATH-252-01: Probability ad Statistics II Sprig 2019 Cotets 1 Chi-Squared Tests with Kow Probabilities 1 1.1 Chi-Squared Testig................

More information

Read through these prior to coming to the test and follow them when you take your test.

Read through these prior to coming to the test and follow them when you take your test. Math 143 Sprig 2012 Test 2 Iformatio 1 Test 2 will be give i class o Thursday April 5. Material Covered The test is cummulative, but will emphasize the recet material (Chapters 6 8, 10 11, ad Sectios 12.1

More information

Final Examination Solutions 17/6/2010

Final Examination Solutions 17/6/2010 The Islamic Uiversity of Gaza Faculty of Commerce epartmet of Ecoomics ad Political Scieces A Itroductio to Statistics Course (ECOE 30) Sprig Semester 009-00 Fial Eamiatio Solutios 7/6/00 Name: I: Istructor:

More information

Chapter 22: What is a Test of Significance?

Chapter 22: What is a Test of Significance? Chapter 22: What is a Test of Sigificace? Thought Questio Assume that the statemet If it s Saturday, the it s the weeked is true. followig statemets will also be true? Which of the If it s the weeked,

More information

BIOS 4110: Introduction to Biostatistics. Breheny. Lab #9

BIOS 4110: Introduction to Biostatistics. Breheny. Lab #9 BIOS 4110: Itroductio to Biostatistics Brehey Lab #9 The Cetral Limit Theorem is very importat i the realm of statistics, ad today's lab will explore the applicatio of it i both categorical ad cotiuous

More information

- E < p. ˆ p q ˆ E = q ˆ = 1 - p ˆ = sample proportion of x failures in a sample size of n. where. x n sample proportion. population proportion

- E < p. ˆ p q ˆ E = q ˆ = 1 - p ˆ = sample proportion of x failures in a sample size of n. where. x n sample proportion. population proportion 1 Chapter 7 ad 8 Review for Exam Chapter 7 Estimates ad Sample Sizes 2 Defiitio Cofidece Iterval (or Iterval Estimate) a rage (or a iterval) of values used to estimate the true value of the populatio parameter

More information

Economics Spring 2015

Economics Spring 2015 1 Ecoomics 400 -- Sprig 015 /17/015 pp. 30-38; Ch. 7.1.4-7. New Stata Assigmet ad ew MyStatlab assigmet, both due Feb 4th Midterm Exam Thursday Feb 6th, Chapters 1-7 of Groeber text ad all relevat lectures

More information

Introduction to Econometrics (3 rd Updated Edition) Solutions to Odd- Numbered End- of- Chapter Exercises: Chapter 3

Introduction to Econometrics (3 rd Updated Edition) Solutions to Odd- Numbered End- of- Chapter Exercises: Chapter 3 Itroductio to Ecoometrics (3 rd Updated Editio) by James H. Stock ad Mark W. Watso Solutios to Odd- Numbered Ed- of- Chapter Exercises: Chapter 3 (This versio August 17, 014) 015 Pearso Educatio, Ic. Stock/Watso

More information

Class 27. Daniel B. Rowe, Ph.D. Department of Mathematics, Statistics, and Computer Science. Marquette University MATH 1700

Class 27. Daniel B. Rowe, Ph.D. Department of Mathematics, Statistics, and Computer Science. Marquette University MATH 1700 Class 7 Daiel B. Rowe, Ph.D. Departmet of Mathematics, Statistics, ad Computer Sciece Copyright 013 by D.B. Rowe 1 Ageda: Skip Recap Chapter 10.5 ad 10.6 Lecture Chapter 11.1-11. Review Chapters 9 ad 10

More information

1036: Probability & Statistics

1036: Probability & Statistics 036: Probability & Statistics Lecture 0 Oe- ad Two-Sample Tests of Hypotheses 0- Statistical Hypotheses Decisio based o experimetal evidece whether Coffee drikig icreases the risk of cacer i humas. A perso

More information

Chapter 13, Part A Analysis of Variance and Experimental Design

Chapter 13, Part A Analysis of Variance and Experimental Design Slides Prepared by JOHN S. LOUCKS St. Edward s Uiversity Slide 1 Chapter 13, Part A Aalysis of Variace ad Eperimetal Desig Itroductio to Aalysis of Variace Aalysis of Variace: Testig for the Equality of

More information

Comparing Two Populations. Topic 15 - Two Sample Inference I. Comparing Two Means. Comparing Two Pop Means. Background Reading

Comparing Two Populations. Topic 15 - Two Sample Inference I. Comparing Two Means. Comparing Two Pop Means. Background Reading Topic 15 - Two Sample Iferece I STAT 511 Professor Bruce Craig Comparig Two Populatios Research ofte ivolves the compariso of two or more samples from differet populatios Graphical summaries provide visual

More information

Inferential Statistics. Inference Process. Inferential Statistics and Probability a Holistic Approach. Inference Process.

Inferential Statistics. Inference Process. Inferential Statistics and Probability a Holistic Approach. Inference Process. Iferetial Statistics ad Probability a Holistic Approach Iferece Process Chapter 8 Poit Estimatio ad Cofidece Itervals This Course Material by Maurice Geraghty is licesed uder a Creative Commos Attributio-ShareAlike

More information

6.3 Testing Series With Positive Terms

6.3 Testing Series With Positive Terms 6.3. TESTING SERIES WITH POSITIVE TERMS 307 6.3 Testig Series With Positive Terms 6.3. Review of what is kow up to ow I theory, testig a series a i for covergece amouts to fidig the i= sequece of partial

More information

Chapter 5: Hypothesis testing

Chapter 5: Hypothesis testing Slide 5. Chapter 5: Hypothesis testig Hypothesis testig is about makig decisios Is a hypothesis true or false? Are wome paid less, o average, tha me? Barrow, Statistics for Ecoomics, Accoutig ad Busiess

More information

Chapter 20. Comparing Two Proportions. BPS - 5th Ed. Chapter 20 1

Chapter 20. Comparing Two Proportions. BPS - 5th Ed. Chapter 20 1 Chapter 0 Comparig Two Proportios BPS - 5th Ed. Chapter 0 Case Study Machie Reliability A study is performed to test of the reliability of products produced by two machies. Machie A produced 8 defective

More information

Estimation of a population proportion March 23,

Estimation of a population proportion March 23, 1 Social Studies 201 Notes for March 23, 2005 Estimatio of a populatio proportio Sectio 8.5, p. 521. For the most part, we have dealt with meas ad stadard deviatios this semester. This sectio of the otes

More information

π: ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics

π: ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics π: ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Busiess Statistics CONTENTS The CLT for π Estimatig proportio Hypothesis o the proportio Old exam questio Further study THE CLT FOR π Estimatig, cofidece itervals,

More information

DS 100: Principles and Techniques of Data Science Date: April 13, Discussion #10

DS 100: Principles and Techniques of Data Science Date: April 13, Discussion #10 DS 00: Priciples ad Techiques of Data Sciece Date: April 3, 208 Name: Hypothesis Testig Discussio #0. Defie these terms below as they relate to hypothesis testig. a) Data Geeratio Model: Solutio: A set

More information

Tests of Hypotheses Based on a Single Sample (Devore Chapter Eight)

Tests of Hypotheses Based on a Single Sample (Devore Chapter Eight) Tests of Hypotheses Based o a Sigle Sample Devore Chapter Eight MATH-252-01: Probability ad Statistics II Sprig 2018 Cotets 1 Hypothesis Tests illustrated with z-tests 1 1.1 Overview of Hypothesis Testig..........

More information

Announcements. Unit 5: Inference for Categorical Data Lecture 1: Inference for a single proportion

Announcements. Unit 5: Inference for Categorical Data Lecture 1: Inference for a single proportion Housekeepig Aoucemets Uit 5: Iferece for Categorical Data Lecture 1: Iferece for a sigle proportio Statistics 101 Mie Çetikaya-Rudel PA 4 due Friday at 5pm (exteded) PS 6 due Thursday, Oct 30 October 23,

More information

Statistical Inference (Chapter 10) Statistical inference = learn about a population based on the information provided by a sample.

Statistical Inference (Chapter 10) Statistical inference = learn about a population based on the information provided by a sample. Statistical Iferece (Chapter 10) Statistical iferece = lear about a populatio based o the iformatio provided by a sample. Populatio: The set of all values of a radom variable X of iterest. Characterized

More information

Hypothesis Testing. Evaluation of Performance of Learned h. Issues. Trade-off Between Bias and Variance

Hypothesis Testing. Evaluation of Performance of Learned h. Issues. Trade-off Between Bias and Variance Hypothesis Testig Empirically evaluatig accuracy of hypotheses: importat activity i ML. Three questios: Give observed accuracy over a sample set, how well does this estimate apply over additioal samples?

More information

Lecture 6 Simple alternatives and the Neyman-Pearson lemma

Lecture 6 Simple alternatives and the Neyman-Pearson lemma STATS 00: Itroductio to Statistical Iferece Autum 06 Lecture 6 Simple alteratives ad the Neyma-Pearso lemma Last lecture, we discussed a umber of ways to costruct test statistics for testig a simple ull

More information

Chapter 6 Sampling Distributions

Chapter 6 Sampling Distributions Chapter 6 Samplig Distributios 1 I most experimets, we have more tha oe measuremet for ay give variable, each measuremet beig associated with oe radomly selected a member of a populatio. Hece we eed to

More information

Last Lecture. Wald Test

Last Lecture. Wald Test Last Lecture Biostatistics 602 - Statistical Iferece Lecture 22 Hyu Mi Kag April 9th, 2013 Is the exact distributio of LRT statistic typically easy to obtai? How about its asymptotic distributio? For testig

More information

Topic 9: Sampling Distributions of Estimators

Topic 9: Sampling Distributions of Estimators Topic 9: Samplig Distributios of Estimators Course 003, 2016 Page 0 Samplig distributios of estimators Sice our estimators are statistics (particular fuctios of radom variables), their distributio ca be

More information

Problem Set 4 Due Oct, 12

Problem Set 4 Due Oct, 12 EE226: Radom Processes i Systems Lecturer: Jea C. Walrad Problem Set 4 Due Oct, 12 Fall 06 GSI: Assae Gueye This problem set essetially reviews detectio theory ad hypothesis testig ad some basic otios

More information

TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics

TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics TABLES AND FORMULAS FOR MOORE Basic Practice of Statistics Explorig Data: Distributios Look for overall patter (shape, ceter, spread) ad deviatios (outliers). Mea (use a calculator): x = x 1 + x 2 + +

More information

Big Picture. 5. Data, Estimates, and Models: quantifying the accuracy of estimates.

Big Picture. 5. Data, Estimates, and Models: quantifying the accuracy of estimates. 5. Data, Estimates, ad Models: quatifyig the accuracy of estimates. 5. Estimatig a Normal Mea 5.2 The Distributio of the Normal Sample Mea 5.3 Normal data, cofidece iterval for, kow 5.4 Normal data, cofidece

More information

FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING. Lectures

FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING. Lectures FACULTY OF MATHEMATICAL STUDIES MATHEMATICS FOR PART I ENGINEERING Lectures MODULE 5 STATISTICS II. Mea ad stadard error of sample data. Biomial distributio. Normal distributio 4. Samplig 5. Cofidece itervals

More information

Data Analysis and Statistical Methods Statistics 651

Data Analysis and Statistical Methods Statistics 651 Data Aalysis ad Statistical Methods Statistics 651 http://www.stat.tamu.edu/~suhasii/teachig.html Suhasii Subba Rao Review of testig: Example The admistrator of a ursig home wats to do a time ad motio

More information

1 Models for Matched Pairs

1 Models for Matched Pairs 1 Models for Matched Pairs Matched pairs occur whe we aalyse samples such that for each measuremet i oe of the samples there is a measuremet i the other sample that directly relates to the measuremet i

More information

Econ 325 Notes on Point Estimator and Confidence Interval 1 By Hiro Kasahara

Econ 325 Notes on Point Estimator and Confidence Interval 1 By Hiro Kasahara Poit Estimator Eco 325 Notes o Poit Estimator ad Cofidece Iterval 1 By Hiro Kasahara Parameter, Estimator, ad Estimate The ormal probability desity fuctio is fully characterized by two costats: populatio

More information

Recall the study where we estimated the difference between mean systolic blood pressure levels of users of oral contraceptives and non-users, x - y.

Recall the study where we estimated the difference between mean systolic blood pressure levels of users of oral contraceptives and non-users, x - y. Testig Statistical Hypotheses Recall the study where we estimated the differece betwee mea systolic blood pressure levels of users of oral cotraceptives ad o-users, x - y. Such studies are sometimes viewed

More information

Lecture 2: Monte Carlo Simulation

Lecture 2: Monte Carlo Simulation STAT/Q SCI 43: Itroductio to Resamplig ethods Sprig 27 Istructor: Ye-Chi Che Lecture 2: ote Carlo Simulatio 2 ote Carlo Itegratio Assume we wat to evaluate the followig itegratio: e x3 dx What ca we do?

More information

Statistical inference: example 1. Inferential Statistics

Statistical inference: example 1. Inferential Statistics Statistical iferece: example 1 Iferetial Statistics POPULATION SAMPLE A clothig store chai regularly buys from a supplier large quatities of a certai piece of clothig. Each item ca be classified either

More information

Math 152. Rumbos Fall Solutions to Review Problems for Exam #2. Number of Heads Frequency

Math 152. Rumbos Fall Solutions to Review Problems for Exam #2. Number of Heads Frequency Math 152. Rumbos Fall 2009 1 Solutios to Review Problems for Exam #2 1. I the book Experimetatio ad Measuremet, by W. J. Youde ad published by the by the Natioal Sciece Teachers Associatio i 1962, the

More information

MA238 Assignment 4 Solutions (part a)

MA238 Assignment 4 Solutions (part a) (i) Sigle sample tests. Questio. MA38 Assigmet 4 Solutios (part a) (a) (b) (c) H 0 : = 50 sq. ft H A : < 50 sq. ft H 0 : = 3 mpg H A : > 3 mpg H 0 : = 5 mm H A : 5mm Questio. (i) What are the ull ad alterative

More information

Topic 9: Sampling Distributions of Estimators

Topic 9: Sampling Distributions of Estimators Topic 9: Samplig Distributios of Estimators Course 003, 2018 Page 0 Samplig distributios of estimators Sice our estimators are statistics (particular fuctios of radom variables), their distributio ca be

More information

2 1. The r.s., of size n2, from population 2 will be. 2 and 2. 2) The two populations are independent. This implies that all of the n1 n2

2 1. The r.s., of size n2, from population 2 will be. 2 and 2. 2) The two populations are independent. This implies that all of the n1 n2 Chapter 8 Comparig Two Treatmets Iferece about Two Populatio Meas We wat to compare the meas of two populatios to see whether they differ. There are two situatios to cosider, as show i the followig examples:

More information

Successful HE applicants. Information sheet A Number of applicants. Gender Applicants Accepts Applicants Accepts. Age. Domicile

Successful HE applicants. Information sheet A Number of applicants. Gender Applicants Accepts Applicants Accepts. Age. Domicile Successful HE applicats Sigificace tests use data from samples to test hypotheses. You will use data o successful applicatios for courses i higher educatio to aswer questios about proportios, for example,

More information

Chapter two: Hypothesis testing

Chapter two: Hypothesis testing : Hypothesis testig - Some basic cocepts: - Data: The raw material of statistics is data. For our purposes we may defie data as umbers. The two kids of umbers that we use i statistics are umbers that result

More information

STAT431 Review. X = n. n )

STAT431 Review. X = n. n ) STAT43 Review I. Results related to ormal distributio Expected value ad variace. (a) E(aXbY) = aex bey, Var(aXbY) = a VarX b VarY provided X ad Y are idepedet. Normal distributios: (a) Z N(, ) (b) X N(µ,

More information

Chapter 23: Inferences About Means

Chapter 23: Inferences About Means Chapter 23: Ifereces About Meas Eough Proportios! We ve spet the last two uits workig with proportios (or qualitative variables, at least) ow it s time to tur our attetios to quatitative variables. For

More information

Estimating the Population Mean - when a sample average is calculated we can create an interval centered on this average

Estimating the Population Mean - when a sample average is calculated we can create an interval centered on this average 6. Cofidece Iterval for the Populatio Mea p58 Estimatig the Populatio Mea - whe a sample average is calculated we ca create a iterval cetered o this average x-bar - at a predetermied level of cofidece

More information

Table 12.1: Contingency table. Feature b. 1 N 11 N 12 N 1b 2 N 21 N 22 N 2b. ... a N a1 N a2 N ab

Table 12.1: Contingency table. Feature b. 1 N 11 N 12 N 1b 2 N 21 N 22 N 2b. ... a N a1 N a2 N ab Sectio 12 Tests of idepedece ad homogeeity I this lecture we will cosider a situatio whe our observatios are classified by two differet features ad we would like to test if these features are idepedet

More information

Statistics 20: Final Exam Solutions Summer Session 2007

Statistics 20: Final Exam Solutions Summer Session 2007 1. 20 poits Testig for Diabetes. Statistics 20: Fial Exam Solutios Summer Sessio 2007 (a) 3 poits Give estimates for the sesitivity of Test I ad of Test II. Solutio: 156 patiets out of total 223 patiets

More information

Power and Type II Error

Power and Type II Error Statistical Methods I (EXST 7005) Page 57 Power ad Type II Error Sice we do't actually kow the value of the true mea (or we would't be hypothesizig somethig else), we caot kow i practice the type II error

More information

Parameter, Statistic and Random Samples

Parameter, Statistic and Random Samples Parameter, Statistic ad Radom Samples A parameter is a umber that describes the populatio. It is a fixed umber, but i practice we do ot kow its value. A statistic is a fuctio of the sample data, i.e.,

More information

Chapter 1 (Definitions)

Chapter 1 (Definitions) FINAL EXAM REVIEW Chapter 1 (Defiitios) Qualitative: Nomial: Ordial: Quatitative: Ordial: Iterval: Ratio: Observatioal Study: Desiged Experimet: Samplig: Cluster: Stratified: Systematic: Coveiece: Simple

More information

University of California, Los Angeles Department of Statistics. Hypothesis testing

University of California, Los Angeles Department of Statistics. Hypothesis testing Uiversity of Califoria, Los Ageles Departmet of Statistics Statistics 100B Elemets of a hypothesis test: Hypothesis testig Istructor: Nicolas Christou 1. Null hypothesis, H 0 (claim about µ, p, σ 2, µ

More information

MATH/STAT 352: Lecture 15

MATH/STAT 352: Lecture 15 MATH/STAT 352: Lecture 15 Sectios 5.2 ad 5.3. Large sample CI for a proportio ad small sample CI for a mea. 1 5.2: Cofidece Iterval for a Proportio Estimatig proportio of successes i a biomial experimet

More information

Continuous Data that can take on any real number (time/length) based on sample data. Categorical data can only be named or categorised

Continuous Data that can take on any real number (time/length) based on sample data. Categorical data can only be named or categorised Questio 1. (Topics 1-3) A populatio cosists of all the members of a group about which you wat to draw a coclusio (Greek letters (μ, σ, Ν) are used) A sample is the portio of the populatio selected for

More information

Biostatistics for Med Students. Lecture 2

Biostatistics for Med Students. Lecture 2 Biostatistics for Med Studets Lecture 2 Joh J. Che, Ph.D. Professor & Director of Biostatistics Core UH JABSOM JABSOM MD7 February 22, 2017 Lecture Objectives To uderstad basic research desig priciples

More information

One-Sample Test for Proportion

One-Sample Test for Proportion Oe-Sample Test for Proportio Approximated Oe-Sample Z Test for Proportio CF Jeff Li, MD., PhD. November 1, 2005 c Jeff Li, MD., PhD. c Jeff Li, MD., PhD. Oe Sample Test for Proportio, 1 I DM-TKR Data,

More information

Statistics. Chapter 10 Two-Sample Tests. Copyright 2013 Pearson Education, Inc. publishing as Prentice Hall. Chap 10-1

Statistics. Chapter 10 Two-Sample Tests. Copyright 2013 Pearson Education, Inc. publishing as Prentice Hall. Chap 10-1 Statistics Chapter 0 Two-Sample Tests Copyright 03 Pearso Educatio, Ic. publishig as Pretice Hall Chap 0- Learig Objectives I this chapter, you lear How to use hypothesis testig for comparig the differece

More information

ENGI 4421 Confidence Intervals (Two Samples) Page 12-01

ENGI 4421 Confidence Intervals (Two Samples) Page 12-01 ENGI 44 Cofidece Itervals (Two Samples) Page -0 Two Sample Cofidece Iterval for a Differece i Populatio Meas [Navidi sectios 5.4-5.7; Devore chapter 9] From the cetral limit theorem, we kow that, for sufficietly

More information

Topic 10: Introduction to Estimation

Topic 10: Introduction to Estimation Topic 0: Itroductio to Estimatio Jue, 0 Itroductio I the simplest possible terms, the goal of estimatio theory is to aswer the questio: What is that umber? What is the legth, the reactio rate, the fractio

More information

AP Statistics Review Ch. 8

AP Statistics Review Ch. 8 AP Statistics Review Ch. 8 Name 1. Each figure below displays the samplig distributio of a statistic used to estimate a parameter. The true value of the populatio parameter is marked o each samplig distributio.

More information

LESSON 20: HYPOTHESIS TESTING

LESSON 20: HYPOTHESIS TESTING LESSN 20: YPTESIS TESTING utlie ypothesis testig Tests for the mea Tests for the proportio 1 YPTESIS TESTING TE CNTEXT Example 1: supervisor of a productio lie wats to determie if the productio time of

More information

Mathacle. PSet Stats, Concepts In Statistics Level Number Name: Date: Confidence Interval Guesswork with Confidence

Mathacle. PSet Stats, Concepts In Statistics Level Number Name: Date: Confidence Interval Guesswork with Confidence PSet ----- Stats, Cocepts I Statistics Cofidece Iterval Guesswork with Cofidece VII. CONFIDENCE INTERVAL 7.1. Sigificace Level ad Cofidece Iterval (CI) The Sigificace Level The sigificace level, ofte deoted

More information

Confidence Intervals for the Population Proportion p

Confidence Intervals for the Population Proportion p Cofidece Itervals for the Populatio Proportio p The cocept of cofidece itervals for the populatio proportio p is the same as the oe for, the samplig distributio of the mea, x. The structure is idetical:

More information

October 25, 2018 BIM 105 Probability and Statistics for Biomedical Engineers 1

October 25, 2018 BIM 105 Probability and Statistics for Biomedical Engineers 1 October 25, 2018 BIM 105 Probability ad Statistics for Biomedical Egieers 1 Populatio parameters ad Sample Statistics October 25, 2018 BIM 105 Probability ad Statistics for Biomedical Egieers 2 Ifereces

More information

Topic 6 Sampling, hypothesis testing, and the central limit theorem

Topic 6 Sampling, hypothesis testing, and the central limit theorem CSE 103: Probability ad statistics Fall 2010 Topic 6 Samplig, hypothesis testig, ad the cetral limit theorem 61 The biomial distributio Let X be the umberofheadswhe acoiofbiaspistossedtimes The distributio

More information

1 Review of Probability & Statistics

1 Review of Probability & Statistics 1 Review of Probability & Statistics a. I a group of 000 people, it has bee reported that there are: 61 smokers 670 over 5 960 people who imbibe (drik alcohol) 86 smokers who imbibe 90 imbibers over 5

More information

The standard deviation of the mean

The standard deviation of the mean Physics 6C Fall 20 The stadard deviatio of the mea These otes provide some clarificatio o the distictio betwee the stadard deviatio ad the stadard deviatio of the mea.. The sample mea ad variace Cosider

More information

Sample Size Determination (Two or More Samples)

Sample Size Determination (Two or More Samples) Sample Sie Determiatio (Two or More Samples) STATGRAPHICS Rev. 963 Summary... Data Iput... Aalysis Summary... 5 Power Curve... 5 Calculatios... 6 Summary This procedure determies a suitable sample sie

More information

Understanding Dissimilarity Among Samples

Understanding Dissimilarity Among Samples Aoucemets: Midterm is Wed. Review sheet is o class webpage (i the list of lectures) ad will be covered i discussio o Moday. Two sheets of otes are allowed, same rules as for the oe sheet last time. Office

More information