Find all possible values of $p$, $q$ and $r$ such that the following matrix is orthogonal.
$$B= \begin{pmatrix} \frac1{3}&\frac2{3}&\frac2{3} \\ \frac2{3}&\frac1{3}&-\frac2{3} \\ p&q&r \end{pmatrix}$$
2026-03-25 16:08:30.1774454910
On
Find all possible values of $p$, $q$ and $r$ such that this matrix is orthogonal
566 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
4
There are 4 best solutions below
1
On
If $B$ is your matrix, then$$B^T.B=\begin{pmatrix}p^2+\frac{5}{9} & p q+\frac{4}{9} & p r-\frac{2}{9} \\ p q+\frac{4}{9} & q^2+\frac{5}{9} & q r+\frac{2}{9} \\ p r-\frac{2}{9} & q r+\frac{2}{9} & r^2+\frac{8}{9}\end{pmatrix}$$and you want this to be the identity matrix. So, since you only want to have $1$'s in the main diagonal, $p=q=\pm\frac23$ and $r=\pm\frac13$. Can you take it from here?
Hint: Compute $BB^T-I_3$. This must be zero; this way you obtain the equations
$$\begin{array}{rl}p+2q+2r &= 0\\ 2p+q-2r &= 0\\ p^2+q^2+r^2 &= 1\end{array}$$
This is easy to solve.