

InterviewSolution
Saved Bookmarks
1. |
If `A=[{:(2,3,-1),(1,4,2):}]` and `B=[{:(2,3),(4,5),(2,1):}]` then AB and BA are defined and equal. |
Answer» False, Since AB is defined `therefore AB=[{:(2,3,-1),(1,4,2):}][{:(2,3),(4,5),(2,1):}]=[{:(14,20),(22,25):}]` Also, BA is defined `therefore BA=[{:(2,3),(4,5),(2,1):}][{:(2,3,-1),(1,4,2):}]` `=[{:(7,18,4),(13,32, 6),(5,10,0):}]` `ABneBA` |
|