Find the number of proper subsets in set(a,b,c,d,e,f,g,h,i,j,k,l,m, ... ,z)
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
the formula for proper subsets is 2^n-1. n is is for the number of elements. 2^n is to find the subset and you subtract one to remove the empty set(improper subset). So 2^26 is 67108864 and you subtract one so you get 67108863.