Topic 4
A matrix is called symmetric if its transpose is exactly equal to the original matrix. This means elements are mirrored across the main diagonal.
Condition: Aᵀ = A
2×2 Example:
Since A = Aᵀ, it is symmetric.
3×3 Example:
Check symmetry:
a₁₂ = a₂₁ (2 = 2)
a₁₃ = a₃₁ (3 = 3)
a₂₃ = a₃₂ (5 = 5)
So matrix is symmetric.
A matrix is called skew-symmetric if its transpose is equal to the negative of the matrix. This means elements across diagonal are negatives of each other.
Condition: Aᵀ = −A
2×2 Example:
Transpose gives negative of original matrix.
3×3 Example:
Check condition:
a₁₂ = -a₂₁ (2 = -(-2))
a₁₃ = -a₃₁ (-1 = -1)
a₂₃ = -a₃₂ (4 = -(-4))
So matrix is skew-symmetric.