InterviewSolution
Saved Bookmarks
| 1. |
show that the matrix A=[[0,1,-1],[-1,0,1],[1,-1,0]] is a skew symmetric matrix |
| Answer» SOLUTION :`A^T = [(0,-1,1),(1,0,-1),(-1,1,0)] = -[(0,1,-1),(-1,0,1),(1,-1,0)] = -A therefore A` is skew symmetric | |