

InterviewSolution
Saved Bookmarks
1. |
`A , B`are two matrices suchthat `A B`and `A+B`are both defined; showthat `A , B`are square matrices ofthe same order. |
Answer» Since `(A+B)` is defined, it follows that both A and B are of the same order, say `(mxxn)`. Thus, order of A is `mxxn`. But, AB is defined. So, number of columns in A=number of rows in B. Consequently, n=m. `:.` A and B are square matrices of the same order. |
|