

InterviewSolution
Saved Bookmarks
1. |
Express the matrix `A=[{:(2,3),(-1,4):}]` as the sum of a symmetric matrix and a skew-symmetric matrix. |
Answer» `A=[{:(2,1),(1,4):}]+[{:(0,2),(-2,0):}]` | |