15
lecture 8 1 Hypothesis tests Hypothesis H 0 : Null-hypothesis is an conjecture which we assume is true until we have too much evidence against it. H 1 : The alternative hypothesis covers the alternative to H 0 Notice: We either reject or cannot reject the null- hypothesis – we never accept (or prove) the null- hypothesis. Legal analogy: H 0 : Innocent vs H 1 : Guilty Procedure: Defendant is assumed innocent (H 0 ) until enough evidence suggest he is guilty..

Hypothesis tests Hypothesis

Embed Size (px)

DESCRIPTION

Hypothesis tests Hypothesis. H 0 : Null-hypothesis is an conjecture which we assume is true until we have too much evidence against it. H 1 : The alternative hypothesis covers the alternative to H 0 - PowerPoint PPT Presentation

Citation preview

Page 1: Hypothesis tests  Hypothesis

lecture 81

Hypothesis tests Hypothesis

H0: Null-hypothesis is an conjecture which we assume is true until we have too much evidence against it.

H1: The alternative hypothesis covers the alternative to H0

Notice: We either reject or cannot reject the null-hypothesis – we never accept (or prove) the null-hypothesis.

Legal analogy:

H0: Innocent vs H1: Guilty

Procedure: Defendant is assumed innocent (H0) until enough evidence suggest he is guilty..

Page 2: Hypothesis tests  Hypothesis

lecture 82

Hypothesis testsExamples of hypotheses

The mean height of men is 1.80 cm:

The mean age of when people leave home is higher than 18 years:

The average price of milk in 7-11 is 2 kr higher than in Brugsen:

180:

180:

1

0

H

H

18:

18:

1

0

H

H

2:

2:

1171

1170

b

b

H

H

Notice: H0 always involves equality (≤,≥, or =)

Page 3: Hypothesis tests  Hypothesis

lecture 83

Hypothesis testsOne-sided and two-sided tests

One-sided test:

Two-sided test:

01

00

:

:

H

H

01

00

:

:

H

H

01

00

:

:

H

H

Page 4: Hypothesis tests  Hypothesis

lecture 84

Hypothesis testsTest statistics

Recall: A sample function is a function of data

Test statistic: a sample function , which indicates if the null hypothesis should be rejected or not.

Critical area: if lies in the critical area then the null-hypothesis is rejected.

Critical values: boundary points for the critical area.

Page 5: Hypothesis tests  Hypothesis

lecture 85

Hypothesis tests Type I and type II errors

Type I error: H0 rejected, when H0 is true.

Type II error: H0 not rejected, when H0 is false.

Significance level: is the probability of committing a Type I error.

One-sided test Two-sided test

2/

Page 6: Hypothesis tests  Hypothesis

lecture 86

Test of meanVariance known (two-sided)

01

00

:

:

H

H

n

xz

/0

1

/2/

02/ z

n

XzP

2/2/ , zz

Hypothesis:

Critical values:Test statistics:

Significance level:

Decision: reject H0 if z does not lie between the critical values, otherwise we cannot reject H0.

Page 7: Hypothesis tests  Hypothesis

lecture 87

Test of meanVariance known

Problem: Anders claims that a flight to Paris on average costs 5000 kr. For a sample fo ten flights to Paris he finds a sample average of 4850kr.

1. Rephrase Anders’ claim as a statistical hypothesis.

2. Assume that the standard deviation of prices of flights to Paris is 100 kr. Is Anders’ hypothesis reasonable at the 5% significance level?

Page 8: Hypothesis tests  Hypothesis

lecture 88

Hypothesis testsp-value

Assuming that H0 is true, the p-value is the probability of observing a more extreme test statistics than the one just observed.

The null-hypothesis if rejected if p-value <

p

One-sided test Two-sided test

p

Page 9: Hypothesis tests  Hypothesis

lecture 89

Test of meanVariance known

Problem (cont.): Anders claims that a flight to Paris on average costs 5000 kr. For a sample fo ten flights to Paris he finds a sample average of 4850kr.

3. Calculate the p-value and compare it to the significance level (we still assume the standard deviation to be 100kr).

Page 10: Hypothesis tests  Hypothesis

lecture 810

Hypothesis test and confidence intervals

The connection with confidence intervals:

nzx

nzx

zn

xz

2/02/

2/0

2//

That is, the null-hypothesis, , is rejected if and only if lies outside the confidence interval.

Page 11: Hypothesis tests  Hypothesis

lecture 811

Test of meanVariance known (one-sided)

01

00

:

:

H

H

n

xz

/0

1

/0

n

XzP

z

Hypotheses:

Critical value:Test statistic:

Significance level:

Decision: Reject H0 if z lies below the critical value.

Page 12: Hypothesis tests  Hypothesis

lecture 812

Test of meanVariance unknown (two-sided)

01

00

:

:

H

H

ns

xt

/0

1

/1,2/

01,2/ nn t

ns

XtP

1,2/1,2/ , nn tt

Hypotheses:

Critical values:Test statistic:

Significance level:

Decision: Reject H0 if z does not lie between the critical values.

Page 13: Hypothesis tests  Hypothesis

lecture 813

Test of mean the MATLAB wayVariance unknown (two-sided)

>> [h,p,ci,stats]=ttest(x,5000,0.01)

h = 1p = 0.0013ci = 1.0e+003 * 4.7436 4.9564stats = tstat: -4.5804 df: 9 sd: 103.5584

Data

Significance level h = 0 : H0 not rejectedh = 1 : H0 rejected

p-value

(1-)100% confidence interval

tstat = ns

x 0

df = degrees of freedom

sd = sample standard deviation

Default: H0:

Page 14: Hypothesis tests  Hypothesis

lecture 814

Test of mean the R wayVariance unknown (two-sided)

> t.test(x=x,mu=5000,conf.level=0.99)

One Sample t-test

data: x t = -4.5804, df = 9, p-value = 0.001327alternative hypothesis: true mean is not equal to 5000 99 percent confidence interval: 4743.574 4956.426 sample estimates:mean of x 4850

Data

Confidence level: 1-

Page 15: Hypothesis tests  Hypothesis

lecture 815

Hypothesis testsA couple of remarks

Many tests exist in both a two-sided and a one-sided versions:

Null-hypotheses: ≤, =, or ≥ Critical values: one-sided use two-sided use

We can reject H0 in three equivalent way: The test statistic is in the critical area The p-value < Hypothesised value (e.g. ) is outside the

confidence intervals (only for two-sided tests)