Simple Random Sampling. Sampling Distribution

Size: px
Start display at page:

Download "Simple Random Sampling. Sampling Distribution"

Transcription

1 STAT 503 Sampling Distribution and Statistical Estimation 1 Simple Random Sampling Simple random sampling selects with equal chance from (available) members of population. The resulting sample is a simple random sample. Slide 1 Consider an urn containing N balls with numbers x i written on them. Draw n balls from the urn. Equal chance for C N n possible samples w/o replacement: finite population. Equal chance for N n possible samples w/ replacement: infinite population. The x i s need not to be all different. One can let N, but then one can not sample w/o replacement. A sample from an infinite population consists of independent, identically distributed (i.i.d.) observations. Sampling Distribution Sampling distribution describes the behavior of sample statistics such as X and s 2. Slide 2 In a certain human population, 30% of the individuals have superior distance vision (20/15 or better). Consider the sample proportion of superior vision, Clearly, X = 20ˆp Bin(20,.3). Possible values for ˆp are {0,.05,.10,...,.95,1}, with the probabilities given by ˆp = X/n, where X is the number of people in the sample with superior vision. Find the sampling distribution of ˆp for n = 20. P(ˆp=x) = C 20 20x(.3) 20x (.7) 20(1 x). For example, P(ˆp=.3) = C 20 6 (.3) 6 (.7) 14 =.192. In R, use dbinom(0:20,20,.3).

2 STAT 503 Sampling Distribution and Statistical Estimation 2 Sampling Distribution, Sampling The sampling distribution of the total of 2 rolls of a fair die. x p Slide 3 The sampling distribution of the total of 4 rolls of a fair die. x <- outer(1:6,1:6,"+") ## outer matrix dist2 <- table(x); dist2/sum(dist2) ## total of 2 rolls xx <- outer(x,x,"+") ## 4-way array dist4 <- table(xx); dist4/sum(dist4) ## total of 4 rolls Sampling from a finite collection of numbers. sample(1:200,10,rep=false) ## w/o replacement, default sample(1:6,33,replace=true) ## with replacement sample(0:3,30,rep=true,prob=c(1,3,3,1)) ## rbinom(30,3,.5) Simulating Sampling Distributions When analytical derivation is cumbersome or infeasible, one may use simulation to obtain the sampling distribution. Example: The sample median of 17 r.v. s from N(0,1). Slide 4 x <- matrix(rnorm(170000),17,10000) md <- apply(x,2,median) hist(md,nclass=50); plot(density(md)) Example: The largest of 5 Poisson counts from Poisson(3.3). x <- matrix(rpois(50000,3.3),5,10000) mx <- apply(x,2,max) table(mx); table(mx)/10000 ppois(1:13,3.3)^5-ppois(0:12,3.3)^5

3 STAT 503 Sampling Distribution and Statistical Estimation 3 Sampling Distribution of X Use upper case X to denote the sample mean as a r.v. For an infinite population with mean µ and standard deviation σ, µ X = µ and σ X = σ n. Slide 5 Theheightsofmalestudentsona large university campus have µ = 68 and σ = 5. Consider X with sample size n = 25. µ X = µ = 68 σ X = σ n = 5 25 = 1 X is more concentrated around µ. To double the accuracy of X, one needs to quadruple the sample size n. For finite population, σ X = σ n N n N 1. Central Limit Theorem Consider an infinite population with mean µ and standard deviation σ. For n large, Slide 6 P( X µ X σ X Given µ = 68 and σ = 5. Find the probability for the average height of n = 25 students to exceed 70. P( X>70) = P( X µ X σ X > ) 1 1 Φ(2) = z) Φ(z). The shape of sampling distribution approaches normal as n. Usually, an n 30 is sufficiently large for CLT to kick in. For normal population, X is always normal, regardless of n.

4 STAT 503 Sampling Distribution and Statistical Estimation 4 n=1 Effects of Sample Size n=4 n=16 Slide 7 n=1 n=4 n=16 Normal Approximation of Binomial Recall that if X Bin(n,p), then X = n i=1 X i, where X i Bin(1,p). By the Central Limit Theorem, X np X/n p P( z) = P( z) Φ(z) np(1 p) p(1 p)/n Slide 8 Consider X Bin(25,.3). P(X 8) =.6769 P(X 8) = P(X 8.5) Φ( ) =.6687 P(X=8) =.1651 P(X=8) = P(7.5 X 8.5) Φ(.4) Φ(0) =.1687 When a continuous distribution is used to approximate a discrete one, continuity correction is needed to preserve accuracy. For np,n(1 p) 5, the approximation is reasonably accurate.

5 STAT 503 Sampling Distribution and Statistical Estimation 5 Basic Structure of Inference Slide 9 Statistical Inference makes educated guesses about the population based on information from the sample. All guesses are prone to error, and the quantification of imprecision is an important part of statistical inference. 1. Estimation estimates the state of population, which is typically characterized by some parameter, say θ. 2. Hypothesis testing chooses from among postulated states of population, such as H 0 : θ = θ 0 versus H a : θ θ 0, where θ 0 is a known number. Examples of Estimation and Testing Slide 10 A plant physiologist grew 13 soybean seedlings of the type Wells II. She measured the total stem length (cm) for each plant after 16 days of growth, and got x = and s = She may estimate the average stem length by a point estimate, µ 21.34, or by an interval estimate, 18.68<µ< As reported by AMA, 16 out of every 100 doctors in any given year are subject to malpractice claims. A hospital of 300 physicians received claims against 58 of their doctors in one year. Was the hospital simply unlucky? Or does the number possibly indicate some systematic wrongdoings at the hospital? The number 58/300 is within chance variation of θ 0 =.16.

