Can one improve the R-square in a linear regression by linearly combining some of the independent variables?
My intuition is that the fit gets (weakly) worse because the result is a more constrained regression. Below is a specific example.
(1) Regress $y$ on $x_1$ and $x_2$
(2) Regress $y$ on $x$, where $x=x_1+x_2$
Can $R^2$ from the second regression be better than that from the first regression?
Thank you.