🧩 竞赛综合思维

Problem Solving Strategies

反证法、极端原理、构造法和赋值法是AMC 10压轴题的常见解题策略。掌握这些方法,能帮助你解决那些看似"无从下手"的难题。本页还包含AMC 10考试时间管理建议。

📚 4 章节 💡 5 道例题 ✏️ 8 道练习 🎯 难度:进阶 ⏱ 约45分钟
反证法 Proof by Contradiction

核心思想

反证法的核心思路是:假设结论不成立,推导出矛盾,从而证明原结论必然成立。

The core idea: Assume the conclusion is false, derive a contradiction, then the original conclusion must be true.

适用场景

  • 存在性问题(证明某事物存在或不存在)
  • "至少一个"、"至多一个"类问题
  • 证明某命题"不可能"成立
  • AMC 10选择题中,排除错误选项
Used for existence problems, "at least one" statements, and proving impossibility.

解题步骤

  1. 假设否定:假设结论的否定形式成立
  2. 逻辑推导:进行一系列逻辑推导
  3. 得出矛盾:推导出与已知条件或明显事实相矛盾的结果
  4. 结论成立:原假设错误,原结论成立
Steps: (1) Assume negation (2) Derive logically (3) Find contradiction (4) Conclude original statement is true.
💡 邓老师提示:AMC选择题中,反证法常常用于排除选项。看到"以下哪个一定正确"或"不可能"的题目时,尝试用反证法思考!
极端原理 Extremal Principle

核心思想

极端原理的思路是:考虑最大值、最小值或极端情况,往往能简化复杂问题。

Consider maximum, minimum, or extreme cases to simplify complex problems.

适用场景

  • 不等式证明
  • 求最大值/最小值问题
  • 优化问题
  • 证明"至少"或"至多"类命题
Useful for inequality proofs, optimization, and "at least/at most" problems.

常见技巧

  • 考虑最大/最小元素:在有限集合中,最大/最小元素往往有特殊性质
  • 极端情况分析:考虑问题的上界或下界
  • 鸽巢原理:极端原理的经典应用
Common techniques: Consider extreme elements, analyze boundary cases, apply Pigeonhole Principle.
💡 邓老师提示:当问题问"最大/最小可能值"时,优先考虑极端原理!AMC 10中这类题目很多,往往先找到极端情况就能找到答案。
构造法 Construction Method

核心思想

构造法的思路是:通过构造具体的例子、模型或反例来解决问题。这在存在性证明和排除错误选项时特别有效。

Construct specific examples, models, or counterexamples to solve problems.

适用场景

  • 存在性证明(证明某事物存在)
  • 计数问题中的构造性求解
  • 最值问题中构造达到极值的例子
  • 选择题中排除错误选项
Used for existence proofs, counting problems, optimization, and eliminating wrong answers.

常见构造类型

  • 构造函数:构造满足条件的函数
  • 构造方程:构造有特殊根的方程
  • 构造数列:构造满足递推关系的数列
  • 构造反例:构造否定某个命题的例子
Common types: Construct functions, equations, sequences, or counterexamples.
💡 邓老师提示:AMC选择题的选项本身就是"构造"的答案!看到不会的题目时,先用特殊值代入验证选项,往往能快速排除错误答案。
赋值法与代数技巧 Substitution & Algebraic Techniques

整体代换

设辅助变量简化复杂表达式。当问题涉及多个变量时,常常可以设它们的和或积为一个新变量来简化计算。

Introduce auxiliary variables to simplify complex expressions. Set sums or products as new variables.

对称性利用

利用表达式的对称性简化计算。轮换对称式和完全对称式往往有特殊的性质。

Use symmetry of expressions to simplify calculations. Cyclic and symmetric expressions have special properties.

不变量分析

在变化过程中寻找不变量。不变量往往是解决问题的关键线索。

Find invariants during changes. Invariants often provide key clues to the solution.

归纳猜想

计算前几项,猜想规律,然后用数学归纳法证明。这是处理数列问题的常用方法。

Calculate first few terms, conjecture patterns, then prove by mathematical induction.
💡 邓老师提示:AMC 10中"n个变量的和/积"问题,常可通过设和为S来简化!例如已知a+b+c=0求a³+b³+c³−3abc,直接套公式等于0。
例题精讲
💡 5 道例题
例题 1 中等 · 特殊值法
若 (x + y)² = 49 且 xy = 10,求 x² + y² 的值。 If (x + y)² = 49 and xy = 10, find x² + y².
解析:

