Dot product for orthonormal basis

102 Views Asked by At

I want ask which must be the dot product for vectors (1,1,0), (1,0,1), (0,1,1), so they can form a orthonormalbasis.

1

There are 1 best solutions below

3
On BEST ANSWER

Call the $i$th such vector $v_i$. Let $V$ denote the matrix satisfying $V_{ik}=(v_i)_k$. We seek an inner product $a,\,b\mapsto a_kM_{kl}b_l$, with implicit summation over repeated indices, so that $\delta_{ij}=V_{ik}M_{kl}V_{jl}$ i.e. $VMV^T=I$. So take $M=V^{-1}(V^T)^{-1}=(V^TV)^{-1}$. In this case $$V=\left(\begin{array}{ccc} 1 & 1 & 0\\ 1 & 0 & 1\\ 0 & 1 & 1 \end{array}\right),\,V^{T}V=\left(\begin{array}{ccc} 2 & 1 & 1\\ 1 & 2 & 1\\ 1 & 1 & 2 \end{array}\right),\,M=\frac{1}{4}\left(\begin{array}{ccc} 3 & -1 & -1\\ -1 & 3 & -1\\ -1 & -1 & 3 \end{array}\right).$$