
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Material Type: Notes; Class: Introduction to Mathematical Statistics; Subject: STATISTICS; University: University of Wisconsin - Madison; Term: Spring 2003;
Typology: Study notes
1 / 1
This page cannot be seen from the preview
Don't miss anything!

n, where s is the sample stan- dard deviation.
ˆp ± zα/ 2
√ p ˆˆq/n.
μ < x¯ + zαs/
n
and a lower confidence bound for μ is
μ > ¯x − zαs/
n.
Ex. Toss n = 100 biased coins with P (H) = p. Suppose you observe 38 heads. Construct 95% CI of p. rbinom(n,1,p) will generate a Bernoulli random sample of size n with P (Xi =
X<-rbinom(100,1,0.4) X [1] 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 [17] 0 0 1 1 0 1 0 1 1 0 1 0 1 0 1 0
sd(X) [1] 0. 0.38+1.960.49/sqrt(100) [1] 0. 0.38-1.960.49/sqrt(100) [1] 0.
Exercise 7.23. Use Concept 2. When 37 helmets were subjected to a certain im- pact test, 24 showed damage. Let p denote the proportion of helmets that would show damage under the test. Find a 99% CI for p.
Example 7.8., 7.8. Use Concept 2.