InterviewSolution
Saved Bookmarks
| 1. |
For the matrixA=[[1,5],[6,7]], verify that A-A^T is a skew symmetric matrix |
|
Answer» SOLUTION :`A-A^T = [(0,-1),(1,0)] implies (A+A^T)^T = [(0,1),(-1,0)] = -(A-A^T)` `therefore `A-A^T` is SKEW SYMMETRIC |
|