find the values for x, y, and z such the matrix below is skew symmetric.
0 x 3
2 y -1
z 1 0
Given matrix is skew symmetric matrix:
"\\begin{pmatrix}\n 0 & 2 & z\\\\\n x & y & 1 \\\\\n 3 & -1 & 0 \\\\\n\\end{pmatrix}=\\begin{pmatrix}\n 0 & -x & -3\\\\\n -2 & -y & 1 \\\\\n -z & -1 & 0 \\\\\n\\end{pmatrix}"
On comparing we get:
Comments
Leave a comment