Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授。

PDF笔记下载(Academia.edu)

Summary

  • One-sample $t$ test

    • Test for a population mean (unknown SD); sample size $n$. That is, known sample mean and SD but unknown population mean (needs to be tested) and SD.
    • Same $H_0$ and $H_A$, same calculation as $z$ test, except:
      • Assume population distribution roughly normal, unknown mean and SD.
      • Approximate unknown SD of population by sample SD, with $n-1$ degree of freedom (i.e. denominator).
  • Two independent samples
    1. Comparing the means

      • Known parameters: $\mu$, $n$ and $\sigma$ (SD) of the independent samples.
      • $H_0: \mu_1=\mu_2\Rightarrow$ the difference between the two sample means is expected to be $\mu_1-\mu_2$.
      • The SE of the difference is $$SE_1=\frac{\sigma_1}{\sqrt{n_1}},\ SE_2=\frac{\sigma_2}{\sqrt{n_2}}$$ $$\Rightarrow SE=\sqrt{SE_1^2+SE_2^2}$$ \item The above result derives from $$SE(X-Y)=\sqrt{Var(X-Y)}$$ $$=\sqrt{1^2\cdot Var(X)+(-1)^2\cdot Var(Y)}=\sqrt{SE^2(X)+SE^2(Y)}$$
      • $z$ statistics is $$z=\frac{\mu_1-\mu_2}{SE}$$
    2. Comparing the percents
      • Known parameters: $p$ and $n$ of the independent samples
      • $H_0: p_1=p_2$
      • It should use the same percents estimation for both samples (i.e. pooled estimate), since the P-valuse is computed under the null $H_0: p_1=p_2$.
      • Pooled estimate of $p$: $$\hat{p}=\frac{n_1\cdot p_1+n_2\cdot p_2}{n_1+n_2}$$
      • SE of the sample proportion, for the two samples: $$SE_1=\sqrt{\frac{\hat{p}\cdot(1-\hat{p})}{n_1}}, SE_2=\sqrt{\frac{\hat{p}\cdot(1-\hat{p})}{n_2}}$$
      • Similar to the sample mean, the SE of the difference between the sample percents is approximately $$SE=\sqrt{SE_1^2+SE_2^2}$$
      • $z$ statistic is $$z=\frac{p_1-p_2}{SE}$$

EXERCISE SET 3

If a problem asks for an approximation, please use the methods described in the video lecture segments. Unless the problem says otherwise, please give answers correct to one decimal place according to those methods. Some of the problems below are about simple random samples. If the population size is not given, you can assume that the correction factor for standard errors is close enough to 1 that it does not need to be computed. Please use the 5% cutoff for P-values unless otherwise instructed in the problem.

PROBLEM 1

A statistical test is performed, and its P-value turns out to be about 3%. Which of the following must be true? Pick ALL that are correct.

a. The null hypothesis is true.

b. There is about a 3% chance that the null hypothesis is true.

c. The alternative hypothesis is true.

d. There is about a 97% chance that the alternative hypothesis is true.

e. If the null hypothesis were true, there would be about a 3% chance of getting data that were like those that were observed in the sample or even further in the direction of the alternative.

f. The P-value of about 3% was computed assuming that the null hypothesis was true.

Solution

(e) and (f) are correct. Firstly, 3% is computed under assuming $H_0$ is true. So (f) is correct. Then, P-value means: assuming the null is true, the chance of getting data like the data in the sample or even more like the alternative. So (e) is correct (definition of P-value). Note that (a) and (c) could be wrong because there are two types of error, Type I and Type II error. There is no such thing as "the chance that the null / alternative is true". So (b) and (d) are incorrect.

PROBLEM 2

The distribution of cholesterol levels of the residents of a state closely follows the normal curve. Investigators want to test whether the mean cholesterol level of the residents is 200 mg/dL or lower. A simple random sample of 12 residents has a mean cholesterol level of 185 mg/dL, with an SD of 20 mg/dL (computed as the ordinary SD of a list of 12 numbers, with 12 in the denominator). Let $m$ be the mean cholesterol level of the residents of the state, measured in mg/dL. In Problems 2A-2E, perform a $t$ test of the hypotheses $$\text{Null}: m = 200$$ $$\text{Alternative}: m < 200$$

