Alright, future engineers!
The **Power Set** of a set A is the set of *all* possible subsets of A. Ex: For A={1,2}, P(A) = {{}, {1}, {2}, {1,2}}.
Pro-Tip: If a set has 'n' elements, its power set will always have 2^n elements. Handy for combinatorics!