Given that A={5,6,7,8} calculate the number of subsets and proper subsets

For a set A of n elements, there are 2^n subsets. (see Power Set)

Two of these are Ø and A, so there are 2^n - 2 proper subsets.