

InterviewSolution
Saved Bookmarks
1. |
`A={:[(-5,-3,4),(3,2,-4)]:}andB={:[(-4,5,-2),(3,1,5)]:}`, then find X such that 3A-2B+X=0.A. `{:[(7,19,16),(3,4,22)]:}`B. `{:[(-7,-19,16),(3,4,22)]:}`C. `{:[(7,19,-16),(-3,-4,22)]:}`D. `{:[(7,19,16),(-3,-4,22)]:}` |
Answer» Correct Answer - C (i) X=2B-3A (ii) `3A-2B+X=0rArrX=2B-3A`. (iii) Multiply each element of B with 2 to get 2B. (iv) Multiply each element of A with 3 to get 3B. |
|