(x + y)² = x² + 2xy + y² = 49

所以 x² + y² = 49 − 2xy = 49 − 2×10 = 29

答案:B

(x+y)² = x² + 2xy + y² = 49, so x² + y² = 49 − 20 = 29.
例题 2 进阶 · 构造法
将数字 1, 2, 3, 4, 5, 6 填入 2×3 的方格表中,使得每行每列的和都相等。这种填法中,最小可能的公共和是多少? Fill a 2×3 grid with numbers 1-6 so that each row and column has equal sum. What is the minimum possible common sum?
解析:

总和 = 1+2+3+4+5+6 = 21

若满足条件:

  • 2行每行和相等:每行和 = 21/2 = 10.5,不是整数 → 不可能
  • 3列每列和相等:每列和 = 21/3 = 7

可以构造:

  • 第一列:1 + 6 = 7
  • 第二列:2 + 5 = 7
  • 第三列:3 + 4 = 7

答案:A

Total = 21. For 3 equal columns: 21/3 = 7. Construction: (1,6), (2,5), (3,4) in each column.
例题 3 进阶 · 归纳法
一个数列的首项为 1,此后每一项等于前面所有项之和。这个数列的前 5 项之和是多少? A sequence starts with a₁ = 1, and each term equals the sum of all previous terms. What is the sum of the first 5 terms?
解析:

a₁ = 1

a₂ = a₁ = 1

a₃ = a₁ + a₂ = 1 + 1 = 2

a₄ = a₁ + a₂ + a₃ = 1 + 1 + 2 = 4

a₅ = a₁ + a₂ + a₃ + a₄ = 1 + 1 + 2 + 4 = 8

前5项之和 = 1 + 1 + 2 + 4 + 8 = 16

答案:C

a₁=1, a₂=1, a₃=2, a₄=4, a₅=8. Sum = 1+1+2+4+8 = 16.
例题 4 进阶 · 代数恒等式
设 a + b + c = 0,求 a³ + b³ + c³ − 3abc 的值。 If a + b + c = 0, find a³ + b³ + c³ − 3abc.
解析:

使用著名恒等式:

a³ + b³ + c³ − 3abc = (a + b + c)(a² + b² + c² − ab − bc − ca)

当 a + b + c = 0 时,整个表达式 = 0

答案:A

Using identity: a³+b³+c³−3abc = (a+b+c)(a²+b²+c²−ab−bc−ca). When a+b+c=0, result is 0.
例题 5 进阶 · 特殊值枚举
一个正整数 n 满足:n² 的个位数字等于 n 的个位数字。以下哪个数满足此条件? A positive integer n satisfies: the units digit of n² equals the units digit of n. Which number satisfies this?
解析:

逐个验证:

  • 12² = 144,个位 4 ≠ 2 ✗
  • 13² = 169,个位 9 ≠ 3 ✗
  • 25² = 625,个位 5 = 5 ✓
  • 27² = 729,个位 9 ≠ 7 ✗

答案:C

Check: 12²→4≠2, 13²→9≠3, 25²→5=5✓, 27²→9≠7. Answer: C.
巩固练习
✏️ 8 道练习
练习 1:若 x + 1/x = 5,则 x² + 1/x² = ? If x + 1/x = 5, find x² + 1/x².
练习 2:三个连续正整数之积为 720,这三个数之和为? Three consecutive positive integers have product 720. What is their sum?
练习 3:若正整数 n 满足 n² + n + 1 是 3 的倍数,则 n 除以 3 的余数是? If n² + n + 1 is divisible by 3, what is n mod 3?
练习 4:1² + 2² + 3² + ... + 10² = ? Compute 1² + 2² + ... + 10².
练习 5:若 a + b = 7 且 ab = 10,则 a² + b² = ___。 If a + b = 7 and ab = 10, find a² + b².
练习 6:以下哪个数既是完全平方数又是完全立方数(在1到1000之间)? Which number is both a perfect square and perfect cube (between 1 and 1000)?
练习 7:将一枚骰子投掷两次,两次点数之和为 7 的概率是? Rolling a die twice, what's the probability the sum is 7?
练习 8:若方程 x² − 5x + k = 0 的两根均为整数,则 k 的最大值为? If x² − 5x + k = 0 has integer roots, what's the maximum value of k?