2A You are using data from a simple random sample to test the given hypotheses. Which of the following sets of assumptions is further required to justify the use of a $t$ distribution to compute the P-value?

a. The distribution of the cholesterol levels of the residents of the state is close to normal.

b. The distribution of the cholesterol levels of the residents of the state is close to normal, with an unknown mean.

c. The distribution of the cholesterol levels of the residents of the state is close to normal, with an unknown mean and an unknown SD.

2B The t distribution that should be used has ( ) degrees of freedom.

2C The value of the t statistic is closest to?

2D The P-value of the test is closest to?

2E The conclusion of the test is to reject the null hypothesis not reject the null hypothesis

Solution

2A) The sample is small, so unless the population distribution is bell-shaped, you might have trouble using a bell-shaped approximation to the probabilities for the sample mean. If the mean of the normally distributed population were already known, there would be no reason to perform the test. If the SD of the underlying normally distributed population (with unknown mean) were known, you would perform the $z$ test.

2B) The degree of freedom is sample size minus 1, that is, $12-1=11$.

2C) Sample SD is $$\sigma=20\times\sqrt{\frac{12}{11}}$$ and $$SE=\frac{\sigma}{12}$$ Thus the t-statistic is $$t=\frac{185-200}{SE}=-2.487469$$ R code:

sigma = 20 * sqrt(12 / 11)
se = sigma / sqrt(12)
t = (185 - 200) /se; t
[1] -2.487469

2D) Left-tailed $t$ test, 11 degree of freedom, P-value is $p=0.0150854$ R code:

pt(t, 11)
[1] 0.0150854

2E) Because the P-value is less than 5%, so reject $H_0$.

PROBLEM 3

In a simple random sample of 1000 people taken from City A, 13% are senior citizens. In an independent simple random sample of 600 people taken from City B, 17% are senior citizens. Is the percent of senior citizens different in the two cities? Or is this just chance variation? Answer in the steps described in Problems 3A-3C.

3A Under the null hypothesis, the percent of senior citizens in each of the two cities is estimated to be ( )%.

3B Under the null hypothesis, the estimated standard error of the difference between the percents of senior citizens in the two samples is closest to ( )%.

3C The P-value of the test is closest to ( )%, so the null hypothesis is rejected.

Solution

This is two independent simple random samples, $$H_0: p_A=p_B$$ $$p_A\neq p_B$$

3A) Pooled estimate of $p$ is $$\hat{p}=\frac{1000\times13%+600\times17%}{1000+600}=14.5%$$

3B) $${SE}_{A}=\sqrt{\frac{\hat{p}\cdot(1-\hat{p})}{1000}}$$ $${SE}_{B}=\sqrt{\frac{\hat{p}\cdot(1-\hat{p})}{600}}$$ Thus, SE of the difference between the sample percents is approximately $$SE=\sqrt{({SE}_{A}^2+{SE}_{B}^2)}=1.818241%$$ R code:

p = 0.145; n1 = 1000; n2 = 600
se.a = sqrt(p * (1 - p) / n1)
se.b = sqrt(p * (1 - p) / n2)
se = sqrt(se.a^2 + se.b^2); se
[1] 0.01818241

3C) The observed difference is 4%, so $$z=\frac{0.04-0}{SE}$$ Two-tailed $z$ test and the P-value is 2.781197% which is less than 5%, thus we reject $H_0$. R code:

z = (0.04 - 0) / se
(1 - pnorm(z)) * 2
[1] 0.02781197

PROBLEM 4

Last year, there were 30,000 students at a university; their GPA had a mean of 2.9 and an SD of 0.6. This year, in a simple random sample of 100 students taken from this university, the GPAs have a mean of 2.95 and an SD of 0.55. Has the mean GPA at the university gone up since last year, or is this just chance variation? Pick the correct calculation of the test statistic. one-sample $z = (2.95 - 2.9)/0.06 = 0.833$; P large; conclude chance variation one-sample $z = (2.95 - 2.9)/0.055 = 0.909$; P large; conclude chance variation two-sample $z = (0.05 - 0)/\sqrt{0.055^2 + 0.0035^2} = 0.907$; P large; conclude chance variation

