I have a question stating
Let $A= \{ x_1 , x_2 , x_3 , \ldots , x_n \}$ be a set consisting of $n$ distinct elements. How many subsets does it have? How many proper subsets?
My thought is that there would be subsets with $1$ element, $2$ elements, $3$ element and so on, up to $n$ elements. The number of subsets of each size would be:
$$\begin{array}{c|c} \text{Subset size} & \text{no. of subsets} \\ \hline 1 & n \\ 2 & n-1 \\ 3 & n-2 \\ \vdots & \vdots \\ n-1 &n-(n-2) \\ n & n- (n-1) \end{array}$$ From this it seems the number of subsets would be $\displaystyle \sum_{k=0}^{n-1} (n-k) $. And for proper subsets, I would just not include the subsets of size $n$ , so $\displaystyle \sum_{k=0}^{n-2} (n-k) $. Is this correct?
I disagree. For example, the number of subsets of size 2 is $$ \binom{n}{2} = \frac{n(n-1)}{2} \ne n-1 $$ and in general you are looking at $$ \sum_{k=0}^n \binom{n}{k} = 2^n, $$ which is also easy to see from fundamentals by a simple counting argument -- each of the $n$ elements can be either included or excluded, independently of others. So you have $2$ choices $n$ times, a total of $2^n$.