A matrix is skew-symmetric if AT=−A
This means:
- All diagonal elements = 0
- Element at position (i,j) = -Element at position (j,i)
Given matrix: A=x+zx320x−y−340
The diagonal elements are: (x+z),0,0
For skew-symmetric property:
x+z=0
z=−x ... (Equation 1)
For element (1,2) and (2,1):
Element at (1,2) = 2
Element at (2,1) = x
2=−x
x=−2
For element (2,3) and (3,2):
Element at (2,3) = 4
Element at (3,2) = x−y
4=−(x−y)
4=−x+y
y=4+x ... (Equation 2)
From x=−2:
z=−x
z=−(−2)
z=2
y=4+x
y=4+(−2)
y=2
Final values: x=−2,y=2,z=2
(A) y>z>x → 2>2>−2 → FALSE (y is not greater than z)
(B) x>y → −2>2 → FALSE
(C) x+y+z>0 → −2+2+2=2>0 → TRUE
(D) z>x → 2>−2 → TRUE
Both statements (C) and (D) are true.