InterviewSolution
Saved Bookmarks
| 1. |
Determine whether a**b= axx b("mod" 5) "on" {0,1,2,3,4} operations as defined by * are binary operations on the sets specified in each case. Give reasons if it is not a binary operation. |
|
Answer» Solution :for all `a, B in {0,1,2,3,4}` ` a**b =axxb ("mod"5) in {0,1,2,3,4}` `:. **` is a BINARY operation on the given SET |
|