From my question on CV, I need to find a way to make my two vectors orthogonal. They are:
$${\bf{v}} = \pmatrix{1 \\ 1 \\ 1 \\ 1 \\ 1 } \hspace{1.5cm} {\bf{w}} = \pmatrix{0.25 \\ 0.0625 \\ 0 \\ 0.0625 \\ 0.25}$$
What I (think) I need is the step that makes these two vectors orthogonal and I think that will give me my orthogonal regression model.
But how do I do this? It's not Gram-Schmidt is it?
EDIT:
1) Fixed spelling of Gram-Schmidt thanks to the comment.
2) Basically, for my regression model to be orthogonal, I need all the sum of all the linear terms to be 0 and the sum of all the quadratic terms to be 0. The vector ${\bf{w}}$ is all the $x_i^2$ terms in matrix form. What I need is effectively the dot product of ${\bf{v \cdot w' }} = 0$, where ${\bf{w'}}$ is basically ${\bf{w}}$ transformed in some way such that the sum of all these new terms equal $0$. Does that make sense?