You sort blocks by shape (circle, square, triangle) and size (small, large). What is the maximum number of groups you could get?
A3 groups (one per shape)
B5 groups (3 shapes + 2 sizes)
C6 groups (3 shapes x 2 sizes)
D2 groups (one per size)
When combining attributes, you multiply the options: 3 shapes x 2 sizes = 6 possible groups (small circle, large circle, small square, large square, small triangle, large triangle). You add attributes, but you multiply groups. This is the key insight: each additional attribute multiplies the precision of your classification.
Question 2 Multiple Choice
A librarian sorts books by genre (fiction vs. nonfiction) and length (under 200 pages vs. 200+ pages). A new book arrives: it is nonfiction and 350 pages long. Which group does it go in?
AFiction, under 200 pages
BFiction, 200+ pages
CNonfiction, under 200 pages
DNonfiction, 200+ pages
You check each attribute independently: the book is nonfiction (not fiction) and 350 pages (200+ pages). So it goes in the Nonfiction, 200+ pages group. Each object is classified by checking all attributes, not just the most obvious one.
Question 3 True / False
Adding more attributes to a classification usually makes it more useful.
TTrue
FFalse
Answer: False
More attributes make a classification more detailed, but not always more useful. If you classify students by hair color, eye color, shoe size, height, and birthday month, you might end up with a group for every individual — which is as unhelpful as having no groups at all. A useful classification uses the attributes that are relevant to the question you are trying to answer. Relevance matters more than quantity.
Question 4 Short Answer
Why does adding a second attribute to a classification multiply the number of groups rather than just adding to it?
Think about your answer, then reveal below.
Model answer: Because every option for the first attribute combines with every option for the second. If you have 3 shapes and 2 sizes, each of the 3 shapes can be small or large, giving 3 x 2 = 6 combinations. You are not adding groups — you are splitting each existing group into subgroups. The first attribute creates 3 groups, and the second attribute splits each of those 3 groups into 2, giving 6 total.
This is the counting principle (or multiplication principle) applied to classification. It appears throughout mathematics: combinations, permutations, and Cartesian products all follow this same multiplicative logic. Students who understand why classification is multiplicative have an intuitive foundation for combinatorics.