there are 10 bulbs in a room
10 switches (all bulbs are distinct) in how many ways can the room be illuminated??
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.
We have to find all the possible subsets (with 1,2,3,4.....10 elements) of the set of 10 elements. So we have 2^10 possibilities. We have to remove the case where all the switches are off. so the solution is 2^10-1=1023.