Deduplication
去重计数
Counting / 计数What It Looks Like
Recognition signals — when you see these, think of this structure:
- 1Overlapping groups
- 2The same object fits multiple descriptions
- 3Simple addition gives a suspiciously large answer
What It Really Tests
The core mathematical idea behind this structure:
Some objects are counted more than once; duplicates must be identified and removed.
有些对象被重复计数了, 需要识别并去除重复。
Why Students Get Stuck
Common mistakes to watch out for:
- ⚠Directly adding group sizes without checking overlap
- ⚠Not identifying what causes the overlap
- ⚠Removing too many or too few duplicates
Your First Step
How to begin thinking about problems with this structure:
Identify what can appear in more than one case before adding.
在相加之前, 先找出哪些元素会出现在多个类别中。
Try a Problem
In a club, 12 students play chess, 9 play music, and 4 do both. How many students play chess or music (or both)?
💡 Show Solution & Key Insight
Answer
A
Explanation
If we add 12 + 9 = 21, the 4 students in both groups are counted twice. So the total = 12 + 9 - 4 = 17.
Key Insight
Check for overlap before adding group sizes.
Common Wrong Path
Adding 12 + 9 = 21 without removing the double-counted overlap.
Related Structures
These structures share similar patterns or thinking approaches: