一、微分的定义:从割线斜率到切线斜率 | The Definition of Differentiation: From Secant to Tangent Slope
在 AS 阶段的 AQA 数学课程中,微分的核心思想始于一个基本问题:如何精确计算一条曲线在某一点的瞬时变化率?要回答这个问题,我们首先考察一条直线 – 它的斜率很容易计算,只需要取直线上任意两点,用纵坐标的变化除以横坐标的变化即可。但对于一条曲线,斜率在每一点都不相同,传统的”两点法”不再直接适用。
In the AS-level AQA Mathematics course, the core idea of differentiation begins with a fundamental question: how do we precisely calculate the instantaneous rate of change of a curve at a specific point? To answer this, we first look at a straight line – its gradient is easy to calculate: simply take any two points on the line and divide the change in the vertical coordinate by the change in the horizontal coordinate. But for a curve, the gradient varies from point to point, so the traditional “two-point method” no longer applies directly.
微分学的突破在于极限的概念。假设我们有一条曲线 y = f(x),我们想知道它在点 P(x, f(x)) 处的斜率。我们在曲线上取另一个点 Q(x+h, f(x+h)),其中 h 是一个小增量。连接 P 和 Q 的割线的斜率为 [f(x+h) – f(x)] / h。当 h 趋近于零时,点 Q 沿着曲线无限趋近于点 P,割线的斜率就趋近于切线的斜率。这个极限值就是导数,记作 f'(x) 或 dy/dx。
The breakthrough of differential calculus lies in the concept of a limit. Suppose we have a curve y = f(x), and we want to know its gradient at point P(x, f(x)). We take another point Q(x+h, f(x+h)) on the curve, where h is a small increment. The gradient of the secant line connecting P and Q is [f(x+h) – f(x)] / h. As h approaches zero, Q slides along the curve infinitely closer to P, and the gradient of the secant approaches the gradient of the tangent. This limiting value is the derivative, denoted by f'(x) or dy/dx.
用数学符号表示,导数的定义是:f'(x) = lim[h→0] (f(x+h) – f(x)) / h。这个定义是 AS 数学微积分部分的基础,AQA 考试中经常会考察学生对这个基本极限的理解,包括从第一原理(first principles)出发进行求导的能力。
In mathematical notation, the derivative is defined as: f'(x) = lim[h→0] (f(x+h) – f(x)) / h. This definition is the foundation of the calculus section in AS Mathematics, and AQA exams frequently test students’ understanding of this fundamental limit, including the ability to differentiate from first principles.
二、幂函数求导法则:从第一原理推导出 x^n 的导数公式 | The Power Rule: Deriving the Derivative Formula for x^n from First Principles
从导数的基本定义出发,我们可以推导出最常见的求导法则 – 幂法则(Power Rule)。对于函数 f(x) = x^n(其中 n 为任意实数),其导数为 f'(x) = nx^(n-1)。这个简洁的公式是 AS 阶段微分运算的核心工具。
Starting from the basic definition of the derivative, we can derive the most commonly used differentiation rule – the Power Rule. For the function f(x) = x^n (where n is any real number), its derivative is f'(x) = nx^(n-1). This elegant formula is the core tool for differentiation at the AS level.
让我们通过第一原理来验证 f(x) = x² 的导数。根据定义:f'(x) = lim[h→0] [(x+h)² – x²] / h = lim[h→0] [x² + 2xh + h² – x²] / h = lim[h→0] [2xh + h²] / h = lim[h→0] (2x + h) = 2x。这正是幂法则所预言的结果。对于 x³,展开 (x+h)³ = x³ + 3x²h + 3xh² + h³,代入后得到 f'(x) = 3x²。这个过程展示了二项展开式在微积分推导中的重要角色。
Let us verify the derivative of f(x) = x² through first principles. By definition: f'(x) = lim[h→0] [(x+h)² – x²] / h = lim[h→0] [x² + 2xh + h² – x²] / h = lim[h→0] [2xh + h²] / h = lim[h→0] (2x + h) = 2x. This matches exactly what the Power Rule predicts. For x³, expanding (x+h)³ = x³ + 3x²h + 3xh² + h³ and substituting yields f'(x) = 3x². This process demonstrates the important role that binomial expansions play in calculus derivations.
幂法则的一个重要特例是常函数的导数:f(x) = c(c 为常数)时,f'(x) = 0。这可以从图像上直观理解 – 常函数的图像是一条水平直线,它的斜率处处为零。另一个重要特例是 f(x) = x,其导数为 f'(x) = 1。AQA 考试中经常将这些基本结果与链式法则、乘积法则结合考察。
An important special case of the Power Rule is the derivative of a constant function: when f(x) = c (where c is a constant), f'(x) = 0. This can be understood graphically – the graph of a constant function is a horizontal line, and its gradient is zero everywhere. Another important special case is f(x) = x, whose derivative is f'(x) = 1. AQA exams frequently test these basic results in combination with the chain rule and the product rule.
三、多项式的逐项求导:和法则与常数倍法则 | Term-by-Term Differentiation of Polynomials: The Sum Rule and Constant Multiple Rule
在实际问题中,我们很少只处理单个幂函数。更常见的是需要求多项式函数如 f(x) = 3x⁴ – 5x³ + 2x² – 7x + 4 的导数。这时需要使用两个重要的运算法则:和法则(Sum Rule)和常数倍法则(Constant Multiple Rule)。
In practical problems, we rarely deal with just a single power function. More commonly, we need to differentiate polynomial functions such as f(x) = 3x⁴ – 5x³ + 2x² – 7x + 4. This requires two important operational rules: the Sum Rule and the Constant Multiple Rule.
和法则告诉我们:如果 h(x) = f(x) + g(x),那么 h'(x) = f'(x) + g'(x)。简而言之,”和的导数等于导数的和”。常数倍法则则是:如果 g(x) = k·f(x)(k 为常数),那么 g'(x) = k·f'(x)。将这两个法则与幂法则结合,我们就可以对任意多项式进行逐项求导:对每一项分别求导,然后合并结果。
The Sum Rule tells us: if h(x) = f(x) + g(x), then h'(x) = f'(x) + g'(x). In simple terms, “the derivative of a sum equals the sum of the derivatives.” The Constant Multiple Rule states: if g(x) = k·f(x) (where k is a constant), then g'(x) = k·f'(x). Combining these two rules with the Power Rule allows us to differentiate any polynomial term by term: differentiate each term separately, then combine the results.
以 f(x) = 3x⁴ – 5x³ + 2x² – 7x + 4 为例:常数倍法则使得 3x⁴ 项的导数为 3·4x³ = 12x³,-5x³ 项为 -5·3x² = -15x²,依此类推。最终 f'(x) = 12x³ – 15x² + 4x – 7。请注意,常项 4 的导数为 0(在求导后消失),而 -7x 的导数为 -7。AQA 考试中的求导题往往从这种直接的多项式求导开始,然后过渡到更复杂的函数形式。
Take f(x) = 3x⁴ – 5x³ + 2x² – 7x + 4 as an example: the Constant Multiple Rule makes the derivative of the 3x⁴ term equal to 3·4x³ = 12x³, the -5x³ term equal to -5·3x² = -15x², and so on. The final result is f'(x) = 12x³ – 15x² + 4x – 7. Notice that the constant term 4 has derivative 0 (it vanishes upon differentiation), while the derivative of -7x is -7. AQA exam differentiation questions often start with this straightforward polynomial differentiation, then transition to more complex function forms.
四、切线与法线方程:用导数求曲线在某点的切线和法线 | Tangent and Normal Equations: Using Derivatives to Find Tangents and Normals at a Point
导数的一个直接几何应用是求曲线在某点的切线方程和法线方程。切线是在该点刚好”触碰”曲线的直线,其斜率等于该点的导数值。法线则是与切线垂直的直线。
One direct geometric application of derivatives is finding the equation of the tangent line and normal line to a curve at a given point. The tangent is the straight line that just “touches” the curve at that point, and its gradient equals the value of the derivative at that point. The normal is the line perpendicular to the tangent.
具体步骤非常清晰:(1)确认曲线方程 y = f(x) 和切点坐标 (a, f(a));(2)计算 f'(x),然后代入 x = a 得到切线斜率 m = f'(a);(3)使用点斜式 y – f(a) = m(x – a) 写出切线方程;(4)法线斜率为 -1/m(因为垂直线的斜率乘积为 -1),同样用点斜式写出法线方程。
The specific steps are very clear: (1) identify the curve equation y = f(x) and the point of tangency (a, f(a)); (2) compute f'(x), then substitute x = a to get the gradient of the tangent, m = f'(a); (3) use the point-slope form y – f(a) = m(x – a) to write the tangent equation; (4) the gradient of the normal is -1/m (since the product of gradients of perpendicular lines is -1), and again use the point-slope form to write the normal equation.
举例说明:求曲线 y = x³ – 3x + 2 在点 (2, 4) 处的切线和法线。首先计算 f'(x) = 3x² – 3。在 x = 2 处,f'(2) = 3(4) – 3 = 9。切线方程为 y – 4 = 9(x – 2),即 y = 9x – 14。法线斜率为 -1/9,方程为 y – 4 = (-1/9)(x – 2),即 y = -x/9 + 38/9。这类题型在 AQA AS 数学的试卷一中非常常见,占总分的相当比例。
Here is an example: find the tangent and normal to the curve y = x³ – 3x + 2 at the point (2, 4). First compute f'(x) = 3x² – 3. At x = 2, f'(2) = 3(4) – 3 = 9. The tangent equation is y – 4 = 9(x – 2), i.e. y = 9x – 14. The gradient of the normal is -1/9, giving the equation y – 4 = (-1/9)(x – 2), i.e. y = -x/9 + 38/9. This type of question appears very commonly in Paper 1 of the AQA AS Mathematics exam and accounts for a significant proportion of marks.
五、二阶导数与函数的凹凸性:用 f”(x) 判断曲线弯曲方向 | Second Derivatives and Concavity: Using f”(x) to Determine the Direction of Curvature
对导数再次求导,我们得到二阶导数 f”(x)。二阶导数在 AS 数学中有两个关键作用:一是判断函数的凹凸性(concavity),二是验证驻点的性质(是极大值还是极小值)。
Differentiating the derivative once more gives us the second derivative f”(x). The second derivative serves two key purposes in AS Mathematics: first, it determines the concavity of a function, and second, it helps classify the nature of stationary points (whether they are maxima or minima).
在几何上,如果 f”(x) > 0 在某个区间上成立,则该区间上的曲线是”凹向上”的(convex),形状像一只碗的底部 – 切线位于曲线下方。反之,如果 f”(x) < 0,则曲线是"凹向下"的(concave),形状像一只倒扣的碗 - 切线位于曲线上方。f''(x) = 0 的点可能是拐点(point of inflection),即曲线弯曲方向发生改变的地方。
Geometrically, if f”(x) > 0 over an interval, the curve is “convex” (concave upward) over that interval, shaped like the bottom of a bowl – the tangent lies below the curve. Conversely, if f”(x) < 0, the curve is "concave" (concave downward), shaped like an inverted bowl - the tangent lies above the curve. Points where f''(x) = 0 may be points of inflection, i.e., points where the direction of curvature changes.
以 f(x) = x³ – 6x² + 9x 为例:一阶导数 f'(x) = 3x² – 12x + 9,二阶导数 f”(x) = 6x – 12。当 x < 2 时,f''(x) < 0,曲线凹向下;当 x > 2 时,f”(x) > 0,曲线凹向上。x = 2 处 f”(x) = 0,且凹凸性确实在此处改变,因此 x = 2 是一个拐点。掌握二阶导数的概念对于 AQA 考试中涉及函数图像草图绘制的题目至关重要。
Take f(x) = x³ – 6x² + 9x as an example: first derivative f'(x) = 3x² – 12x + 9, second derivative f”(x) = 6x – 12. When x < 2, f''(x) < 0, so the curve is concave downward; when x > 2, f”(x) > 0, so the curve is concave upward. At x = 2, f”(x) = 0, and the concavity does indeed change there, so x = 2 is a point of inflection. Understanding the concept of the second derivative is essential for AQA exam questions involving the sketching of function graphs.
六、驻点分析:用一阶和二阶导数寻找极大值、极小值和拐点 | Stationary Point Analysis: Using First and Second Derivatives to Find Maxima, Minima, and Points of Inflection
驻点(Stationary Point)是函数图像中切线为水平的所有点的统称 – 即 f'(x) = 0 的点。驻点分为三类:局部极大值(local maximum)、局部极小值(local minimum)和拐点(point of inflection)。AS 阶段的 AQA 数学要求学生能够系统地寻找并分类驻点。
A stationary point is the collective term for all points on a function’s graph where the tangent is horizontal – i.e., points where f'(x) = 0. Stationary points fall into three categories: local maxima, local minima, and points of inflection. AS-level AQA Mathematics requires students to systematically find and classify stationary points.
完整的求解流程包括四步:(1)求一阶导数 f'(x);(2)解方程 f'(x) = 0,求出所有驻点的 x 坐标;(3)将每个 x 值代入原函数 f(x) 得到 y 坐标;(4)使用二阶导数检验(Second Derivative Test)来判断每个驻点的性质:f”(x) > 0 表示极小值点,f”(x) < 0 表示极大值点,f''(x) = 0 则需进一步分析(可能是拐点,需检查 f'(x) 在该点两侧的符号)。
The complete solution process involves four steps: (1) find the first derivative f'(x); (2) solve the equation f'(x) = 0 to obtain the x-coordinates of all stationary points; (3) substitute each x-value into the original function f(x) to obtain the y-coordinates; (4) use the Second Derivative Test to classify each stationary point: f”(x) > 0 indicates a local minimum, f”(x) < 0 indicates a local maximum, and f''(x) = 0 requires further analysis (it may be a point of inflection, so check the sign of f'(x) on either side of the point).
让我们完整地分析 f(x) = x³ – 3x² – 9x + 5 的驻点。f'(x) = 3x² – 6x – 9 = 3(x² – 2x – 3) = 3(x – 3)(x + 1)。因此驻点位于 x = -1 和 x = 3。二阶导数 f”(x) = 6x – 6。在 x = -1 处,f”(-1) = -12 < 0 → 极大值点,坐标为 (-1, 10)。在 x = 3 处,f''(3) = 12 > 0 → 极小值点,坐标为 (3, -22)。这类完整的驻点分析题是 AQA 试卷二的常考题型。
Let us fully analyze the stationary points of f(x) = x³ – 3x² – 9x + 5. f'(x) = 3x² – 6x – 9 = 3(x² – 2x – 3) = 3(x – 3)(x + 1). Therefore stationary points occur at x = -1 and x = 3. The second derivative is f”(x) = 6x – 6. At x = -1, f”(-1) = -12 < 0 → local maximum, coordinates (-1, 10). At x = 3, f''(3) = 12 > 0 → local minimum, coordinates (3, -22). This type of complete stationary point analysis is a common question in AQA Paper 2.
七、优化问题:将微分应用于实际最大值和最小值情境 | Optimization Problems: Applying Differentiation to Real-World Maximum and Minimum Scenarios
微分的实用价值在优化问题中体现得淋漓尽致。优化问题通常涉及在给定约束条件下,寻找某个量(如面积、体积、成本、利润)的最大值或最小值。这是 AS 阶段最具挑战性也最实用的题型之一。
The practical value of differentiation is most vividly demonstrated in optimization problems. Optimization typically involves finding the maximum or minimum value of a quantity (such as area, volume, cost, or profit) under given constraints. This is one of the most challenging yet most practical question types at the AS level.
解决优化问题的标准步骤为:(1)仔细阅读题目,确定需要被优化(最大化或最小化)的量;(2)用变量表示这个量,通常需要用到几何知识(面积公式、体积公式、勾股定理等)或其他约束条件来将问题转化为单一变量的函数;(3)对这个函数求导,找出驻点;(4)使用二阶导数检验或区间端点检验来确认最优值;(5)将答案放回原情境中解释,并确保结果符合实际意义。
The standard steps for solving optimization problems are: (1) read the question carefully and identify the quantity to be optimized (maximized or minimized); (2) express this quantity in terms of variables, usually requiring geometric knowledge (area formulas, volume formulas, Pythagoras’ theorem, etc.) or other constraints to convert the problem into a single-variable function; (3) differentiate this function and find the stationary points; (4) use the Second Derivative Test or endpoint checking to confirm the optimal value; (5) interpret the answer back in the original context and ensure the result makes practical sense.
经典例题:用一块 20 cm × 20 cm 的正方形卡纸制作一个无盖盒子 – 在四个角各剪去一个边长为 x cm 的小正方形,然后将四边折起。求能使盒子体积最大的 x 值。盒子体积 V(x) = x(20 – 2x)² = 4x³ – 80x² + 400x。求导:V'(x) = 12x² – 160x + 400 = 4(3x² – 40x + 100) = 4(3x – 10)(x – 10)。解 V'(x) = 0 得 x = 10/3 或 x = 10。由于 x = 10 时盒子退化为零体积,实际最优解为 x = 10/3 ≈ 3.33 cm,此时最大体积约为 592.6 cm³。
A classic example: make an open-topped box from a 20 cm × 20 cm square sheet of card by cutting out a square of side x cm from each corner and folding up the sides. Find the value of x that maximizes the volume. The volume V(x) = x(20 – 2x)² = 4x³ – 80x² + 400x. Differentiating: V'(x) = 12x² – 160x + 400 = 4(3x² – 40x + 100) = 4(3x – 10)(x – 10). Solving V'(x) = 0 gives x = 10/3 or x = 10. Since x = 10 collapses the box to zero volume, the practical optimal solution is x = 10/3 ≈ 3.33 cm, giving a maximum volume of approximately 592.6 cm³.
八、常见错误与避坑指南:AQA 考试中的微分陷阱 | Common Mistakes and Pitfalls: Differentiation Traps in AQA Exams
根据历年 AQA 考试的评分报告,考生在微分题目中最常见的错误包括以下几个方面,提前了解可以帮助你在考试中避免这些失分点。
Based on past AQA exam marking reports, the most common student errors in differentiation questions include the following aspects. Understanding them in advance can help you avoid losing marks on these points in the exam.
错误一 – 指数运算失误:很多学生在使用幂法则时忘记将指数减 1,或者将指数与系数混淆。例如,将 x⁴ 的导数误写成 x³(忘记乘以系数 4)或误写成 4x⁴(忘记将指数减小)。正确的结果必须是 4x³。此外,在处理负指数和分数指数时,计算失误尤为常见:x^(-2) 的导数为 -2x^(-3),而 x^(1/2) 的导数为 (1/2)x^(-1/2)。
Mistake 1 – Exponent errors: Many students forget to subtract 1 from the exponent when applying the Power Rule, or confuse the exponent with the coefficient. For example, writing the derivative of x⁴ as x³ (forgetting to multiply by the coefficient 4) or as 4x⁴ (forgetting to reduce the exponent). The correct result must be 4x³. Furthermore, calculation errors are particularly common when dealing with negative and fractional exponents: the derivative of x^(-2) is -2x^(-3), and the derivative of x^(1/2) is (1/2)x^(-1/2).
错误二 – 忘记法线斜率是 -1/m:求出切线斜率后,学生常常直接将这个斜率用于法线方程。正确的做法是:法线斜率 = -1 / (切线斜率)。这一错误在 AQA 的评分报告中频繁出现,值得专门注意。
Mistake 2 – Forgetting that the normal gradient is -1/m: After finding the gradient of the tangent, students often use that same gradient directly for the normal equation. The correct approach is: normal gradient = -1 / (tangent gradient). This error appears frequently in AQA marking reports and deserves special attention.
错误三 – 混淆二阶导数检验与一阶导数符号检验:在分类驻点时,如果 f”(x) = 0,二阶导数检验失效,此时必须回到一阶导数符号分析法 – 检查 f'(x) 在驻点左侧和右侧的符号变化。符号从正变负 → 极大值;从负变正 → 极小值;符号不变 → 拐点。许多学生在 f”(x) = 0 时就下结论说是拐点,这是不正确的 – 也可能是一个平坦的极大值或极小值。
Mistake 3 – Confusing the Second Derivative Test with the First Derivative Sign Test: When classifying stationary points, if f”(x) = 0, the Second Derivative Test is inconclusive, and you must fall back to the First Derivative Sign Test – check the sign of f'(x) on either side of the stationary point. Sign change from positive to negative → maximum; from negative to positive → minimum; no sign change → point of inflection. Many students conclude it is a point of inflection when f”(x) = 0 – this is incorrect; it could also be a flat maximum or minimum.
九、曲线草图绘制:综合运用一阶和二阶导数信息画出精确的函数图像 | Curve Sketching: Combining First and Second Derivative Information to Draw Accurate Function Graphs
曲线的草图绘制是 AS 数学中综合性最强的一道题型,它要求考生整合微分的所有知识点 – 包括一阶导数求驻点、二阶导数判断凹凸性、截距计算、以及 x → ±∞ 时的渐近行为 – 在一张坐标系中绘制出合理且标注充分的函数图像。
Curve sketching is the most integrative question type in AS Mathematics. It requires candidates to synthesize all aspects of differentiation – including stationary points from the first derivative, concavity from the second derivative, intercept calculations, and asymptotic behavior as x → ±∞ – to produce a reasonable and well-annotated function graph on a coordinate plane.
完整的草图绘制清单包括:(1)计算 y 截距(令 x = 0)和 x 截距(令 y = 0,解方程);(2)求 f'(x),解 f'(x) = 0 找出所有驻点,标记其坐标并分类极大/极小/拐点;(3)求 f”(x),确定曲线在各区间的凹凸性,标出拐点;(4)分析 x → +∞ 和 x → -∞ 时函数的行为(对于多项式,主导项决定远期行为);(5)将以上所有信息整合,先标出关键点和特征,然后用平滑曲线连接。
The complete curve-sketching checklist includes: (1) calculate the y-intercept (set x = 0) and x-intercepts (set y = 0, solve the equation); (2) find f'(x), solve f'(x) = 0 to locate all stationary points, mark their coordinates, and classify them as maxima, minima, or points of inflection; (3) find f”(x), determine the concavity of the curve over each interval, and mark points of inflection; (4) analyze the behavior of the function as x → +∞ and x → -∞ (for polynomials, the leading term determines long-range behavior); (5) synthesize all of the above information, first plot the key points and features, then connect them with smooth curves.
以 f(x) = x³ – 3x 为例来演示这一流程:y 截距为 (0, 0);x 截距解 x³ – 3x = 0 即 x(x² – 3) = 0,得 x = 0 和 x = ±√3。f'(x) = 3x² – 3 = 3(x – 1)(x + 1),驻点为 (-1, 2) 和 (1, -2)。f”(x) = 6x,x < 0 时凹向下,x > 0 时凹向上,(0, 0) 处为拐点且 f” 在此处变号。当 x → +∞ 时 f(x) → +∞,当 x → -∞ 时 f(x) → -∞(主导项 x³ 决定)。将这些信息绘制在坐标纸上,即可得到一个标准的三次函数草图。
Let us demonstrate this process using f(x) = x³ – 3x: the y-intercept is (0, 0); solving x³ – 3x = 0, i.e. x(x² – 3) = 0, gives x-intercepts at x = 0 and x = ±√3. f'(x) = 3x² – 3 = 3(x – 1)(x + 1), giving stationary points at (-1, 2) and (1, -2). f”(x) = 6x: concave downward for x < 0, concave upward for x > 0, with (0, 0) being a point of inflection where f” changes sign. As x → +∞, f(x) → +∞, and as x → -∞, f(x) → -∞ (dominated by the x³ leading term). Plotting this information on graph paper produces a standard cubic function sketch.
十、微分在运动学中的初步应用 | Early Applications of Differentiation in Kinematics
在 AQA AS 数学课程中,微分还被应用于分析运动学问题。如果位移 s(以米为单位)是时间 t(以秒为单位)的函数,即 s = f(t),那么速度 v = ds/dt = f'(t)(位移对时间的一阶导数),加速度 a = dv/dt = d²s/dt² = f”(t)(位移对时间的二阶导数)。这构成了运动学中微积分应用的基本框架。
In the AQA AS Mathematics course, differentiation is also applied to the analysis of kinematics problems. If displacement s (in metres) is a function of time t (in seconds), i.e. s = f(t), then velocity v = ds/dt = f'(t) (the first derivative of displacement with respect to time), and acceleration a = dv/dt = d²s/dt² = f”(t) (the second derivative of displacement with respect to time). This forms the basic framework for the application of calculus in kinematics.
例如,某质点的位移由 s(t) = t³ – 6t² + 9t(0 ≤ t ≤ 5)给出。求速度函数:v(t) = s'(t) = 3t² – 12t + 9 = 3(t – 1)(t – 3)。质点静止(瞬时速度为零)的时刻是 t = 1 和 t = 3。加速函数:a(t) = v'(t) = 6t – 12。在 t = 1 时,a(1) = -6 m/s²(减速),在 t = 3 时,a(3) = 6 m/s²(加速)。通过微分,我们可以在不依赖物理直觉的情况下精确地分析运动状态。
For example, suppose the displacement of a particle is given by s(t) = t³ – 6t² + 9t (0 ≤ t ≤ 5). Find the velocity function: v(t) = s'(t) = 3t² – 12t + 9 = 3(t – 1)(t – 3). The particle is at rest (instantaneous velocity zero) at t = 1 and t = 3. The acceleration function: a(t) = v'(t) = 6t – 12. At t = 1, a(1) = -6 m/s² (decelerating); at t = 3, a(3) = 6 m/s² (accelerating). Through differentiation, we can precisely analyze motion states without relying on physical intuition.
Summary | 总结
微分是 AS AQA 数学课程中最基础也最重要的工具之一。从导数的极限定义出发,我们推导出幂法则作为多项式求导的核心技术,进而掌握了切线法线方程、二阶导数与凹凸性分析、驻点分类、优化问题求解、曲线草图绘制以及在运动学中的应用。这十个核心模块构成了 AS 阶段微分知识的完整图景。熟练运用这些概念并在 AQA 考试风格的应用题中灵活应对,是取得 AS 数学高分的关键。记住,微分的本质是变化率的度量 – 无论题目如何包装,回到这个核心思想就能找到解题的突破口。
Differentiation is one of the most fundamental and important tools in the AS AQA Mathematics course. Starting from the limit definition of the derivative, we derived the Power Rule as the core technique for polynomial differentiation, then mastered tangent and normal equations, second derivatives and concavity analysis, stationary point classification, optimization problem solving, curve sketching, and applications in kinematics. These ten core modules form the complete picture of differentiation knowledge at the AS level. Proficiently applying these concepts and responding flexibly to AQA exam-style application questions are the keys to achieving a high grade in AS Mathematics. Remember, the essence of differentiation is the measurement of rates of change – no matter how the question is packaged, returning to this core idea will reveal the path to the solution.
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导