Question: (1) Given $N$ IID zero-meaned 3-D (x, y, z) points on a plane, find the equation for the plane. The plane must pass through (0,0,0). (2) Solve problem (1), but now assume every point has some small IID Gaussian error.
Using ordinary least squares, I know that centering $x,y,z$ means that $$ \sum_{i}^N x_i = \sum_{i}^N y_i = \sum_{i}^N z_i = 0 $$ The plane is of the form $z = \hat{\beta}_1x + \hat{\beta}_2y + \hat{\beta}_0$ (here, I am assuming $z$ is the response variable, and $x$ and $y$ are the regressors).
Since $x$ and $y$ are centered, this means $$ \hat{\beta}_0 = \bar{z} $$ Since $z$ is centered, we have $$ \hat{\beta}_0 = 0 \\ \therefore \ \ \text{the plane is guaranteed to pass through the origin} $$
Why would the problem additionally specify that the plane must pass through the origin? Centering $x,y,z$ seems to make the plane pass through the origin by definition. Am I missing something?
For part (2), it's not clear to me how perturbing each sample by a small gaussian error that is IID affects the problem, other than that in the first problem, the least squares estimators are unbiased because there's no error in the points, but bias is possibly introduced when perturbing each sample. Does perturbing each sample make OLS more susceptible to overfitting?