Solution

Firstly, the population is the students at the university of THIS YEAR. $$H_0: \mu=2.9$$ $$H_A: \mu > 2.9$$ The third choice must be wrong since the number of last year\rq s students was not a sample.Thus, this is one-sample $z$ test. $$n=100, \sigma=0.55$$ $$\Rightarrow SE=\frac{\sigma}{\sqrt{n}}=0.055, z=\frac{2.95-0}{SE}=0.909$$ R code:

n = 100; sigma = 0.55
se = sigma / sqrt(n)
z = (2.95 - 2.9) /se; z
[1] 0.9090909

加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: Section 3 One-sample and two-sample tests的更多相关文章

  1. 加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: Section 5 Window to a Wider World

    Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...

  2. 加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: Section 4 Dependent Samples

    Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...

  3. 加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: Section 2 Testing Statistical Hypotheses

    Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...

  4. 加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: Section 1 Estimating unknown parameters

    Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...

  5. 加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: FINAL

    Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...

  6. 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Final

    Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...

  7. 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 5 The accuracy of simple random samples

    Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...

  8. 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 4 The Central Limit Theorem

    Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...

  9. 加州大学伯克利分校Stat2.2x Probability 概率初步学习笔记: Section 3 The law of averages, and expected values

    Stat2.2x Probability(概率)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授. PDF笔记下载(Acad ...

随机推荐

  1. 读书摘要,一种新的黑客文化:programming is forgetting

    http://opentranscripts.org/transcript/programming-forgetting-new-hacker-ethic/ 这篇文章非常有意思,作者是一个计算机教师, ...

  2. 如何在前台脚本通过json传递数据到后台(使用微软自带的ajax)

    首先,我们要在前台引入json的脚本,以便于把js对象序列化 <script type="text/javascript" src="/js/jquery.json ...

  3. 奇怪的Js时间计算方法,跨多个月后出现1天的误差

    在项目中要求用计算两个时间相差的天数,通俗的说就是两个时间 相减, 我的方法 先把两个时间转成相应的毫秒,相减后,再除以(1000 * 60 * 60 * 24) 就可以得到对应天数,但天数会比实际少 ...

  4. 使用markdown编辑evernote(印象笔记)的常用方法汇总

    原文发表在我的博客主页,转载请注明出处 前言 正所谓工欲善其事,必先利其器,本文将要介绍的evernote和markdown都是程序员必备的工具 虽然国内现在有了很多evernote的替代品,做的比较 ...

  5. [BZOJ2654]tree(二分+MST)

    题目:http://www.lydsy.com:808/JudgeOnline/problem.php?id=2654 分析:此题很奇葩,我们可以给所有白边加上一个权值mid,那么在求得的MST中白边 ...

  6. Addressing Complex and Subjective Product-Related Queries with Customer Reviews-www2016-20160505

    1.Information publication:www2016 author:Julian McAuley 2.What 学习商品评论中的信息,对商品的提问,自动给出回答:按照相关程度排序 3.D ...

  7. spring mvc处理静态资源

    servlet的url映射定义为'/'表示映射全部路径 struts的过滤器是*.action,在spring mvc中设置成*.action或者*.do......也是可以的,但是spring mv ...

  8. 【Python】[函数] 调用与定义

    1.数据类型转换 int(),float(),str(),bool('1')2.定义函数使用 def关键字,依次写出 函数名.括号.括号中的参数.冒号,然后在缩进体中写函数内容 例子 求绝对值的函数 ...

  9. 检查URL地址脚本

    方法一: [root@Centos-6 script]# vi check_url_01.sh #!/bin/sh #this script is created by nulige #check u ...

  10. Ceph: validate that the RBD cache is active

    Ceph: validate that the RBD cache is active Quick and simple test to validate if the RBD cache is en ...