InterviewSolution
Saved Bookmarks
| 1. |
Write relations in tabular form and determine their type for R={(x,y):x "divides" y} on A ={1,2,3,4,5,6} |
|
Answer» SOLUTION :R`={(1,1),(1,2),(1,3),(1,4),(1,5),(1,6),(2,2),(2,4),(2,6),(3,3),(3,6),(4,4),(5,5),(6,6)}` R is REFLEXIVE TRANSITIVE but not SYMMETRIC. |
|