InterviewSolution
Saved Bookmarks
| 1. |
Let ** be a binary operation on the set Q of rational numbers as followsa**b=a^2+b^2. Is the binary operation commutative and associative ? |
|
Answer» SOLUTION :`a**B=a^2+b^2` `=b^2+a^2=b**a` `a,b in Q` `THEREFORE **` is COMMUTATIVE |
|