6 STAT 503 Sampling Distribution and Statistical Estimation 6 Estimating Population Mean Slide 11 Observing X 1,..., X n from a population with mean µ and variance σ 2, one is to estimate µ. The procedure (or formula) one uses is called an estimator, which yields an estimate after the data are plugged in. Observing X 1,..., X 5, one may use one of the following point estimators for µ: Observing 5.1, 5.1, 5.3, 5.2, 5.2, one may use one of the following point estimates for µ: ˆµ 1 = X ˆµ 2 = X 1 ˆµ 3 = (X 1 +X 3 )/2 ˆµ 4 = X ˆµ 5 = µ 0 ˆµ 1 = x = 5.18 ˆµ 2 = x 1 = 5.1 ˆµ 3 = (x 1 +x 3 )/2 = 5.2 ˆµ 4 = x = 5.2 ˆµ 5 = 5 Properties of Point Estimators Slide 12 To choose among all possible estimators, one compares properties of the estimators. Unbiasedness: µˆθ = θ. Small SD: σˆθ. ˆµ 1, ˆµ 2, and ˆµ 3 are all unbiased. µ X = µ X1 = µ (X1 +X 3 )/2 = µ σ 2 X = σ 2 /5 σ 2 X 1 = σ 2 σ 2 (X 1 +X 3 )/2 = σ 2 /2 A better estimator yields better estimates on average. A better estimator may not always yield a better estimate.

7 STAT 503 Sampling Distribution and Statistical Estimation 7 Sample Mean as Estimator of Population Mean One usually uses the sample mean x to estimate the population mean µ, as X has the smallest standard deviation among all unbiased estimators of µ. Slide 13 To quantify the imprecision of the estimation of µ by x, one estimates σ X = σ X n by s n, the standard error of the sample mean. Soybean stem length: n = 13, x = 21.34, and s = ˆσ X = s n = =.338 For X nearly normal, X lies within ±2 σx n of µ about 95% of the time. Do not confuse σ X with σ X. Confidence Intervals A point estimate will almost surely miss the target, although its standard error indicates by how far the miss is likely to be. An interval estimate provides a range for the parameter estimate. Slide 14 Soybean stem length: Assume normality with σ = 1.2 known. One has X N(µ,(1.2) 2 /13), so P( X µ 1.2/ 1.96) = Solving for µ, one obtains X µ X For X i N(µ,σ 2 ), i = 1,...,n with σ 2 known, X ±z 1 α/2 σ n provides an interval estimator that covers µ with probability (1 α). It yields a (1 α)100% confidence interval for µ, with a confidence coefficient (1 α)100%.

8 STAT 503 Sampling Distribution and Statistical Estimation 8 Coverage, Large Sample CIs Slide 15 As an estimator, a CI is a moving bracket chasing a fixed target. As an estimate, a CI may or may not cover the truth. With a large sample from an arbitrary distribution for σ unknown, an confidence interval for µ with an approximate conf. coef. (1 α)100% is given by X ±z 1 α/2 s n. Normality comes from CLT. Unknown σ estimated by s. Replace s by σ if known. Small Sample CIs based on t-distribution For a small sample with σ unknown, one has to assume normality. Slide 16 Consider Z i N(0,1), i = 1,...,n. The distribution of is called a t-distribution Z s/ n with a degree of freedom (df) ν = n 1. A t-distribution with ν = reduces to N(0,1) df=1,10, For X i N(µ,σ 2 ), i = 1,...,n, P( X µ s/ n t 1 α/2,n 1) = 1 α, X ±t 1 α/2,n 1 s n provides a (1 α)100% CI for µ. t 1 α,ν as ν. For σ known, use z 1 α/2, σ. Table C.4 lists t 1 α,ν, but the notation in text drops (α,ν).

9 STAT 503 Sampling Distribution and Statistical Estimation 9 Confidence Intervals for µ: Summary Slide 17 An agronomist measured stem diameter (mm) in 8 plants of a variety of wheat, and calculated x = and s = Assuming normality, a 95% CI for µ is given by 2.275±2.5(.2375)/ 8, or (2.076,2.474), where t.975,7 = 2.5. If one further knows that σ =.25, then he can use 2.275±1.96(.25)/ 8, or (2.102, 2.448). In the ideal situation with normality and known σ, always use X ±z 1 α/2 σ n With a small normal sample but unknown σ, estimate σ by s and replace z 1 α/2 by t 1 α/2,n 1 to allow for the uncertainty. When n is large, CLT grants normality of X, s estimates σ reliably, and z 1 α/2 t 1 α/2,n 1. Coverage versus Precision To cover the truth more often, one needs a higher confidence coefficient, but at the expense of wider intervals. Slide 18 The interval (, ) has 100% coverage but is useless. A point estimate is the most precise but always misses. Given sample size n, X ±z1 α/2 σ/ n is the shortest interval estimate for µ among all that have a confidence coefficient (1 α)100%. To achieve both coverage and precision, one has to take a large enough sample.

10 STAT 503 Sampling Distribution and Statistical Estimation 10 Planning Sample Size Slide 19 The agronomist is planning a new study of wheat stem diameter, and wants a 95% CI of µ no wider than.2 mm. From experience and pilot study, he believes that σ =.25 is about right. The half-width of CI is z.975 σ n = n. Solving for n from 1.96(.25)/ n.1, one gets n 24. Let h be the desired half-width for a (1 α)100% CI. Solving for n from z 1 α/2 σ n h, one has ( z1 α/2 σ n h ) 2 z 1 α/2 t 1 α/2,n 1 for large n. Need a conservative estimate of σ. To cut the width by half, one needs to quadruple the sample size n. CI for Population Proportion Slide adult female deer were captured and 97 found to be pregnant. Construct a 95% CI for pregnant proportion in the population. Since ˆp = =.7886, ˆσˆp =.7886(1.7886) 123 =.08, the 95% CI is given by.7886±1.96(.08), or (.7165,.8607). Fora95%CIwithhalf-widthh 3%, it is safe to have n (1.96(0.5)/0.03) 2 = Consider X i Bin(1,p), i = 1,...,n, independent. One has X = i X i Bin(n,p). For n large, by CLT, X/n p P( z) Φ(z). p(1 p)/n The sample proportion ˆp = X/n is actually an X. As an estimate of σˆp = p(1 p)/n one may use ˆp(1 ˆp)/n. A (1 α)100% CI for p is thus ˆp±z 1 α/2 ˆp(1 ˆp)/n. σ = p(1 p) 0.5.

