Simple Regression vs. Multiple Regression
Here's a clear and concise comparison between Simple Regression and Multiple Regression:
|
Basis of Comparison |
Simple Regression |
Multiple Regression |
|
Definition |
Examines the relationship between one independent variable and one
dependent variable. |
Examines the relationship between two or more independent variables
and one dependent variable. |
|
Number of Independent Variables |
One (X) |
Two or more (X₁, X₂, ..., Xn) |
|
Purpose |
To predict the value of the dependent variable based on a single
predictor. |
To predict the value of the dependent variable using multiple
predictors. |
|
Equation Format |
Y = a + bX + ε |
Y = a + b₁X₁ + b₂X₂ + ... + bnXn + ε |
|
Complexity |
Simple and easy to compute |
More complex, involves multicollinearity and interaction effects |
|
Graphical Representation |
Straight line (2D plot) |
Multidimensional plane (not easily visualized beyond 3 variables) |
|
Use Case |
When only one factor is considered to affect the outcome |
When multiple factors are believed to influence the outcome |
|
Example |
Predicting sales based on advertising expense |
Predicting sales based on advertising, price, and competitor actions |
Here are finance-related examples with solved numerical problems for both Simple Regression and Multiple Regression:
1. Simple Linear Regression Example (Finance):
Scenario:
A financial analyst wants to study the effect of advertising expenses on a company's sales revenue.
Data (5 months):
| Month | Advertising Expense (₹ '000) (X) | Sales Revenue (₹ '000) (Y) |
|---|---|---|
| 1 | 20 | 220 |
| 2 | 25 | 245 |
| 3 | 30 | 265 |
| 4 | 35 | 290 |
| 5 | 40 | 310 |
Goal: Estimate the linear regression line:
Step 1: Calculate necessary values
| X | Y | X² | XY |
|---|---|---|---|
| 20 | 220 | 400 | 4400 |
| 25 | 245 | 625 | 6125 |
| 30 | 265 | 900 | 7950 |
| 35 | 290 | 1225 | 10150 |
| 40 | 310 | 1600 | 12400 |
Step 2: Calculate slope (b) and intercept (a)
Final Regression Equation:
Interpretation:
For every ₹1,000 increase in advertising, sales increase by ₹4,500.
2. Multiple Linear Regression Example (Finance):
Scenario:
A researcher wants to estimate a firm's profitability (Net Profit ₹ '000) based on Revenue (₹ '000) and Operating Expenses (₹ '000).
Data (5 companies):
| Company | Revenue (X₁) | Operating Expense (X₂) | Net Profit (Y) |
|---|---|---|---|
| A | 500 | 300 | 200 |
| B | 600 | 350 | 250 |
| C | 550 | 325 | 225 |
| D | 650 | 400 | 240 |
| E | 700 | 450 | 250 |
Regression Equation Format:
We will compute the coefficients using the normal equations (or software like Excel/R/SPSS). For simplicity, assume the output from regression software gives:
Interpretation:
-
Intercept (a = 10): Base profit when both revenue and expenses are 0 (theoretical).
-
b₁ = 0.6: For every ₹1,000 increase in revenue, profit increases by ₹600.
-
b₂ = -0.4: For every ₹1,000 increase in operating expenses, profit decreases by ₹400.
Comments
Post a Comment