I'm new to this but.. how many subsets does a five element have. How many subsets does a set of six elements have?

if you include the empty set and the entire set itself in the list of subsets there will be 2^5 or 32 subsets for 5 elements.

In general, if you have n elements in a set, there will be 2^n number of subsets including the null set and the entire set itself.
e.g. {A,B,C)
subsets : {},{A},{B},{C}, {A,B}, {A,C}, {B,C}, {A,B,C}
there would be 2^3 or 8 of them

To find the number of subsets a set has, you can use the formula 2^n, where n is the number of elements in the set.

For a five-element set, applying this formula gives us 2^5 = 32 subsets.

For a six-element set, using the formula again gives us 2^6 = 64 subsets.