11 STAT 503 Sampling Distribution and Statistical Estimation 11 Confidence Interval for σ 2 For X 1,...,X n from a population with variance σ 2, the sample variance s 2 = i (X i X) 2 /(n 1) is an unbiased estimate of σ 2. Slide 21 With Z i N(0,1), i = 1,...,n. i (Z i Z) 2 follows a χ 2 -distribution with a degree of freedom (df) ν = n df=5, χ 2 ν ν For X i N(µ,σ 2 ), i = 1,...,n, (n 1)s 2 /σ 2 follows χ 2 n 1. For X i N(µ,σ 2 ), i = 1,...,n, P( χ2.025,n 1 n 1 < s2 < χ2.975,n 1 ) = σ 2 n Solving for σ 2, a 95% CI is (n 1)s 2 χ 2.975,n 1 < σ 2 < (n 1)s2 χ 2.025,n 1 For n = 13 and s =.2375, χ 2.025,12 = and χ 2.975,12 = , so a 95% CI for σ 2 is 12(.2375) 2 < σ 2 < 12(.2375)2, or < σ < Simulations of Coverage, Robustness Slide 22 ## generate data and set parameters ## n <- 10; x <- matrix(rnorm(10000*n),ncol=10000) ## mu <- 0; sig <- 1 ## N(0,1) n <- 30; x <- matrix(runif(10000*n),ncol=10000) mu <-.5; sig <- sqrt(1/12) ## U(0,1) ## calculate CIs and coverage mn <- apply(x,2,mean); v <- apply(x,2,var) hwd <- qnorm(.975)*sig/sqrt(n); lcl<-mn-hwd; ucl<-mn+hwd mean((lcl<mu)&(ucl>mu)) ## z-interval for mu hwd <- qt(.975,n-1)*sqrt(v/n); lcl<-mn-hwd; ucl<-mn+hwd mean((lcl<mu)&(ucl>mu)) ## t-interval for mu lcl <- sqrt(v*(n-1)/qchisq(.975,n-1)) ucl <- sqrt(v*(n-1)/qchisq(.025,n-1)) mean((lcl<sig)&(ucl>sig)) ## chisq-interval for sig

χ 2 distributions and confidence intervals for population variance

χ 2 distributions and confidence intervals for population variance χ 2 distributions and confidence intervals for population variance Let Z be a standard Normal random variable, i.e., Z N(0, 1). Define Y = Z 2. Y is a non-negative random variable. Its distribution is

More information

Interval estimation. September 29, Outline Basic ideas Sampling variation and CLT Interval estimation using X More general problems

Interval estimation. September 29, Outline Basic ideas Sampling variation and CLT Interval estimation using X More general problems Interval estimation September 29, 2017 STAT 151 Class 7 Slide 1 Outline of Topics 1 Basic ideas 2 Sampling variation and CLT 3 Interval estimation using X 4 More general problems STAT 151 Class 7 Slide

More information

Confidence Intervals Introduction

Confidence Intervals Introduction Confidence Intervals Introduction A point estimate provides no information about the precision and reliability of estimation. For example, the sample mean X is a point estimate of the population mean μ

More information

8.1 Estimation of the Mean and Proportion

8.1 Estimation of the Mean and Proportion 8.1 Estimation of the Mean and Proportion Statistical inference enables us to make judgments about a population on the basis of sample information. The mean, standard deviation, and proportions of a population

More information

Unit 5: Sampling Distributions of Statistics

Unit 5: Sampling Distributions of Statistics Unit 5: Sampling Distributions of Statistics Statistics 571: Statistical Methods Ramón V. León 6/12/2004 Unit 5 - Stat 571 - Ramon V. Leon 1 Definitions and Key Concepts A sample statistic used to estimate

More information

Unit 5: Sampling Distributions of Statistics

Unit 5: Sampling Distributions of Statistics Unit 5: Sampling Distributions of Statistics Statistics 571: Statistical Methods Ramón V. León 6/12/2004 Unit 5 - Stat 571 - Ramon V. Leon 1 Definitions and Key Concepts A sample statistic used to estimate

More information

BIO5312 Biostatistics Lecture 5: Estimations

BIO5312 Biostatistics Lecture 5: Estimations BIO5312 Biostatistics Lecture 5: Estimations Yujin Chung September 27th, 2016 Fall 2016 Yujin Chung Lec5: Estimations Fall 2016 1/34 Recap Yujin Chung Lec5: Estimations Fall 2016 2/34 Today s lecture and

More information

MATH 3200 Exam 3 Dr. Syring

MATH 3200 Exam 3 Dr. Syring . Suppose n eligible voters are polled (randomly sampled) from a population of size N. The poll asks voters whether they support or do not support increasing local taxes to fund public parks. Let M be

More information

Statistical Intervals. Chapter 7 Stat 4570/5570 Material from Devore s book (Ed 8), and Cengage

Statistical Intervals. Chapter 7 Stat 4570/5570 Material from Devore s book (Ed 8), and Cengage 7 Statistical Intervals Chapter 7 Stat 4570/5570 Material from Devore s book (Ed 8), and Cengage Confidence Intervals The CLT tells us that as the sample size n increases, the sample mean X is close to

More information

Chapter 8 Statistical Intervals for a Single Sample

Chapter 8 Statistical Intervals for a Single Sample Chapter 8 Statistical Intervals for a Single Sample Part 1: Confidence intervals (CI) for population mean µ Section 8-1: CI for µ when σ 2 known & drawing from normal distribution Section 8-1.2: Sample

More information

Statistics for Business and Economics

Statistics for Business and Economics Statistics for Business and Economics Chapter 7 Estimation: Single Population Copyright 010 Pearson Education, Inc. Publishing as Prentice Hall Ch. 7-1 Confidence Intervals Contents of this chapter: Confidence

More information

STAT Chapter 7: Confidence Intervals

STAT Chapter 7: Confidence Intervals STAT 515 -- Chapter 7: Confidence Intervals With a point estimate, we used a single number to estimate a parameter. We can also use a set of numbers to serve as reasonable estimates for the parameter.

More information

Estimating parameters 5.3 Confidence Intervals 5.4 Sample Variance

Estimating parameters 5.3 Confidence Intervals 5.4 Sample Variance Estimating parameters 5.3 Confidence Intervals 5.4 Sample Variance Prof. Tesler Math 186 Winter 2017 Prof. Tesler Ch. 5: Confidence Intervals, Sample Variance Math 186 / Winter 2017 1 / 29 Estimating parameters

More information

ECO220Y Estimation: Confidence Interval Estimator for Sample Proportions Readings: Chapter 11 (skip 11.5)

