You have a big blue square and a small blue circle. You decide to sort by color. Where do the two shapes go?
ADifferent bins — they are different shapes so they must be separated
BThe same bin — both are blue, so they share the sorting rule
CThe big blue square goes in the 'big shapes' bin and the circle in another
DYou cannot sort these two shapes together because they differ in shape and size
When sorting by color, the only property that matters is color — shape and size are irrelevant. Both shapes are blue, so they both go in the blue bin. This is the key insight of sorting: you choose *one* rule, and then apply only that rule to every shape. A child who puts them in different bins because they look different is applying multiple criteria (shape or size) without realizing it, which violates the single-rule principle.
Question 2 Multiple Choice
A child sorts 12 shapes into two piles, but you notice that some triangles appear in both piles. What most likely happened?
AThe child is wrong — all triangles must always go in the same pile
BThe child applied two different rules at the same time (e.g., large triangles sorted by size into one pile, red triangles sorted by color into another)
CThe child doesn't know what triangles look like
DTriangles are too complex to sort by a single rule
If triangles appear in both piles, the child likely switched sorting rules mid-way — sorting some shapes by size and others by color, for example. The result is an inconsistent sort where the same shape type lands in different places. Correct sorting requires picking *one* rule and applying it the *same way* to every shape without switching. Option A is wrong because in a different valid sorting (e.g., by color), red and blue triangles would correctly go in separate groups.
Question 3 True / False
When sorting the same set of shapes, there is only one correct way to sort them.
TTrue
FFalse
Answer: False
The same collection of shapes can be sorted in multiple valid ways, depending on which property you choose as your rule. Sort by shape and all circles go together; sort by color and all red shapes go together; sort by number of sides and triangles and rectangles may be separated. Neither sorting is more 'correct' than the other — what matters is that you pick one rule and apply it consistently to every shape.
Question 4 True / False
When sorting shapes by shape type, a large red circle and a small blue circle should go in the same group.
TTrue
FFalse
Answer: True
When the sorting rule is 'type of shape,' the only property that matters is the shape itself — not color, not size. Both objects are circles, so they both belong in the circle group. Size and color are irrelevant to this particular rule. This is also an example of why it's important to state your rule clearly: if instead you sorted by color, these two circles would go in different groups.
Question 5 Short Answer
What does it mean to 'apply a sorting rule consistently,' and why does consistency matter?
Think about your answer, then reveal below.
Model answer: Applying a sorting rule consistently means using the same criterion for every single shape in the collection — not switching from 'sort by color' to 'sort by shape' partway through. It matters because inconsistent sorting produces meaningless groups: shapes end up in bins not because they truly share a property but because of random decisions. Consistent sorting is what makes the groups meaningful — every shape in a group genuinely shares the chosen property with all the others.
Consistency is what distinguishes a valid sort from a random pile. If you sort some shapes by color and others by size, your groups don't represent anything real. In mathematics and science, classification is only useful when the grouping rule is clear and applied uniformly. This is the same principle behind sorting numbers, organisms, or data — the rule must be stated and applied without exception.