Study Notes

Econometrics: Models, Correlation, and Simple Regression

hamza bamoussa
0 imports

Free ยท 2 imports included

Study Notes Preview

11 sections locked
Section 1

Econometrics: Models, Correlation, and Simple Regression

STUDY GUIDE

๐ŸŽ“ Econometrics Final Exam - Study Guide

๐Ÿ“– Chapter 1: What is Econometrics?

๐Ÿ”‘ Essential Concepts & Formulas

Concept/FormulaDefinition/EquationWhen to Use
Econometric ModelFormalized representation of economic phenomena using equations.To understand and explain economic phenomena.
CorrelationMeasure of the relationship between two or more phenomena.To identify relationships between economic variables.
Linear CorrelationRelationship where the change in one variable is proportional to the change in another.When the relationship between variables is constant.

๐Ÿ› ๏ธ Problem Types

Type A: Defining an Econometric Model

Setup: "When asked to define an econometric model."

Method: "Describe it as a formalized representation of economic phenomena using equations with economic variables."

Example: "An econometric model for consumption might relate disposable income to consumer spending."

Type B: Explaining the Role of Econometrics

Setup: "When asked about the role of econometrics in economic theory."

Method: "Explain that it serves as a tool to validate or refute economic theories by estimating coefficients and assessing their precision."

Example: "Econometrics can test if the quantity theory of money holds true in a specific country."

๐Ÿงฎ Solved Example

Problem: Define an econometric model for the relationship between unemployment and inflation. Steps:

  1. Formulate the model: Inflation=ฮฒ0+ฮฒ1Unemployment+ฯต\text{Inflation} = \beta_0 + \beta_1 \text{Unemployment} + \epsilon
  2. Explain the variables: Inflation and Unemployment are the economic variables, ฮฒ0\beta_0 and ฮฒ1\beta_1 are coefficients, and ฯต\epsilon is the error term.
"
โœ…
Answer: The model represents how inflation changes in response to changes in unemployment.
Section 2

๐Ÿ“– Chapter 2: The Simple Regression Model

๐Ÿ”‘ Essential Concepts & Formulas

Concept/FormulaDefinition/EquationWhen to Use
Simple Regression Modely=ฮฒ0+ฮฒ1x+ฯตy = \beta_0 + \beta_1 x + \epsilonTo explain a single endogenous variable using a single exogenous variable.
OLS Estimatorsฮฒ^1=โˆ‘(xiโˆ’xห‰)(yiโˆ’yห‰)โˆ‘(xiโˆ’xห‰)2\hat{\beta}_1 = \frac{\sum (x_i - \bar{x})(y_i - \bar{y})}{\sum (x_i - \bar{x})^2}, ฮฒ^0=yห‰โˆ’ฮฒ^1xห‰\hat{\beta}_0 = \bar{y} - \hat{\beta}_1 \bar{x}To estimate the parameters of the simple regression model.
ANOVASST = SSR + SSETo decompose the total variance into explained and unexplained components.

๐Ÿ› ๏ธ Problem Types

Type A: Estimating Parameters using OLS

Setup: "Given a dataset of paired observations (x, y)."

Method: "Calculate the sample means xห‰\bar{x} and yห‰\bar{y}, then apply the OLS formulas for ฮฒ^1\hat{\beta}_1 and ฮฒ^0\hat{\beta}_0."

Example: "Estimate the relationship between income and consumption using OLS."

Type B: Constructing a Hypothesis Test

Setup: "Given a hypothesized value for a coefficient and its standard error."

Method: "Calculate the t-statistic: t=ฮฒ^โˆ’ฮฒ0SE(ฮฒ^)t = \frac{\hat{\beta} - \beta_0}{SE(\hat{\beta})}, and compare it to the critical value from the t-distribution."

Example: "Test the hypothesis that the slope coefficient is equal to zero."

๐Ÿงฎ Solved Example

Problem: Estimate the simple regression model y=ฮฒ0+ฮฒ1x+ฯตy = \beta_0 + \beta_1 x + \epsilon with the following data: โˆ‘xiyi=50\sum x_i y_i = 50, โˆ‘xi=10\sum x_i = 10, โˆ‘yi=20\sum y_i = 20, โˆ‘xi2=30\sum x_i^2 = 30, n=5n = 5. Steps:

  1. Calculate xห‰=105=2\bar{x} = \frac{10}{5} = 2 and yห‰=205=4\bar{y} = \frac{20}{5} = 4.
  2. Calculate ฮฒ^1=50โˆ’5(2)(4)30โˆ’5(2)2=โˆ’1010=โˆ’1\hat{\beta}_1 = \frac{50 - 5(2)(4)}{30 - 5(2)^2} = \frac{-10}{10} = -1.
  3. Calculate ฮฒ^0=4โˆ’(โˆ’1)(2)=6\hat{\beta}_0 = 4 - (-1)(2) = 6.