ECO220Y Estimation: Confidence Interval Estimator for Sample Proportions Readings: Chapter 11 (skip 11.5) ECO220Y Estimation: Confidence Interval Estimator for Sample Proportions Readings: Chapter 11 (skip 11.5) Fall 2011 Lecture 10 (Fall 2011) Estimation Lecture 10 1 / 23 Review: Sampling Distributions Sample

More information

Statistical Intervals (One sample) (Chs )

Statistical Intervals (One sample) (Chs ) 7 Statistical Intervals (One sample) (Chs 8.1-8.3) Confidence Intervals The CLT tells us that as the sample size n increases, the sample mean X is close to normally distributed with expected value µ and

More information

Chapter 7 - Lecture 1 General concepts and criteria

Chapter 7 - Lecture 1 General concepts and criteria Chapter 7 - Lecture 1 General concepts and criteria January 29th, 2010 Best estimator Mean Square error Unbiased estimators Example Unbiased estimators not unique Special case MVUE Bootstrap General Question

More information

Point Estimation. Principle of Unbiased Estimation. When choosing among several different estimators of θ, select one that is unbiased.

Point Estimation. Principle of Unbiased Estimation. When choosing among several different estimators of θ, select one that is unbiased. Point Estimation Point Estimation Definition A point estimate of a parameter θ is a single number that can be regarded as a sensible value for θ. A point estimate is obtained by selecting a suitable statistic

More information

Applied Statistics I

Applied Statistics I Applied Statistics I Liang Zhang Department of Mathematics, University of Utah July 14, 2008 Liang Zhang (UofU) Applied Statistics I July 14, 2008 1 / 18 Point Estimation Liang Zhang (UofU) Applied Statistics

More information

For more information about how to cite these materials visit

For more information about how to cite these materials visit Author(s): Kerby Shedden, Ph.D., 2010 License: Unless otherwise noted, this material is made available under the terms of the Creative Commons Attribution Share Alike 3.0 License: http://creativecommons.org/licenses/by-sa/3.0/

More information

Lecture 2. Probability Distributions Theophanis Tsandilas

Lecture 2. Probability Distributions Theophanis Tsandilas Lecture 2 Probability Distributions Theophanis Tsandilas Comment on measures of dispersion Why do common measures of dispersion (variance and standard deviation) use sums of squares: nx (x i ˆµ) 2 i=1

More information

1 Inferential Statistic

1 Inferential Statistic 1 Inferential Statistic Population versus Sample, parameter versus statistic A population is the set of all individuals the researcher intends to learn about. A sample is a subset of the population and

More information

4.3 Normal distribution

4.3 Normal distribution 43 Normal distribution Prof Tesler Math 186 Winter 216 Prof Tesler 43 Normal distribution Math 186 / Winter 216 1 / 4 Normal distribution aka Bell curve and Gaussian distribution The normal distribution

More information

Estimation Y 3. Confidence intervals I, Feb 11,

Estimation Y 3. Confidence intervals I, Feb 11, Estimation Example: Cholesterol levels of heart-attack patients Data: Observational study at a Pennsylvania medical center blood cholesterol levels patients treated for heart attacks measurements 2, 4,

More information

CHAPTER 8. Confidence Interval Estimation Point and Interval Estimates

CHAPTER 8. Confidence Interval Estimation Point and Interval Estimates CHAPTER 8. Confidence Interval Estimation Point and Interval Estimates A point estimate is a single number, a confidence interval provides additional information about the variability of the estimate Lower

More information

Chapter 5. Sampling Distributions

Chapter 5. Sampling Distributions Lecture notes, Lang Wu, UBC 1 Chapter 5. Sampling Distributions 5.1. Introduction In statistical inference, we attempt to estimate an unknown population characteristic, such as the population mean, µ,

More information

Elementary Statistics Lecture 5

Elementary Statistics Lecture 5 Elementary Statistics Lecture 5 Sampling Distributions Chong Ma Department of Statistics University of South Carolina Chong Ma (Statistics, USC) STAT 201 Elementary Statistics 1 / 24 Outline 1 Introduction

More information

Statistics 13 Elementary Statistics

Statistics 13 Elementary Statistics Statistics 13 Elementary Statistics Summer Session I 2012 Lecture Notes 5: Estimation with Confidence intervals 1 Our goal is to estimate the value of an unknown population parameter, such as a population

More information

Chapter 7 presents the beginning of inferential statistics. The two major activities of inferential statistics are

Chapter 7 presents the beginning of inferential statistics. The two major activities of inferential statistics are Chapter 7 presents the beginning of inferential statistics. Concept: Inferential Statistics The two major activities of inferential statistics are 1 to use sample data to estimate values of population

More information

Chapter 7: Point Estimation and Sampling Distributions

Chapter 7: Point Estimation and Sampling Distributions Chapter 7: Point Estimation and Sampling Distributions Seungchul Baek Department of Statistics, University of South Carolina STAT 509: Statistics for Engineers 1 / 20 Motivation In chapter 3, we learned

More information

Lecture 23. STAT 225 Introduction to Probability Models April 4, Whitney Huang Purdue University. Normal approximation to Binomial

Lecture 23. STAT 225 Introduction to Probability Models April 4, Whitney Huang Purdue University. Normal approximation to Binomial Lecture 23 STAT 225 Introduction to Probability Models April 4, 2014 approximation Whitney Huang Purdue University 23.1 Agenda 1 approximation 2 approximation 23.2 Characteristics of the random variable:

More information

Chapter 5. Statistical inference for Parametric Models

Chapter 5. Statistical inference for Parametric Models Chapter 5. Statistical inference for Parametric Models Outline Overview Parameter estimation Method of moments How good are method of moments estimates? Interval estimation Statistical Inference for Parametric

More information

μ: ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics

μ: ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics μ: ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics CONTENTS Estimating parameters The sampling distribution Confidence intervals for μ Hypothesis tests for μ The t-distribution Comparison

More information

Determining Sample Size. Slide 1 ˆ ˆ. p q n E = z α / 2. (solve for n by algebra) n = E 2

