

InterviewSolution
Saved Bookmarks
1. |
If `(AxxA)` has 9 elements two of which are (-1,0) and (0,1), find the set A and the remaining elements of `(AxxA).` |
Answer» Clearly, -1,0 and 1 are elements of A. `:." "A={-1,0,1}` `AxxA={-1,0,1}xx{-1,0,1}` `={(-1,-1),(-1,0),(-1,1),(0,-1),(0,0),(0,1),(1,-1),(1,0),(1,1)}.` Hence, the remaining elements of `(AxxA)` are `(-1,-1),(-1,1),(0,-1),(0,0),(1,-1),(1,0),(1,1).` |
|