Given : Out of 100 members
93 have a mansion;
90 have a car collection;
81 have a private jet;
75 have a private island;
62 have an art collection.
To minimize the number of members who have all 5 items we will consider two items at a time and calculate the minimum number of members that can have those two items. Then take those members and proceed in similar way with each other item.
1. Members than can have a mansion and a car collection 93 have a mansion;
90 have a car collection;
From above we can see that 7 does not have mansion and 10 does not have car collection .
This information can be used to calculate the minimum and maximum number of members that can have both the things. To get minimum number of members who can have both things we have to maximize the people who do not have both things.
So max people who have do not have both a mansion and a car collection = 7 + 10
Now the remaining people have both a mansion and a car collection = 100 - 17 = 83
2. Members than can have a mansion and a car collection and private jetAs we got from 1.
Members with mansion and a car collection = 83
Members with private jet = 81
--> 17 don't have mansion and a car collection
--> 19 don't have private jet
max People who don't have these 3 items = 17+19 = 36
min number of members than can have a mansion ,a car collection, and private jet = 100-36 = 64
3.Members than can have a mansion ,a car collection ,private jet, and private islandMembers with a mansion ,a car collection, and private jet = 64
Members with private island= 75
--> 36 don't have mansion ,a car collection, and private jet
--> 25 don't have private island
max People who don't have these 4 items = 36 + 25 = 61
min number of members than can have a mansion and a car collection, private jet , and private island = 100-61 = 39
4. Members than can have a mansion ,a car collection ,private jet, private island and an art collectionMembers with a mansion ,a car collection,private jet, and private island = 39
Members with an art collection= 62
--> 61 don't have a mansion ,a car collection,private jet, and private island
--> 38 don't have an art collection
max People who don't have these 5 items =61 + 38 = 99
min number of members than can have a mansion and a car collection, private jet, and an art collection = 100-99 = 1
Thus, the min number of members who have all 5 items =
1