Determining Sample Size. Slide 1 ˆ ˆ. p q n E = z α / 2. (solve for n by algebra) n = E 2 Determining Sample Size Slide 1 E = z α / 2 ˆ ˆ p q n (solve for n by algebra) n = ( zα α / 2) 2 p ˆ qˆ E 2 Sample Size for Estimating Proportion p When an estimate of ˆp is known: Slide 2 n = ˆ ˆ ( )

More information

Normal distribution Approximating binomial distribution by normal 2.10 Central Limit Theorem

Normal distribution Approximating binomial distribution by normal 2.10 Central Limit Theorem 1.1.2 Normal distribution 1.1.3 Approimating binomial distribution by normal 2.1 Central Limit Theorem Prof. Tesler Math 283 Fall 216 Prof. Tesler 1.1.2-3, 2.1 Normal distribution Math 283 / Fall 216 1

More information

UNIVERSITY OF VICTORIA Midterm June 2014 Solutions

UNIVERSITY OF VICTORIA Midterm June 2014 Solutions UNIVERSITY OF VICTORIA Midterm June 04 Solutions NAME: STUDENT NUMBER: V00 Course Name & No. Inferential Statistics Economics 46 Section(s) A0 CRN: 375 Instructor: Betty Johnson Duration: hour 50 minutes

More information

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

Class 16. Daniel B. Rowe, Ph.D. Department of Mathematics, Statistics, and Computer Science. Marquette University MATH 1700 Class 16 Daniel B. Rowe, Ph.D. Department of Mathematics, Statistics, and Computer Science Copyright 013 by D.B. Rowe 1 Agenda: Recap Chapter 7. - 7.3 Lecture Chapter 8.1-8. Review Chapter 6. Problem Solving

More information

Section The Sampling Distribution of a Sample Mean

Section The Sampling Distribution of a Sample Mean Section 5.2 - The Sampling Distribution of a Sample Mean Statistics 104 Autumn 2004 Copyright c 2004 by Mark E. Irwin The Sampling Distribution of a Sample Mean Example: Quality control check of light

More information

STAT 111 Recitation 3

