Find orthogonal matrix missing values

992 Views Asked by At

I was solving this problem, where I need to find the value x, which is missed in the orthogonal matrix A.

$$ A = \begin{pmatrix} x&0.5&-0.5&-0.5\\ x&0.5&0.5&0.5\\ x&-0.5&-0.5&0.5\\ x&-0.5&0.5&-0.5\\ \end{pmatrix} $$

One of the properties of orthogonal matrix is that the dot product of orthogonal matrix and its transposed version is the identity matrix:

$$I=A.A^T$$

$$ A^T = \begin{pmatrix} x&x&x&x\\ 0.5&0.5&-0.5&-0.5\\ -0.5&0.5&-0.5&0.5\\ -0.5&0.5&0.5&-0.5\\ \end{pmatrix} $$

So I figured that $$x=0.5$$

That would result in identity matrix I:

$$ I = \begin{pmatrix} 1&0&0&0\\ 0&1&0&0\\ 0&0&1&0\\ 0&0&0&1\\ \end{pmatrix} $$

As the result I had to provide the sum of missing values, which $0.5\times4 = 2$. The grader (program) returned the error. Is there something I am missing (there most likely is, I guess)?

Thank you in advance!

5

There are 5 best solutions below

2
On

$A$ is orthogonal $ \iff x= \pm \frac{1}{2}.$

0
On

There are two solutions: $\frac12$ and $-\frac12$.

0
On

You don't say how you found $x$. If you actually compute $A^TA$ and compare with $I$, you get that $|x|=1/2$, so $x$ is either $1/2$ or $-1/2$.

0
On

A short test is that $\pm 1=\det(A)=-2x$. This leaves both possibilities, namely $+1$ and $-1$ for the determinant, so $x=1/2$ and $x=-1/2$. Indeed, one checks that both cases yield an orthogonal matrix.

2
On

Thank you everyone, indeed there are two possible answers $$x = 1/2$$ $$x = -1/2$$, therefore there can't be a definitive answer.