Let say we have a set A = {x, y, z}. Than power set will be:
P(A) = {{}, {x}, {y}, {z}, {x, y}, {x, z}, {y, z}, {x, y, z}}
When I look at the P(A) I see that each of the n elements from A will be contained in half of the subsets:
- Element $x: 4$ times
- Element $y: 4$ times
- Element $z: 4$ times
Question: how to prove it?
Let $S$ be the subset of $A$. Then we are seeking the number of such subsets so that $x \in S$. So put $x$ in $S$. Then for $y$ and $z$, there are two options each (either in $S$ or not). So there are $2\cdot2 = 4$ such subset $S$.
By renaming the objects, same argument is valid for $y$ and $z$.
More generally, if we have a set $A$ with $|A| = n$, number of subsets such that certain element is in that subset is $2^{n-1}$ because it is as same as finding the number of subsets of a set with size $n-1$ (Because that certain element is already chosen to be icluded in the subset).