P5
Recursive Pattern
递推数列
Pattern / 模式识别Grades G5 - G8
👀
What It Looks Like
Recognition signals — when you see these, think of this structure:
- 1Sequence where each term depends on previous terms
- 2Fibonacci-like patterns
- 3Terms that are sums, products, or combinations of earlier terms
🎯
What It Really Tests
The core mathematical idea behind this structure:
Each term depends on one or more previous terms according to a fixed rule.
每一项由前面的若干项按固定规则确定。
⚠️
Why Students Get Stuck
Common mistakes to watch out for:
- ⚠Looking for a single formula instead of a relationship between terms
- ⚠Not tracking enough previous terms to see the pattern
- ⚠Assuming the pattern is simpler than it actually is
💡
Your First Step
How to begin thinking about problems with this structure:
Look at how each term relates to the previous one or two terms.
看每一项如何与前一项或前两项关联。
Related Structures
These structures share similar patterns or thinking approaches: