For the well known ordinary least squares there are the well known solution
$$\beta=(X'X)^{-1}X'Y$$
This can be expressed in "canonical form" using eigenvector decomposition.
$$[W,\Delta^2]=\operatorname{eig}(X'X)$$
Transforming:
$$Z=XW$$
$$\alpha=W'\beta$$
so
$$\alpha=(W'X'XW)Z'Y$$ $$=\Delta^{-2}Z'Y$$ $$=\Delta^{-2}W'X'Y$$
Similarly using SVD
$$[Q,\Delta,P']=\operatorname{SVD}(X)$$
where $P'=W$ from the eigenvector decomposition
and $\Delta$ is the square root of $\Delta^{2}$
$$X=Q\Delta P'$$
$$X'X=P\Delta Q'Q\Delta P'$$ $$=P\Delta^2P'$$
$$X'Y=P\Delta Q'Y$$
$$\beta=P\Delta^{-2}P'P\Delta Q'Y$$ $$\beta=P\Delta^{-1}Q'Y$$
pre-multiply by $P'$
$$\alpha=\Delta^{-1}Q'Y$$
so here $\alpha=P'\beta=W\alpha$ rather than $W' \alpha$ as above
Q1.) Are the derivations above correct?
To covert back in the first case simply multiply both sides by W
$$W W'\beta=W(W'X'XW)W'X'Y$$ $$\beta=(X'X)^{-1}X'Y$$
which is clearly the OLS expression.
for the second case multiply by $P$
$$P P' \beta=P\Delta^{-1}Q'Y$$ $$\beta=P\Delta^{-1}Q'Y$$
which is not the OLS expression but $P\Delta^{-1}Q'=X^{-1}$
Given that the each expression is based on the same original OLS expression and use related transformations I would expect that these expressions to be equivalent. However the expressions derived seem quite different?
Q2.) Are the SVD and Eigen based transformations equivalent?
Q3.) If so how can I transform between the two?
Hint : The eigenvalue decomposition of $X'X$ and the singular value decomposition of $X'X$ are the same.