Linear Regression Flashcards

(33 cards)

1
Q

What does simple linear regression explain?

A

The variation in a dependent variable using the variation in a single independent variable.

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

What is the fitted simple linear regression equation?

A

Ŷi = b0 + b1Xi.

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

What is the population simple linear regression model?

A

Yi = b0 + b1Xi + εi.

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

What does the intercept term represent in simple linear regression?

A

The value of Y when X = 0.

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

What does the slope coefficient represent in simple linear regression?

A

The change in Y for a one-unit change in X.

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

What is the least squares criterion?

A

Choose the regression line that minimizes the sum of squared differences between actual and predicted Y values.

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

What is a residual in regression?

A

The difference between the actual value of Y and the predicted value of Y.

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

What are the main assumptions of simple linear regression?

A

Linear relationship between X and Y, constant variance of residuals, no correlation among residuals, and normally distributed residuals.

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

What is heteroskedasticity?

A

A violation of the assumption that the variance of residuals is constant.

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

What is autocorrelation?

A

A violation of the assumption that residuals are uncorrelated with one another.

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

How is the correlation coefficient defined?

A

rXY = Cov(X,Y) / (σX × σY).

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

What is the relationship among SST, SSR, and SSE?

A

SST = SSR + SSE.

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

What does SST measure?

A

Total Sum of Squares. The total variation in the dependent variable around its mean.

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

What does SSR measure?

A

Regression Sum of Squares. The variation in Y explained by the regression.

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

What does SSE measure?

A

Sum of Squared Errors. The unexplained variation in Y, or the sum of squared residuals.

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

What is MSE?

A

Mean Squared Error. MSE = SSE / (n - 2).

17
Q

What is SEE?

A

SEE = sqrt(MSE), the standard error of estimate.

18
Q

What does R² measure?

A

The percentage of total variation in the dependent variable explained by variation in the independent variable.

19
Q

In simple linear regression, how else can R² be calculated?

A

As r², the square of the correlation coefficient.

20
Q

What is the F-statistic in simple linear regression?

A

F = MSR / MSE, where for simple linear regression MSR = SSR.

21
Q

What is the null hypothesis for testing the significance of the slope coefficient?

22
Q

What are the degrees of freedom for the t-test on the slope coefficient?

23
Q

What does it mean if the slope coefficient is significantly different from zero?

A

The independent variable has explanatory power for the dependent variable.

24
Q

What is the form of a prediction interval for a forecast?

A

Ŷ ± tc × sf.

25
What is tc in a prediction interval?
The two-tailed critical t-value with n - 2 degrees of freedom.
26
What is sf in a prediction interval?
The standard error of the forecast.
27
What is the log-lin model?
ln(Yi) = b0 + b1Xi + εi.
28
What is the lin-log model?
Yi = b0 + b1ln(Xi) + εi.
29
What is the log-log model?
ln(Yi) = b0 + b1ln(Xi) + εi.
30
What is the null hypothesis for testing the intercept?
H0: b0 = 0
31
What are the degrees of freedom for a t-test of the intercept?
n - 2.
32
What is an indicator (dummy) variable?
A variable that takes the value 0 or 1 to represent a state.
33
In a regression with a dummy variable, what does the slope coefficient measure?
The sensitivity of Y to a change in state represented by the dummy variable.