"
โœ…
Answer: ฮฒ^0=6\hat{\beta}_0 = 6, ฮฒ^1=โˆ’1\hat{\beta}_1 = -1.

๐Ÿ“– Chapter 3: The Multiple Regression Model

๐Ÿ”‘ Essential Concepts & Formulas

Concept/FormulaDefinition/EquationWhen to Use
Multiple Linear Regression Modely=ฮฒ0+ฮฒ1x1+ฮฒ2x2+...+ฮฒkxk+ฯตy = \beta_0 + \beta_1 x_1 + \beta_2 x_2 + ... + \beta_k x_k + \epsilonTo explain a single endogenous variable using multiple exogenous variables.
OLS Estimators (Matrix Form)ฮฒ^=(Xโ€ฒX)โˆ’1Xโ€ฒy\hat{\beta} = (X'X)^{-1}X'yTo estimate the parameters of the multiple regression model in matrix form.
F-testF=(SSRRโˆ’SSRUR)/qSSEUR/(nโˆ’kโˆ’1)F = \frac{(SSR_R - SSR_{UR})/q}{SSE_{UR}/(n-k-1)}To test the joint significance of a set of coefficients.

๐Ÿ› ๏ธ Problem Types

Type A: Estimating Coefficients using OLS

Setup: "Given a dataset and a specified multiple regression model."

Method: "Use statistical software to estimate the coefficients using OLS."

Example: "Estimate the effect of education and experience on wages."

Type B: Conducting a t-test

Setup: "Given a coefficient estimate, its standard error, and a null hypothesis."

Method: "Calculate the t-statistic and compare it to the critical value."

Example: "Test whether the coefficient on education is significantly different from zero."

๐Ÿงฎ Solved Example

Problem: Estimate the multiple regression model y=ฮฒ0+ฮฒ1x1+ฮฒ2x2+ฯตy = \beta_0 + \beta_1 x_1 + \beta_2 x_2 + \epsilon with the following data (simplified): ฮฒ^1=0.5\hat{\beta}_1 = 0.5, SE(ฮฒ^1)=0.1SE(\hat{\beta}_1) = 0.1. Test H0:ฮฒ1=0H_0: \beta_1 = 0. Steps:

  1. Calculate the t-statistic: t=0.5โˆ’00.1=5t = \frac{0.5 - 0}{0.1} = 5.
  2. Compare the t-statistic to the critical value from the t-distribution.
"
โœ…
Answer: If the critical value is less than 5, reject the null hypothesis.

๐Ÿ“– Chapter 4: Multicollinearity and Selection of the Optimal Model

๐Ÿ”‘ Essential Concepts & Formulas

Concept/FormulaDefinition/EquationWhen to Use
Partial CorrelationMeasures the correlation between two variables after controlling for the effects of other variables.To assess the unique relationship between two variables.
Variance Inflation Factor (VIF)VIFi=11โˆ’Ri2VIF_i = \frac{1}{1 - R_i^2}To detect multicollinearity.
AICAIC=โˆ’2Ln+2knAIC = -2 \frac{L}{n} + \frac{2k}{n}To select the optimal model based on information criteria.

๐Ÿ› ๏ธ Problem Types

Type A: Detecting Multicollinearity

Setup: "Given a correlation matrix of explanatory variables."

Method: "Examine the correlation coefficients. High correlation (e.g., > 0.8) suggests multicollinearity. Calculate VIFs; VIF > 10 is a common threshold."

Example: "Check for multicollinearity between education and income in a wage regression."

Type B: Model Selection using AIC

Setup: "Given several candidate models with different numbers of parameters."

Method: "Calculate the AIC for each model and choose the model with the lowest AIC value."

Example: "Select the best model for predicting housing prices based on AIC."

๐Ÿงฎ Solved Example

Problem: Calculate the VIF for a variable xix_i where Ri2=0.9R_i^2 = 0.9. Steps:

  1. Apply the VIF formula: VIFi=11โˆ’0.9=10.1=10VIF_i = \frac{1}{1 - 0.9} = \frac{1}{0.1} = 10.
"
โœ…
Answer: VIFi=10VIF_i = 10. This suggests multicollinearity.

11 more sections

Create a free account to import and read the full study notes โ€” all 13 sections.

No credit card ยท 2 free imports included

    Econometrics: Models, Correlation, and Simple Regression โ€” Cheatsheet | Evrika | Evrika Study