

InterviewSolution
Saved Bookmarks
1. |
The Cartesian product `A xxA ` has 9 elements among which are found `(-1, 0) " and " (0, 1)`. Find the set `A` and the remaining elements of `A xxA`. |
Answer» `(-1,0) & (0,1) in A*A` `(-1,0) in A` `(0,1) in A` so, `(-1,0,1) in A` `A*A = {-1,0,1}*{-1,0,1}` `= {(0,-1),(-1,0),(-1,1),(0,-1),(0,0),(0,1),(1,-1) ,(1,0),(1,1)}` `` Answer |
|