InterviewSolution
Saved Bookmarks
| 1. |
Write minors and co-factors of the elements of following determinants:|[a, c],[b,d]| |
|
Answer» SOLUTION :`|[a, C],[B,d]|` MINORS: `M_11=d, M_12=b`, `M_21=c` and `M_22=a` Co-factors: `A_11=d, A_12=-b, A_21=-c`, `A_22=a` |
|