InterviewSolution
Saved Bookmarks
| 1. |
Consider the determinant Delta=|[0,2,6],[1,5,0],[3,7,1]|Write the minors of the element in the first column ? |
|
Answer» SOLUTION :The MINORS are GIVEN below: `M_11=|[5,0],[7,1]|=5-0=5,` `M_21=|[2,6],[7,1]|=2-42=-40` `M_31=|[2,6],[5,0]|=0-30=-30` |
|