📚 Common Problem Types and Answering Strategies in International Mathematics Competitions | 国际数学竞赛常见题型解析与答题技巧
International mathematics competitions such as the AMC, AIME, Canadian Mathematical Olympiad and British Mathematical Olympiad require more than memorised formulas. Success depends on flexibility, pattern recognition and strategic thinking under time pressure. In this article we survey the most common problem families and show an effective way of attacking each one, supported by worked examples and a clear explanation of the underlying reasoning.
国际数学竞赛(如美国AMC/AIME、加拿大数学奥林匹克、英国数学奥林匹克等)不只是对公式的记忆,更考查灵活思维、模式识别与限时策略。本文将系统梳理最常见的题目类型,并通过典型例题讲解每类题的核心思想与答题技巧,帮助你在考场上迅速找到突破口。
1. Algebra: Symmetry and Rewriting | 代数:化归与对称性
Algebraic problems appear in nearly every contest. Strong solvers do not rush into expanding everything. Instead they look for symmetry, common factors and identities that convert a complicated expression into a simple relationship.
代数题几乎出现在每场竞赛中。高手不会急着展开所有式子,而是优先寻找对称性、公因式与恒等式,把复杂表达式转化为简单关系。
Example: If a + b = 7 and ab = 10, find a² + b². Solving for a and b separately is slow; the symmetric identity is far quicker.
例:已知 a + b = 7,ab = 10,求 a² + b²。若分别求出 a、b 会比较慢;利用对称恒等式则一步到位。
a² + b² = (a + b)² − 2ab = 49 − 20 = 29
The technique is to rewrite target expressions using known sums, products, differences and squares, so that hidden relations are uncovered.
关键技巧是把目标式转化为已知的和、差、积、平方的组合,从而揭露隐藏关系。
2. Geometry: Multiple Viewpoints | 几何:多视角切入
Geometry problems reward imagination. Coordinate geometry, trigonometry and classical Euclidean facts can approach the same figure from different angles. Choosing the right viewpoint often reduces a hard problem to a short calculation.
几何题考验空间想象力。解析几何、三角公式与经典欧氏定理可以从不同角度切入同一图形;选择合适视角常能把难题化为简短计算。
Example: A right triangle is inscribed in a circle of radius 5. What is the maximum possible area of the triangle?
例:一个直角三角形内接于半径为 5 的圆中,求其面积的最大值。
Since the right angle lies on the circumference, the hypotenuse is a diameter of length 10. Let one acute angle be θ; the two legs are 10cosθ and 10sinθ.
因为直角在圆周上,斜边必为直径,长度为 10。设一个锐角为 θ,则两条直角边分别为 10cosθ 和 10sinθ。
Area = ½ × 10cosθ × 10sinθ = 25 sin 2θ ≤ 25
The maximum area is 25, achieved when θ = 45°, showing that an extreme value often occurs at a symmetric configuration.
最大面积为 25,当 θ = 45° 时取得;这说明极值往往出现在对称位置。
3. Combinatorics: Counting by Complements | 组合计数:用补集简化
Counting problems frequently use the word ‘at least’. Counting such cases directly is messy; instead count the total cases and subtract the unwanted complement.
组合计数题常出现“至少”条件。直接数“至少”的情形往往繁琐;更聪明的做法是先数总数,再减去不符合条件的补集。
Example: How many three-digit numbers do not start with 0 and contain at least one even digit?
例:有多少个百位不为 0 的三位数,至少含有一个偶数数字?
Total three-digit numbers: 9 × 10 × 10 = 900. If every digit is odd, only digits from {1,3,5,7,9} are used: 5 × 5 × 5 = 125.
三位数总数为 9 × 10 × 10 = 900。若全部数字都是奇数,每个位置只能从 {1,3,5,7,9} 中选:5 × 5 × 5 = 125。
Required = 900 − 125 = 775
Whenever you see ‘at least’, immediately ask: what is the complement of this condition? The answer is often easier to count.
看到“至少”时,立刻反问:该条件的补集是什么?补集往往更容易计算。
4. Number Theory: Prime Factorisation | 数论:质因数分解思维
Divisibility and modular arithmetic questions in competitions are almost always solved cleanly by prime factorisation. Express every number as a product of primes, then match requirements.
竞赛中的整除性与同余问题几乎都可以通过质因数分解干净利落地解决。把每个数写成质数幂的乘积,再逐一匹配条件即可。
Example: Find the smallest positive integer n such that n² is divisible by 12 but n itself is not divisible by 12.
例:求最小的正整数 n,使得 n² 能被 12 整除,但 n 本身不能被 12 整除。
12 = 2² × 3
For n² to contain 2² × 3, the number n must contain 2¹ × 3¹, so n is a multiple of 6. Trying 6: 6² = 36 is divisible by 12, and 6 is not divisible by 12. Hence n = 6.
若 n² 含有因子 2² × 3,则 n 必须含有 2¹ × 3¹,即 n 是 6 的倍数。检验 6:6² = 36 能被 12 整除,而 6 不能被 12 整除,故 n = 6。
5. Inequalities and Extrema | 不等式与最值问题
Optimisation questions can often be handled by completing the square or by the AM-GM inequality. A nice closed form usually sits at the point where all variables are equal or a square vanishes.
最值问题常通过配方或均值不等式(AM-GM)来处理。简洁的最值通常出现在变量全部相等或平方项消失之处。
Example 1: Find the minimum value of f(x) = x² − 6x + 10.
例 1:求 f(x) = x² − 6x + 10 的最小值。
f(x) = (x − 3)² + 1 ≥ 1
Example 2: If a, b, c are positive with abc = 64, find the minimum possible value of a + b + c.
例 2:若 a、b、c 为正数且 abc = 64,求 a + b + c 的最小值。
a + b + c ≥ 3 × ∛(abc) = 3 × 4 = 12
Equality holds when a = b = c = 4. This is the extreme principle at work: the minimum or maximum appears when the configuration is fully symmetric.
当 a = b = c = 4 时取等号。这正是极端原理的体现:最值往往出现在完全对称的配置中。
6. Functions and Graphs | 函数与图像识别
Function problems test whether you can read a graph and connect it to algebra. Rewriting a function into vertex form reveals symmetry, range and intercepts quickly.
函数题考查从图像读取信息并与代数式互译的能力。把函数写成顶点式能快速揭示对称轴、值域与截距。
Example: Let f(x) = x² − 4x + 5. Write it as a perfect square and give its range.
例:设 f(x) = x² − 4x + 5,请配方并写出其值域。
f(x) = (x − 2)² + 1
The vertex is (2, 1), the parabola opens upward, so the range is [1, ∞).
顶点为 (2, 1),抛物线开口向上,所以值域为 [1, ∞)。
Always sketch a rough graph before finalising an answer. The visual picture often exposes false conclusions from algebra alone.
下结论前务必随手画一个草图。图像常能暴露仅从代数推导中看不出的错误。
7. Backward Reasoning | 逆推法:从目标倒推
Some equations look messy because the world is buried inside powers or roots. Work from the outside in: factor the common structure, isolate the unknown block, then finish the calculation.
有些方程看起来繁琐,是因为未知量藏在幂或根号之中。此时应从外向内处理:提取公共结构,隔离未知块,再完成计算。
Example: Solve 2ˣ + 2ˣ⁺¹ = 96.
例:解方程 2ˣ + 2ˣ⁺¹ = 96。
2ˣ(1 + 2) = 96 → 3 × 2ˣ = 96 → 2ˣ = 32 → x = 5
This backward technique also works for geometry and number theory: assume the answer, then test which constraints it must satisfy.
这种逆推思想同样适用于几何与数论:先假设答案,再检验它必须满足哪些限制条件。
8. Extreme Principle and Boundary Cases | 极端原理与边界检验
When a problem asks for a maximum or minimum, examine the extreme configuration first. Very often the answer is achieved by a degenerate triangle, all variables equal, or a perfect square.
当题目要求最大值或最小值时,先考虑极端配置。答案往往出现在退化三角形、所有变量相等或完全平方数等特殊情形。
Example: Two sides of a rectangle sum to 20. Find the maximum possible area.
例:一个矩形的长加宽之和为 20,求其最大面积。
Area = a(20 − a) ≤ 100
Equality occurs when a = 10, the square case. The extreme principle reminds us that calculus is unnecessary when symmetry provides the answer.
当 a = 10 时取等号,即正方形情形。极端原理提醒我们:当对称性能给出答案时,不必动用微积分。
9. Common Pitfalls and Traps | 常见陷阱与易错点
Contest setters design traps around habitual errors. Knowing these pitfalls in advance is a powerful scoring tool.
命题人常根据习惯性错误设计陷阱,提前识别这些陷阱本身就是一个得分工具。
- Dividing both sides of an equation by a variable that might be zero; always split the cases instead.
- Forgetting the ± sign when taking square roots of both sides.
- Ignoring the domain: even roots require positive radicands, logarithms require positive bases and arguments.
- Using permutations where order does not matter; always ask whether arrangement is meaningful.
- 方程两边同时除以可能为零的变量;应分类讨论而非直接消去。
- 两边开平方时忘记正负号 ±。
- 忽略定义域:偶次根号下须非负,对数真数与底数须为正。
- 混淆排列与组合:题目关心顺序时才能用排列。
After solving, substitute your answer back into the original condition. A two-second check can save four marks.
解完题后把答案代回原条件验证。两秒钟的复查可能保住四分。
10. Time Management and Exam Tactics | 时间分配与实战技巧
No strategy matters unless you manage the clock. Competition papers reward consistent accuracy over frantic speed.
如果不会管理时间,再好的技巧也无从发挥。竞赛看重的是稳定准确率,而不是盲目求快。
- Scan the paper first and solve the easiest 60% within the first third of the time.
- If a problem has no progress in three minutes, move on and return later with fresh eyes.
- Use elimination in multiple-choice questions: cross out impossible answers before detailed calculation.
- For proof questions, write the main idea clearly even if the final step is missing.
- 先浏览全卷,用前三分之一时间完成最容易的六成题目。
- 一道题三分钟没有进展就暂时跳过,之后再以新视角回来。
- 选择题先排除明显错误选项,再进入精确计算。
- 解答题即使最后一步没完成,也要清晰写出核心思路。
Finally, breathe, trust your training, and remember that the same ten families of problems appear again and again across the world’s competitions.
最后,深呼吸,相信你的练习。全球各大竞赛中最常出现的,正是这十类题型;掌握它们,你便已经握住了通往高分的钥匙。
Published by TutorHao | Maths Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导