

InterviewSolution
Saved Bookmarks
1. |
Write the power set for the set `A = {5,9,11}`. |
Answer» Power set P(A) = Set of all subsets of A `= {phi,{5},{9},{11},{5,9},{9,11},{5,11},{5,9,11}}`. |
|