Topic 5: Inference Flashcards

1
Q

What is the formula for a confidence interval using the standard normal approximation?

A

beta^j +/- (c * se[beta^j])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is c in the formula for the confidence interval?

A

It is the percentile from the t_(n-k-1) distribution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

For the null hypothesis betaj = aj what is the rejection rule at 5% significance?

A

Reject if aj is not in the 95% confidence interval.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the interpretation for a regression where removal of a variable leads to an increase in the coefficient on another variable, but the p value of that variable decreases to zero?

A

With a p value of 0, the coefficient of that variable is now statistically significant. This occurred because the two variables were correlated, so their effect was spread between the two variables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the null hypothesis for a joint significance test of variables in a model?

A

The null hypothesis is the desired variables all = 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the alternative hypothesis for a joint significance test of variables in a model?

A

The alternative hypothesis is any of the variables does not = 0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the formula for the F statistic for a joint test?

A

[(SSRr - SSRur)/q] / [SSRur/(n-k-1)]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you use the F statistic to run a joint hypothesis test?

A

Create your null and alternative hypotheses, run each regression for the restricted (fewer vars) and unrestricted model. Grab the SSR for each. The value q is the # of restrictions and (n-k-1) is the DOF for the unrestricted model.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can you hypothesis test a linear combination of two variables?

A

Create a new parameter that is the linear combination for which you need the standard error, solve it for one of the existing parameters and substitute it into the equation. Create a new variable that is the combination found from the rearranging. This will give us the coefficient and standard error for the desired new parameter, as well as a t-stat and p value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Multicollinearity causes OLS estimators to have what kind of standard errors?

A

Large.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the rejection rule for p-values?

A

Small p values reject the null hypothesis, large p values fail to reject.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How to use percentage versus percentage point?

A

When the units of the given variable are already in percent, the change is in percentage points. When the units are not already a percent, the change is in percent.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Is the p value the probability of the null hypothesis being true?

A

No, rather, how likely would it be to get a parameter like we did IF the parameter were really 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the formula for the t-stat?

A

(beta^j - betaj) / se(beta^j)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Stata: How do you generate a histogram of residuals of a regression?

A

Run the regression, predict newvar, resid, then histogram newvar, normal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Stata: how to check the correlation between variables?

A

cor xi x2 x3….etc

17
Q

Stata: How to find the f statistic for the overall significance of a regression in a screenshot of the stata results of a regression?

A

The f stat for the overall regression is found next to F( x, y) =

18
Q

What is MLR assumption 6, Normality?

A

The population error is independent of the explanatory variables and is normally distributed with zero mean,

19
Q

Under MLR assumptions 1-6, what can we say about the variance of OLS estimators?

A

They have the smallest variance among unbiased estimators.

20
Q

How do you find the max of a quadratic function?

A

the optimal value, x* = |(beta^1)/(2beta^2)|

21
Q

What does the sampling distribution of the OLS estimators rely on?

A

The underlying distribution of the errors.

22
Q

Normality vs homoskedasticity?

A

Normality is stronger than SLR5, because u is independent of x.

23
Q

Classical Linear Model assumption?

A

All MLR1-5 plus normality of the error term.

24
Q

CLM versus G-M assumptions?

A

Under the CLM assumptions OLS estimators have stronger efficiency than G-M assumptions and are the minimum variance unbiased estimators, but are no longer restricted to linear in the yi (BUE, not BLUE)

25
Q

What is a t statistic?

A

Used to test hypotheses of interest, based on a significance level and rejection rule.

26
Q

Do we use hypothesis testing on estimates?

A

No, we are testing population parameters (like if an unknown pop. parameter is 0)

27
Q

If our hypothesis is something other than 0, how do we form the t stat?

A

by using the formula: (beta^j - aj)/se(beta^j), where aj is the something other than 0 in the null hypothesis (Ho: betaj = aj)

28
Q

What is the p value?

A

It is the probability of observing a t stat as extreme or more than you actually observed.

29
Q

What does it mean to say something is statistically significant?

A

Rejecting the null hypothesis that a parameter is equal to zero against a specified alternative at a chosen significance level.

30
Q

What is economic significance?

A

the practical significance of an estimate, measured by sign and magnitude, as opposed to statistical significance.

31
Q

How to calculate q, the numerator degrees of freedom?

A

Variables for pooled/restricted model minus variables of both unrestricted models (less the dummy), that is q independent variables are dropped

32
Q

How to calculate dof?

A

the number of observations - number of estimated parameters

33
Q

What is the relationship between the f-stat and t stat?

A

the F stat is the t-stat squared

34
Q

What is the overall significance of the regression?

A

it is the f stat reported for a regression, and is a test of joint exclusion of all independent variables.

35
Q

Chow test vs f test?

A

The chow test is used when dummy variables are involved and the formulas are different. The SSRur for the f test is replaced with the SSR of both restricted models. The numerator dof is 1/k+1 in chow, and the denominator dof is 1/n-2(k+1)