Bookshelf Challenge

Emma has a small bookshelf with space for 6 books in a row. She has 4 fiction books (each marked with an F) and 2 non-fiction books (each marked with an N). Emma wants to arrange these books on the shelf.

How many different ways can Emma arrange the 6 books on the shelf?

Note: Switching two fiction books doesn’t count as a new arrangement, since all the fiction books look the same. The same applies to the non-fiction books.

F FICTION N NON-FIC 📚 The Bookshelf Riddle A combinatorics challenge: Finding the total number of unique arrangements. CAPACITY: 6 BOOKS 📖 Master Librarian's Rule Books of the same category are IDENTICAL. Swapping them does not create a new pattern! F F = SAME F N NEW! How many unique ways can Emma arrange the 6 books on the shelf?
F N ? ✅ Solution: The Bookshelf Challenge Two methods to find the total number of unique arrangements for 6 books. 🧮 Method 1: The Combination Formula (6 Choose 2) Think of the shelf as 6 empty slots. We just need to "choose" 2 slots for the Non-Fiction (N) books. Once the 'N' books are placed, the 'F' books automatically fill the rest! C(6,2) = 6! 2! × 4! = 6 × 5 2 × 1 = 15 🔍 Method 2: Systematic Counting (Visualizing the Pattern) Let's lock the first 'N' into place, moving it one slot to the right each time, and see how many slots are left for the second 'N' to drop into. 1st 'N' in Slot 1: ➔ 5 Ways 1st 'N' in Slot 2: ➔ 4 Ways 1st 'N' in Slot 3: ➔ 3 Ways 1st 'N' in Slot 4: ➔ 2 Ways 1st 'N' in Slot 5: ➔ 1 Way 5 + 4 + 3 + 2 + 1 = UNIQUE ARRANGEMENTS 15 Ways