Question 370920
<br><font face="Tahoma">With this problem, you just need to break it down a bit. <br>

She wants to bring at least one book, but not all five.<br>

This means she wants to bring 1 book, 2 books, 3 books, or 4 books.<br>

All you need to do is set up a different combination for all 4 scenarios described above, and then add them together.<br>

This will give you the total number of subsets with the given constraints:<br>

5C1=5!/(1!*4!)=5<br>

5C2=5!/(2!*3!)=10<br>

5C3=5!/(3!*2!)=10<br>

5C4=5!/(4!*1!)=5<br>

Thus there are 5+10+10+5 different subsets of books she could bring.<br>

Answer: There are 30 different subsets!<br>

I hope this helps!<br>