Topic 2: Simple Linear Regression Flashcards
In SLR model, if xbar = 0 then what does beta^_0=?
beta^0 = ybar
Rearrange a SLR model to equal beta^_0
beta^_0 = ybar - beta_1*xbar
Write the residual for observation i, u^_i, in terms of y_i’s
u^_i = y_i - y^_i
What is the residual for observation i, u^_i equal to in terms of a SLR model?
u^_i = y_i - beta^_0 + beta^_1*x_i
How to derive beta_1 from sums?
[the sum of (x_i - xbar)(y_i - ybar)] / [the sum of (x_i - xbar)^2] which is the sample covariance between x and y, divided by the sample variation.
How would you find the coefficients of a model if given a table of the data?
find ybar and xbar, then use the formula for beta_1 (sample cov/sample var), then put these three into a formula to get beta_0
What is the formula for fitted values, Y^_i , of observation i in terms of a SLR model?
(y^_i) = (beta^_0) + (beta^_1)*(x_i)
What is the sum of squared residuals, SSR?
the sum of (u^_i^2) or the sum of (y_i - y^_i)^2
What is a simple regression model used for?
Used to study the relationship between two variables as a tool for empirical analysis.
Names for y variable in regressions?
dependent, explained, response, predicted, regressand
Names for x variable in regressions?
independent, explanatory, control, predictor, regressor
Describe the linear relationship in a simple regression model.
If the u term is held fixed at zero, x will have a linear affect on y, such that for every increase of a unit in x, there is a beta_1 change in y.
Besides E(u)=0, how can you assure a ceteris paribus relationship in your SLR model?
The zero conditional mean assumption of E(u|x) = 0
What is the conditional expectation function for the population regression function?
E(y|x) = (beta_0) + (beta_1)x, when the zero conditional mean assumption holds
What is the minimizing function for the derivation of the OLS estimators in SLR?
the sum of [(y_i) - (beta_0) - (beta_1)*(x_i)]^2. This is the ordinary least squares we are trying to minimize (the coefficients)