Saved Bookmarks
| 1. |
Consider the binary operation ** on the set A= {1,2,3,4,5} given by the following multiplication table Compute (2**3)**4 and 2**(3**4) |
|
Answer» SOLUTION :`(2**3)**4=1**4=1` `2**(3**4)=2**1-1` |
|