STAT 111 Recitation 3 STAT 111 Recitation 3 Linjun Zhang stat.wharton.upenn.edu/~linjunz/ September 23, 2017 Misc. The unpicked-up homeworks will be put in the STAT 111 box in the Stats Department lobby (It s on the 4th floor

More information

Normal Distribution. Notes. Normal Distribution. Standard Normal. Sums of Normal Random Variables. Normal. approximation of Binomial.

Normal Distribution. Notes. Normal Distribution. Standard Normal. Sums of Normal Random Variables. Normal. approximation of Binomial. Lecture 21,22, 23 Text: A Course in Probability by Weiss 8.5 STAT 225 Introduction to Probability Models March 31, 2014 Standard Sums of Whitney Huang Purdue University 21,22, 23.1 Agenda 1 2 Standard

More information

Chapter 6.1 Confidence Intervals. Stat 226 Introduction to Business Statistics I. Chapter 6, Section 6.1

Chapter 6.1 Confidence Intervals. Stat 226 Introduction to Business Statistics I. Chapter 6, Section 6.1 Stat 226 Introduction to Business Statistics I Spring 2009 Professor: Dr. Petrutza Caragea Section A Tuesdays and Thursdays 9:30-10:50 a.m. Chapter 6, Section 6.1 Confidence Intervals Confidence Intervals

More information

Lecture 6: Confidence Intervals

Lecture 6: Confidence Intervals Lecture 6: Confidence Intervals Taeyong Park Washington University in St. Louis February 22, 2017 Park (Wash U.) U25 PS323 Intro to Quantitative Methods February 22, 2017 1 / 29 Today... Review of sampling

More information

Chapter 8. Introduction to Statistical Inference

Chapter 8. Introduction to Statistical Inference Chapter 8. Introduction to Statistical Inference Point Estimation Statistical inference is to draw some type of conclusion about one or more parameters(population characteristics). Now you know that a

More information

Chapter 8 Estimation

Chapter 8 Estimation Chapter 8 Estimation There are two important forms of statistical inference: estimation (Confidence Intervals) Hypothesis Testing Statistical Inference drawing conclusions about populations based on samples

More information

1 Introduction 1. 3 Confidence interval for proportion p 6

1 Introduction 1. 3 Confidence interval for proportion p 6 Math 321 Chapter 5 Confidence Intervals (draft version 2019/04/15-13:41:02) Contents 1 Introduction 1 2 Confidence interval for mean µ 2 2.1 Known variance................................. 3 2.2 Unknown

More information

Chapter 7.2: Large-Sample Confidence Intervals for a Population Mean and Proportion. Instructor: Elvan Ceyhan

Chapter 7.2: Large-Sample Confidence Intervals for a Population Mean and Proportion. Instructor: Elvan Ceyhan 1 Chapter 7.2: Large-Sample Confidence Intervals for a Population Mean and Proportion Instructor: Elvan Ceyhan Outline of this chapter: Large-Sample Interval for µ Confidence Intervals for Population Proportion

More information

Section 7.5 The Normal Distribution. Section 7.6 Application of the Normal Distribution

Section 7.5 The Normal Distribution. Section 7.6 Application of the Normal Distribution Section 7.6 Application of the Normal Distribution A random variable that may take on infinitely many values is called a continuous random variable. A continuous probability distribution is defined by

More information

Statistics and Probability

Statistics and Probability Statistics and Probability Continuous RVs (Normal); Confidence Intervals Outline Continuous random variables Normal distribution CLT Point estimation Confidence intervals http://www.isrec.isb-sib.ch/~darlene/geneve/

More information

Point Estimation. Stat 4570/5570 Material from Devore s book (Ed 8), and Cengage

Point Estimation. Stat 4570/5570 Material from Devore s book (Ed 8), and Cengage 6 Point Estimation Stat 4570/5570 Material from Devore s book (Ed 8), and Cengage Point Estimation Statistical inference: directed toward conclusions about one or more parameters. We will use the generic

More information

Chapter 14 : Statistical Inference 1. Note : Here the 4-th and 5-th editions of the text have different chapters, but the material is the same.

Chapter 14 : Statistical Inference 1. Note : Here the 4-th and 5-th editions of the text have different chapters, but the material is the same. Chapter 14 : Statistical Inference 1 Chapter 14 : Introduction to Statistical Inference Note : Here the 4-th and 5-th editions of the text have different chapters, but the material is the same. Data x

More information

Exam 2 Spring 2015 Statistics for Applications 4/9/2015

Exam 2 Spring 2015 Statistics for Applications 4/9/2015 18.443 Exam 2 Spring 2015 Statistics for Applications 4/9/2015 1. True or False (and state why). (a). The significance level of a statistical test is not equal to the probability that the null hypothesis

More information

ECON 214 Elements of Statistics for Economists 2016/2017

ECON 214 Elements of Statistics for Economists 2016/2017 ECON 214 Elements of Statistics for Economists 2016/2017 Topic The Normal Distribution Lecturer: Dr. Bernardin Senadza, Dept. of Economics bsenadza@ug.edu.gh College of Education School of Continuing and

More information

continuous rv Note for a legitimate pdf, we have f (x) 0 and f (x)dx = 1. For a continuous rv, P(X = c) = c f (x)dx = 0, hence

continuous rv Note for a legitimate pdf, we have f (x) 0 and f (x)dx = 1. For a continuous rv, P(X = c) = c f (x)dx = 0, hence continuous rv Let X be a continuous rv. Then a probability distribution or probability density function (pdf) of X is a function f(x) such that for any two numbers a and b with a b, P(a X b) = b a f (x)dx.

More information

Sampling. Marc H. Mehlman University of New Haven. Marc Mehlman (University of New Haven) Sampling 1 / 20.

Sampling. Marc H. Mehlman University of New Haven. Marc Mehlman (University of New Haven) Sampling 1 / 20. Sampling Marc H. Mehlman marcmehlman@yahoo.com University of New Haven (University of New Haven) Sampling 1 / 20 Table of Contents 1 Sampling Distributions 2 Central Limit Theorem 3 Binomial Distribution

More information

Sampling and sampling distribution

Sampling and sampling distribution Sampling and sampling distribution September 12, 2017 STAT 101 Class 5 Slide 1 Outline of Topics 1 Sampling 2 Sampling distribution of a mean 3 Sampling distribution of a proportion STAT 101 Class 5 Slide

More information

Final/Exam #3 Form B - Statistics 211 (Fall 1999)

Final/Exam #3 Form B - Statistics 211 (Fall 1999) Final/Exam #3 Form B - Statistics 211 (Fall 1999) This test consists of nine numbered pages. Make sure you have all 9 pages. It is your responsibility to inform me if a page is missing!!! You have at least

More information

Lecture 9 - Sampling Distributions and the CLT

Lecture 9 - Sampling Distributions and the CLT Lecture 9 - Sampling Distributions and the CLT Sta102/BME102 Colin Rundel September 23, 2015 1 Variability of Estimates Activity Sampling distributions - via simulation Sampling distributions - via CLT

More information

Lecture 9 - Sampling Distributions and the CLT. Mean. Margin of error. Sta102/BME102. February 6, Sample mean ( X ): x i

Lecture 9 - Sampling Distributions and the CLT. Mean. Margin of error. Sta102/BME102. February 6, Sample mean ( X ): x i Lecture 9 - Sampling Distributions and the CLT Sta102/BME102 Colin Rundel February 6, 2015 http:// pewresearch.org/ pubs/ 2191/ young-adults-workers-labor-market-pay-careers-advancement-recession Sta102/BME102

More information

σ 2 : ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics

σ 2 : ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics σ : ESTIMATES, CONFIDENCE INTERVALS, AND TESTS Business Statistics CONTENTS Estimating other parameters besides μ Estimating variance Confidence intervals for σ Hypothesis tests for σ Estimating standard

More information

The topics in this section are related and necessary topics for both course objectives.

The topics in this section are related and necessary topics for both course objectives. 2.5 Probability Distributions The topics in this section are related and necessary topics for both course objectives. A probability distribution indicates how the probabilities are distributed for outcomes

More information

AMS 7 Sampling Distributions, Central limit theorem, Confidence Intervals Lecture 4

AMS 7 Sampling Distributions, Central limit theorem, Confidence Intervals Lecture 4 AMS 7 Sampling Distributions, Central limit theorem, Confidence Intervals Lecture 4 Department of Applied Mathematics and Statistics, University of California, Santa Cruz Summer 2014 1 / 26 Sampling Distributions!!!!!!

More information

Tutorial 11: Limit Theorems. Baoxiang Wang & Yihan Zhang bxwang, April 10, 2017

Tutorial 11: Limit Theorems. Baoxiang Wang & Yihan Zhang bxwang, April 10, 2017 Tutorial 11: Limit Theorems Baoxiang Wang & Yihan Zhang bxwang, yhzhang@cse.cuhk.edu.hk April 10, 2017 1 Outline The Central Limit Theorem (CLT) Normal Approximation Based on CLT De Moivre-Laplace Approximation

More information

5.3 Interval Estimation

5.3 Interval Estimation 5.3 Interval Estimation Ulrich Hoensch Wednesday, March 13, 2013 Confidence Intervals Definition Let θ be an (unknown) population parameter. A confidence interval with confidence level C is an interval

More information

No, because np = 100(0.02) = 2. The value of np must be greater than or equal to 5 to use the normal approximation.

No, because np = 100(0.02) = 2. The value of np must be greater than or equal to 5 to use the normal approximation. 1) If n 100 and p 0.02 in a binomial experiment, does this satisfy the rule for a normal approximation? Why or why not? No, because np 100(0.02) 2. The value of np must be greater than or equal to 5 to

More information

Version A. Problem 1. Let X be the continuous random variable defined by the following pdf: 1 x/2 when 0 x 2, f(x) = 0 otherwise.

