🎥 Watch Inference Using Central Limit Theorem
Optional: 📖 Read
infer
packageQ - State the central limit theorem.
For a population with a well-defined mean μ and standard deviation σ, these three properties hold for the distribution of sample average ¯X, assuming certain conditions hold:
Q - State the central limit theorem.
For a population with a well-defined mean μ and standard deviation σ, these three properties hold for the distribution of sample average ¯X, assuming certain conditions hold:
✅ The distribution of the sample statistic is
Q - State the central limit theorem.
For a population with a well-defined mean μ and standard deviation σ, these three properties hold for the distribution of sample average ¯X, assuming certain conditions hold:
✅ The distribution of the sample statistic is approximately normal
Q - State the central limit theorem.
For a population with a well-defined mean μ and standard deviation σ, these three properties hold for the distribution of sample average ¯X, assuming certain conditions hold:
✅ The distribution of the sample statistic is approximately normal
✅ The distribution is centered at
Q - State the central limit theorem.
For a population with a well-defined mean μ and standard deviation σ, these three properties hold for the distribution of sample average ¯X, assuming certain conditions hold:
✅ The distribution of the sample statistic is approximately normal
✅ The distribution is centered at the population parameter (often interest of inference)
Q - State the central limit theorem.
For a population with a well-defined mean μ and standard deviation σ, these three properties hold for the distribution of sample average ¯X, assuming certain conditions hold:
✅ The distribution of the sample statistic is approximately normal
✅ The distribution is centered at the population parameter (often interest of inference)
✅ The variability of the distribution is inversely proportional to the square root of
Q - State the central limit theorem.
For a population with a well-defined mean μ and standard deviation σ, these three properties hold for the distribution of sample average ¯X, assuming certain conditions hold:
✅ The distribution of the sample statistic is approximately normal
✅ The distribution is centered at the population parameter (often interest of inference)
✅ The variability of the distribution is inversely proportional to the square root of the sample size
Q - Why do we care about the distribution of sample mean?
We can estimate / test for a population mean.
We can construct a confidence interval or conduct a hypothesis test for the population mean using the CLT-based distribution in place of a simulation-based distribution of sample mean.
Q - What is the distribution of sample mean by CLT?
When the population mean μ and the population standard deviation σ are known,
Q - What is the distribution of sample mean by CLT?
When the population mean μ and the population standard deviation σ are known,
¯X∼N(μ,σ/√n)⇔Z=¯X−μσ/√n∼N(0,1)
approximately, for a large enough n.
Q - What is the distribution of sample mean by CLT?
When the population mean μ and the population standard deviation σ are known,
¯X∼N(μ,σ/√n)⇔Z=¯X−μσ/√n∼N(0,1)
approximately, for a large enough n.
Q - What if σ is unknown?
Q - What if σ is unknown?
Z=¯X−μσ/√n→T=¯X−μS/√n where S2=∑ni=1(Xi−¯X)2/(n−1)
Q - What if σ is unknown?
Z=¯X−μσ/√n→T=¯X−μS/√n where S2=∑ni=1(Xi−¯X)2/(n−1)
Q - What if σ is unknown?
Z=¯X−μσ/√n→T=¯X−μS/√n where S2=∑ni=1(Xi−¯X)2/(n−1)
Q - List properties of the t-distribution.
Q - List properties of the t-distribution.
Its shape is unimodal, symmetric, centered at 0 similarly to N(0,1).
Its tails are
Q - List properties of the t-distribution.
Its shape is unimodal, symmetric, centered at 0 similarly to N(0,1).
Its tails are thicker than N(0,1).
Q - List properties of the t-distribution.
Its shape is unimodal, symmetric, centered at 0 similarly to N(0,1).
Its tails are thicker than N(0,1).
It is fully defined by
Q - List properties of the t-distribution.
Its shape is unimodal, symmetric, centered at 0 similarly to N(0,1).
Its tails are thicker than N(0,1).
It is fully defined by the degrees of freedom.
Q - Black solid line is N(0,1). What is the t-distribution with df = 1, 3, 10, and 30?
Q - Black solid line is N(0,1). What is the t-distribution with df = 1, 3, 10, and 30?
Q - What is an appropriate code to calculate P(T<1.2) where T∼t5?
pt(1.2, df = 5)
## [1] 0.8580545
Q - What is an appropriate code to calculate P(−2<T<3) where T∼t10?
pt(3, df = 10) - pt(-2, df = 10)
## [1] 0.9566342
Q - What is an appropriate code to find q s.t. P(T>q)=0.25 where X∼t7?
qt(0.25, df = 7, lower.tail = FALSE)
## [1] 0.7111418
Let's conduct a hypothesis test for H0:μ=5 vs. H1:μ≠5. We don't know the population standard deviation. We have a random sample of size 100. The CLT conditions are checked.
Q - What is the test statistic and its null distribution by CLT?
Let's conduct a hypothesis test for H0:μ=5 vs. H1:μ≠5. We don't know the population standard deviation. We have a random sample of size 100. The CLT conditions are checked.
Q - What is the test statistic and its null distribution by CLT?
Let's conduct a hypothesis test for H0:μ=5 vs. H1:μ≠5. We don't know the population standard deviation. We have a random sample of size 100. The CLT conditions are checked.
Q - What is the test statistic and its null distribution by CLT?
The test statistic is calculated by t=¯x−5s/10.
Under the null, T=¯X−5S/10∼t99
Q - What does it mean that the test statistic is 3.5?
The observed sample mean ¯x is 3.5 standard errors above the hypothesized population mean, 5.
Q - What is the formula to obtain a 1−α confidence interval for μ ?
¯x±t∗n−1×s√n
where t∗n−1 is a critical value that satisfies P(T>t∗n−1)=α/2 for T∼tn−1.
Q - What is the formula to obtain a 1−α confidence interval for μ ?
¯x±t∗n−1×s√n
where t∗n−1 is a critical value that satisfies P(T>t∗n−1)=α/2 for T∼tn−1.
Q - What is the R function to calculate t∗n−1?
Q - What is the formula to obtain a 1−α confidence interval for μ ?
¯x±t∗n−1×s√n
where t∗n−1 is a critical value that satisfies P(T>t∗n−1)=α/2 for T∼tn−1.
Q - What is the R function to calculate t∗n−1?
qt(alpha/2, df = n-1, lower.tail = FALSE)
Q - What is the function in the infer
package to use for CLT-based inference when σ is unknown?
Q - What is the function in the infer
package to use for CLT-based inference when σ is unknown?
t_test()
Tomorrow is Ask-for-Help day. Bring your questions.
Lab06 due tonight at 11:59pm
HW03 due Wednesday, June 8 at 11:59pm
Tomorrow (June 8) is the last day to withdraw with W
Submit ae18
🎥 Watch Inference Using Central Limit Theorem
Optional: 📖 Read
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |