Simple regression: not including the intercept term

  • Thread starter Thread starter 939
  • Start date Start date
  • Tags Tags
    Regression Term
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
939
Messages
110
Reaction score
2

Homework Statement



The simple regression model is y = α + βx + u, where u is the error term. If you don't include α, when is β unbiased?

Homework Equations


y = α + βx + u

The Attempt at a Solution



Not including α doesn't affect whether β is unbiased because α is a constant.
 
  • Like
Likes   Reactions: Ray Vickson
Physics news on Phys.org
If the true model is ##y = \beta x + \epsilon##, you get an unbiased estimate of ##\beta## by using the least-squares method on the model ##\hat{y} = a + b x##---including the intercept! The point is that ##a, b## are both unbiased for the true model ##y = \alpha+\beta x + \epsilon##, and this is true even if it happens that ##\alpha = 0##. Therefore, my guess would be that the estimated obtained from the no-intercept fit ##\hat{y} = bx## would be biased. After all, the two estimates of ##\beta## would be given by different formulas in the ##(x_i, y_i)## data points, and one of the formulas gives an unbiased result.
 
  • Like
Likes   Reactions: 939
If [itex]\alpha \ne 0[/itex] but you fit the "no intercept" model then the estimate of the slope will be biased. To see this begin with
[tex] E(b) = E[\left( X'X \right)^{-1}X' y] = E[\left( X'X \right)^{-1}X' \left(\alpha + X \beta + \epsilon \right)][/tex]

and work through the right side. You'll be able to see the only two conditions where the estimate of the slope won't be biased. Essentially - it's biased because you're fitting an incorrect model: fitting no intercept when one exists.

Regression without the intercept is rarely a good idea, for this reason AND for the fact that it means the traditional [itex]R^2[/itex] statistic is rendered useless (there are other issues as well).
 
  • Like
Likes   Reactions: 939