Version A. Problem 1. Let X be the continuous random variable defined by the following pdf: 1 x/2 when 0 x 2, f(x) = 0 otherwise. Math 224 Q Exam 3A Fall 217 Tues Dec 12 Version A Problem 1. Let X be the continuous random variable defined by the following pdf: { 1 x/2 when x 2, f(x) otherwise. (a) Compute the mean µ E[X]. E[X] x

More information

Chapter 7. Confidence Intervals and Sample Sizes. Definition. Definition. Definition. Definition. Confidence Interval : CI. Point Estimate.

Chapter 7. Confidence Intervals and Sample Sizes. Definition. Definition. Definition. Definition. Confidence Interval : CI. Point Estimate. Chapter 7 Confidence Intervals and Sample Sizes 7. Estimating a Proportion p 7.3 Estimating a Mean µ (σ known) 7.4 Estimating a Mean µ (σ unknown) 7.5 Estimating a Standard Deviation σ In a recent poll,

More information

Key Objectives. Module 2: The Logic of Statistical Inference. Z-scores. SGSB Workshop: Using Statistical Data to Make Decisions

Key Objectives. Module 2: The Logic of Statistical Inference. Z-scores. SGSB Workshop: Using Statistical Data to Make Decisions SGSB Workshop: Using Statistical Data to Make Decisions Module 2: The Logic of Statistical Inference Dr. Tom Ilvento January 2006 Dr. Mugdim Pašić Key Objectives Understand the logic of statistical inference

More information

Hypothesis Tests: One Sample Mean Cal State Northridge Ψ320 Andrew Ainsworth PhD

Hypothesis Tests: One Sample Mean Cal State Northridge Ψ320 Andrew Ainsworth PhD Hypothesis Tests: One Sample Mean Cal State Northridge Ψ320 Andrew Ainsworth PhD MAJOR POINTS Sampling distribution of the mean revisited Testing hypotheses: sigma known An example Testing hypotheses:

More information

Shifting our focus. We were studying statistics (data, displays, sampling...) The next few lectures focus on probability (randomness) Why?

Shifting our focus. We were studying statistics (data, displays, sampling...) The next few lectures focus on probability (randomness) Why? Probability Introduction Shifting our focus We were studying statistics (data, displays, sampling...) The next few lectures focus on probability (randomness) Why? What is Probability? Probability is used

More information

7 THE CENTRAL LIMIT THEOREM

7 THE CENTRAL LIMIT THEOREM CHAPTER 7 THE CENTRAL LIMIT THEOREM 373 7 THE CENTRAL LIMIT THEOREM Figure 7.1 If you want to figure out the distribution of the change people carry in their pockets, using the central limit theorem and

More information

Lecture Slides. Elementary Statistics Tenth Edition. by Mario F. Triola. and the Triola Statistics Series

Lecture Slides. Elementary Statistics Tenth Edition. by Mario F. Triola. and the Triola Statistics Series Lecture Slides Elementary Statistics Tenth Edition and the Triola Statistics Series by Mario F. Triola Slide 1 Chapter 5 Probability Distributions 5-1 Overview 5-2 Random Variables 5-3 Binomial Probability

More information

ECO220Y Sampling Distributions of Sample Statistics: Sample Proportion Readings: Chapter 10, section

ECO220Y Sampling Distributions of Sample Statistics: Sample Proportion Readings: Chapter 10, section ECO220Y Sampling Distributions of Sample Statistics: Sample Proportion Readings: Chapter 10, section 10.1-10.3 Fall 2011 Lecture 9 (Fall 2011) Sampling Distributions Lecture 9 1 / 15 Sampling Distributions

More information

Chapter 8: Sampling distributions of estimators Sections

Chapter 8: Sampling distributions of estimators Sections Chapter 8 continued Chapter 8: Sampling distributions of estimators Sections 8.1 Sampling distribution of a statistic 8.2 The Chi-square distributions 8.3 Joint Distribution of the sample mean and sample

More information

MATH 264 Problem Homework I

MATH 264 Problem Homework I MATH Problem Homework I Due to December 9, 00@:0 PROBLEMS & SOLUTIONS. A student answers a multiple-choice examination question that offers four possible answers. Suppose that the probability that the

More information

2011 Pearson Education, Inc

2011 Pearson Education, Inc Statistics for Business and Economics Chapter 4 Random Variables & Probability Distributions Content 1. Two Types of Random Variables 2. Probability Distributions for Discrete Random Variables 3. The Binomial

More information

Chapter 7 Sampling Distributions and Point Estimation of Parameters

Chapter 7 Sampling Distributions and Point Estimation of Parameters Chapter 7 Sampling Distributions and Point Estimation of Parameters Part 1: Sampling Distributions, the Central Limit Theorem, Point Estimation & Estimators Sections 7-1 to 7-2 1 / 25 Statistical Inferences

More information

Statistics, Their Distributions, and the Central Limit Theorem

Statistics, Their Distributions, and the Central Limit Theorem Statistics, Their Distributions, and the Central Limit Theorem MATH 3342 Sections 5.3 and 5.4 Sample Means Suppose you sample from a popula0on 10 0mes. You record the following sample means: 10.1 9.5 9.6

More information

Confidence Intervals. σ unknown, small samples The t-statistic /22

Confidence Intervals. σ unknown, small samples The t-statistic /22 Confidence Intervals σ unknown, small samples The t-statistic 1 /22 Homework Read Sec 7-3. Discussion Question pg 365 Do Ex 7-3 1-4, 6, 9, 12, 14, 15, 17 2/22 Objective find the confidence interval for

More information

Introduction to Statistical Data Analysis II

Introduction to Statistical Data Analysis II Introduction to Statistical Data Analysis II JULY 2011 Afsaneh Yazdani Preface Major branches of Statistics: - Descriptive Statistics - Inferential Statistics Preface What is Inferential Statistics? Preface

More information

Section 2: Estimation, Confidence Intervals and Testing Hypothesis

Section 2: Estimation, Confidence Intervals and Testing Hypothesis Section 2: Estimation, Confidence Intervals and Testing Hypothesis Tengyuan Liang, Chicago Booth https://tyliang.github.io/bus41000/ Suggested Reading: Naked Statistics, Chapters 7, 8, 9 and 10 OpenIntro

More information

NCC5010: Data Analytics and Modeling Spring 2015 Exemption Exam

NCC5010: Data Analytics and Modeling Spring 2015 Exemption Exam NCC5010: Data Analytics and Modeling Spring 2015 Exemption Exam Do not look at other pages until instructed to do so. The time limit is two hours. This exam consists of 6 problems. Do all of your work

More information

Data Analysis and Statistical Methods Statistics 651

Data Analysis and Statistical Methods Statistics 651 Data Analysis and Statistical Methods Statistics 651 http://www.stat.tamu.edu/~suhasini/teaching.html Lecture 13 (MWF) Designing the experiment: Margin of Error Suhasini Subba Rao Terminology: The population

More information

STA258H5. Al Nosedal and Alison Weir. Winter Al Nosedal and Alison Weir STA258H5 Winter / 41

STA258H5. Al Nosedal and Alison Weir. Winter Al Nosedal and Alison Weir STA258H5 Winter / 41 STA258H5 Al Nosedal and Alison Weir Winter 2017 Al Nosedal and Alison Weir STA258H5 Winter 2017 1 / 41 NORMAL APPROXIMATION TO THE BINOMIAL DISTRIBUTION. Al Nosedal and Alison Weir STA258H5 Winter 2017

More information

. 13. The maximum error (margin of error) of the estimate for μ (based on known σ) is:

. 13. The maximum error (margin of error) of the estimate for μ (based on known σ) is: Statistics Sample Exam 3 Solution Chapters 6 & 7: Normal Probability Distributions & Estimates 1. What percent of normally distributed data value lie within 2 standard deviations to either side of the

More information

STA 320 Fall Thursday, Dec 5. Sampling Distribution. STA Fall

STA 320 Fall Thursday, Dec 5. Sampling Distribution. STA Fall STA 320 Fall 2013 Thursday, Dec 5 Sampling Distribution STA 320 - Fall 2013-1 Review We cannot tell what will happen in any given individual sample (just as we can not predict a single coin flip in advance).

More information

Part V - Chance Variability

Part V - Chance Variability Part V - Chance Variability Dr. Joseph Brennan Math 148, BU Dr. Joseph Brennan (Math 148, BU) Part V - Chance Variability 1 / 78 Law of Averages In Chapter 13 we discussed the Kerrich coin-tossing experiment.

More information

STAT Chapter 6: Sampling Distributions

STAT Chapter 6: Sampling Distributions STAT 515 -- Chapter 6: Sampling Distributions Definition: Parameter = a number that characterizes a population (example: population mean ) it s typically unknown. Statistic = a number that characterizes

More information

Lecture 22. Survey Sampling: an Overview

Lecture 22. Survey Sampling: an Overview Math 408 - Mathematical Statistics Lecture 22. Survey Sampling: an Overview March 25, 2013 Konstantin Zuev (USC) Math 408, Lecture 22 March 25, 2013 1 / 16 Survey Sampling: What and Why In surveys sampling

More information

Some Discrete Distribution Families

Some Discrete Distribution Families Some Discrete Distribution Families ST 370 Many families of discrete distributions have been studied; we shall discuss the ones that are most commonly found in applications. In each family, we need a formula

More information

Confidence Intervals for the Difference Between Two Means with Tolerance Probability

Confidence Intervals for the Difference Between Two Means with Tolerance Probability Chapter 47 Confidence Intervals for the Difference Between Two Means with Tolerance Probability Introduction This procedure calculates the sample size necessary to achieve a specified distance from the

More information

1. Covariance between two variables X and Y is denoted by Cov(X, Y) and defined by. Cov(X, Y ) = E(X E(X))(Y E(Y ))

1. Covariance between two variables X and Y is denoted by Cov(X, Y) and defined by. Cov(X, Y ) = E(X E(X))(Y E(Y )) Correlation & Estimation - Class 7 January 28, 2014 Debdeep Pati Association between two variables 1. Covariance between two variables X and Y is denoted by Cov(X, Y) and defined by Cov(X, Y ) = E(X E(X))(Y

More information

Point Estimation. Some General Concepts of Point Estimation. Example. Estimator quality

Point Estimation. Some General Concepts of Point Estimation. Example. Estimator quality Point Estimation Some General Concepts of Point Estimation Statistical inference = conclusions about parameters Parameters == population characteristics A point estimate of a parameter is a value (based

More information

The Bernoulli distribution

The Bernoulli distribution This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License. Your use of this material constitutes acceptance of that license and the conditions of use of materials on this

More information

Statistics for Managers Using Microsoft Excel 7 th Edition

Statistics for Managers Using Microsoft Excel 7 th Edition Statistics for Managers Using Microsoft Excel 7 th Edition Chapter 7 Sampling Distributions Statistics for Managers Using Microsoft Excel 7e Copyright 2014 Pearson Education, Inc. Chap 7-1 Learning Objectives

More information

Random Sampling & Confidence Intervals

Random Sampling & Confidence Intervals +σ +σ +3σ Random Sampling & Confidence Intervals Lecture 5 0909.400.01 / 0909.400.0 Dr. P. s Clinic Consultant Module in Probability & Statistics in Engineering +σ +σ +3σ This Week in P&S (and Next, and

More information

Statistics, Measures of Central Tendency I

Statistics, Measures of Central Tendency I Statistics, Measures of Central Tendency I We are considering a random variable X with a probability distribution which has some parameters. We want to get an idea what these parameters are. We perfom

More information

Data Analysis and Statistical Methods Statistics 651

Data Analysis and Statistical Methods Statistics 651 Data Analysis and Statistical Methods Statistics 651 http://wwwstattamuedu/~suhasini/teachinghtml Suhasini Subba Rao Review of previous lecture The main idea in the previous lecture is that the sample

More information

2017 Fall QMS102 Tip Sheet 2

2017 Fall QMS102 Tip Sheet 2 Chapter 5: Basic Probability 2017 Fall QMS102 Tip Sheet 2 (Covering Chapters 5 to 8) EVENTS -- Each possible outcome of a variable is an event, including 3 types. 1. Simple event = Described by a single

More information

LESSON 7 INTERVAL ESTIMATION SAMIE L.S. LY

LESSON 7 INTERVAL ESTIMATION SAMIE L.S. LY LESSON 7 INTERVAL ESTIMATION SAMIE L.S. LY 1 THIS WEEK S PLAN Part I: Theory + Practice ( Interval Estimation ) Part II: Theory + Practice ( Interval Estimation ) z-based Confidence Intervals for a Population

More information

Statistical Methods in Practice STAT/MATH 3379

Statistical Methods in Practice STAT/MATH 3379 Statistical Methods in Practice STAT/MATH 3379 Dr. A. B. W. Manage Associate Professor of Mathematics & Statistics Department of Mathematics & Statistics Sam Houston State University Overview 6.1 Discrete

More information

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg :

More information