A-Level数学部分分式分解与积分应用

A-Level数学部分分式分解与积分应用

在A-Level数学(Pure Mathematics 3)的代数与微积分模块中,部分分式(Partial Fractions)是一项承上启下的关键技术。它不仅是多项式有理函数的化简工具,更是后续求解复杂积分、解微分方程以及拉普拉斯变换的基础。许多学生初次接触时觉得这只是机械的代数操作,但深入理解后会发现,它本质上是将复杂有理函数”拆解”为基本积木块的系统方法。本文将系统梳理从线性分母到二次不可约因子的完整分解体系,并结合典型例题展示部分分式在积分计算中的实际威力。

In A-Level Mathematics (Pure Mathematics 3), Partial Fractions stand as a pivotal technique bridging algebra and calculus. More than just a rational function decomposition tool, they form the essential foundation for solving complex integrals, differential equations, and Laplace transforms. Many students initially dismiss this as mere mechanical algebra, but deeper understanding reveals it as a systematic method for breaking complex rational functions into elementary building blocks. This guide systematically covers the complete decomposition framework — from linear denominators to irreducible quadratic factors — and demonstrates their practical power in integration through worked examples.


一、线性分母的部分分式分解 | Linear Denominator Decomposition

考虑最基础的形如 (px+q)/((x+a)(x+b)) 的有理函数,其中分母可以分解为两个不同的线性因子。设待定系数 A 和 B,使得原式 = A/(x+a) + B/(x+b)。将等式两边同时乘以 (x+a)(x+b) 后得到恒等式 px+q = A(x+b) + B(x+a)。通过代入两个巧妙的 x 值 — x = -a 和 x = -b — 可以直接消去一个未知数,快速求得系数。这种”覆盖法”(Cover-Up Method)极大地减少了代数运算量,是考场上最推荐的求解策略。其原理可以这样理解:在原分式 (px+q)/((x+a)(x+b)) 中,如果想求 A,只需”覆盖”分母中的 (x+a) 因子,然后将 x=-a 代入剩余表达式中即可。同理,覆盖 (x+b) 代入 x=-b 可得 B。

Consider the fundamental form (px+q)/((x+a)(x+b)) where the denominator splits into two distinct linear factors. Assign unknown coefficients A and B such that the fraction equals A/(x+a) + B/(x+b). Multiplying both sides by (x+a)(x+b) yields the identity px+q = A(x+b) + B(x+a). By substituting two clever values — x = -a and x = -b — one unknown cancels out immediately, giving the coefficients directly. This “Cover-Up Method” drastically reduces algebraic manipulation and is the most recommended strategy in exam conditions. The principle works as follows: in the original fraction (px+q)/((x+a)(x+b)), to find A, “cover up” the (x+a) factor in the denominator and substitute x=-a into the remaining expression. Similarly, cover (x+b) and substitute x=-b to get B.

以具体例子说明:将 (5x+1)/((x-1)(x+2)) 分解为部分分式。设 (5x+1)/((x-1)(x+2)) = A/(x-1) + B/(x+2)。分子通分后得 5x+1 = A(x+2) + B(x-1)。代入 x=1 得 6 = 3A,故 A=2;代入 x=-2 得 -9 = -3B,故 B=3。最终结果为 2/(x-1) + 3/(x+2)。这个过程几乎不需要解方程组,效率极高。再举一例:(3x+8)/((x+1)(x+3))。覆盖法:A = (3(-1)+8)/((-1)+3) = 5/2;B = (3(-3)+8)/((-3)+1) = (-1)/(-2) = 1/2。因此分解为 (5/2)/(x+1) + (1/2)/(x+3)。可以看出,覆盖法对于简单线性因子的分解几乎是”秒出”答案的。

Let us demonstrate with a worked example: decompose (5x+1)/((x-1)(x+2)). Set (5x+1)/((x-1)(x+2)) = A/(x-1) + B/(x+2). Clearing denominators gives 5x+1 = A(x+2) + B(x-1). Substitute x=1: 6 = 3A, so A=2. Substitute x=-2: -9 = -3B, so B=3. The final result: 2/(x-1) + 3/(x+2). This process barely requires solving any system of equations — it is extremely efficient. Another example: (3x+8)/((x+1)(x+3)). Cover-up method: A = (3(-1)+8)/((-1)+3) = 5/2; B = (3(-3)+8)/((-3)+1) = (-1)/(-2) = 1/2. Thus the decomposition is (5/2)/(x+1) + (1/2)/(x+3). As you can see, the cover-up method produces answers almost instantly for simple linear factors.


二、假分式与多项式长除法 | Improper Fractions and Long Division

在进行部分分式分解之前,必须首先检查有理函数是否为真分式,即分子的次数是否严格小于分母的次数。如果分子次数大于等于分母次数,该分式称为假分式,必须先用多项式长除法将其拆分为”多项式 + 真分式”的形式。例如 (x^3+2x^2+1)/(x^2+x) 中,分子三次、分母二次,明显是假分式。长除法:x^3+2x^2+1 除以 x^2+x,商为 x+1,余数为 -x+1。因此原式 = (x+1) + (-x+1)/(x^2+x) = x+1 + (-x+1)/(x(x+1))。然后再对真分式部分进行标准的线性因子部分分式分解。这一步是许多学生在考卷上丢分的盲区 — 直接对假分式设待定系数,结果自然错误。

Before performing partial fraction decomposition, you must first check whether the rational function is proper — that is, whether the numerator degree is strictly less than the denominator degree. If the numerator degree is greater than or equal to the denominator degree, the fraction is improper and must first be split into “polynomial + proper fraction” via polynomial long division. For example, in (x^3+2x^2+1)/(x^2+x), the numerator is degree 3 and the denominator is degree 2 — clearly improper. Long division: divide x^3+2x^2+1 by x^2+x, giving quotient x+1 and remainder -x+1. Thus the original equals (x+1) + (-x+1)/(x^2+x) = x+1 + (-x+1)/(x(x+1)). Only then apply standard linear-factor partial fraction decomposition to the proper fraction part. This step is a common blind spot where students lose marks — directly assigning unknown coefficients to an improper fraction naturally produces wrong answers.


三、重复线性因子的处理 | Repeated Linear Factors

当分母包含 (x+a) 的平方或更高次幂时,部分分式的结构需要升级。对于因子 (x+a)^n,必须包含一连串分数项:A1/(x+a) + A2/(x+a)^2 + … + An/(x+a)^n。以 (2x+3)/((x+1)^2) 为例,设其等于 A/(x+1) + B/(x+1)^2。通分得 2x+3 = A(x+1) + B。代入 x=-1 可直接得 B = 1。然后比较 x 项的系数:左边系数为 2,右边为 A,所以 A = 2。最终分解为 2/(x+1) + 1/(x+1)^2。注意,绝不能写成 A/(x+1) + B/(x+1) 的形式 — 缺少 B/(x+1)^2 项会导致系统不完整,无法正确表示原分式。

When the denominator contains (x+a) squared or raised to higher powers, the partial fraction structure must be upgraded. For a factor (x+a)^n, you must include a chain of terms: A1/(x+a) + A2/(x+a)^2 + … + An/(x+a)^n. Consider (2x+3)/((x+1)^2). Set it equal to A/(x+1) + B/(x+1)^2. Clearing denominators gives 2x+3 = A(x+1) + B. Substituting x=-1 immediately yields B = 1. Then compare coefficients of x: left side coefficient is 2, right side is A, so A = 2. The final decomposition is 2/(x+1) + 1/(x+1)^2. Note: you must NOT write just A/(x+1) + B/(x+1) — omitting the B/(x+1)^2 term makes the system incomplete and unable to correctly represent the original fraction.

更复杂的情况如 (x^2+1)/((x-2)(x+1)^2),包含一个单根和一个重根。设其 = A/(x-2) + B/(x+1) + C/(x+1)^2。通分合并同类项后得到 x^2+1 = A(x+1)^2 + B(x-2)(x+1) + C(x-2)。通过三个方程(两个代入法 + 一个系数比较)求解 A=1/2、B=1/2、C=-1,最终分解为 (1/2)/(x-2) + (1/2)/(x+1) – 1/(x+1)^2。这类题目在爱德思(Edexcel)和剑桥(CAIE)的P3试卷中反复出现,务必熟练掌握。

A more complex case: (x^2+1)/((x-2)(x+1)^2), featuring one simple root and one repeated root. Set = A/(x-2) + B/(x+1) + C/(x+1)^2. Clearing denominators and collecting like terms yields x^2+1 = A(x+1)^2 + B(x-2)(x+1) + C(x-2). Solving three equations (two substitutions + one coefficient comparison) gives A=1/2, B=1/2, C=-1. Final decomposition: (1/2)/(x-2) + (1/2)/(x+1) – 1/(x+1)^2. These problems appear repeatedly in Edexcel and CAIE P3 papers — master them thoroughly.


四、二次不可约因子的分解 | Irreducible Quadratic Factors

当分母包含判别式小于零的二次式(如 x^2+1 或 x^2+x+1)时,对应的部分分式分子应设为 Ax+B 而不是单纯的常数。例如 (3x-1)/((x^2+1)(x-2)),设其为 (Ax+B)/(x^2+1) + C/(x-2)。通分得 3x-1 = (Ax+B)(x-2) + C(x^2+1)。展开整理:3x-1 = Ax^2-2Ax+Bx-2B + Cx^2+C = (A+C)x^2 + (-2A+B)x + (-2B+C)。比较系数建立三个方程:x^2: A+C=0;x: -2A+B=3;常数: -2B+C=-1。解得 A=2, B=7, C=-2。最终结果为 (2x+7)/(x^2+1) – 2/(x-2)。关键点在于二次不可约因子的分子必须是 Ax+B,单独一个常数 A 是不够的。

When the denominator contains a quadratic with negative discriminant (e.g. x^2+1 or x^2+x+1), the corresponding partial fraction numerator must be Ax+B rather than a single constant. For example, (3x-1)/((x^2+1)(x-2)) decomposes as (Ax+B)/(x^2+1) + C/(x-2). Clearing denominators: 3x-1 = (Ax+B)(x-2) + C(x^2+1). Expand and collect: 3x-1 = (A+C)x^2 + (-2A+B)x + (-2B+C). Equating coefficients gives three equations: x^2: A+C=0; x: -2A+B=3; constant: -2B+C=-1. Solving yields A=2, B=7, C=-2. Final result: (2x+7)/(x^2+1) – 2/(x-2). The key point: the numerator over an irreducible quadratic must be Ax+B — a single constant A is insufficient.

需要注意的是,有些看似复杂的二次式实则可以分解。例如 x^2-4 显然是 (x-2)(x+2),属于普通的线性因子情况,不需要 Ax+B 形式。判别式 b^2-4ac 是判断关键:大于零即可分解为线性因子,小于零才需要分子含 x 项。这一概念在CIE考试中常以”已知二次式不可约”的形式隐含给出,考生需敏锐识别。

Note that some apparently complex quadratics are actually factorable. For instance, x^2-4 is clearly (x-2)(x+2) — an ordinary linear factor case that doesn’t need the Ax+B form. The discriminant b^2-4ac is the key judge: if positive, the quadratic factors into linears; if negative, a numerator containing an x-term is required. CIE exams often signal this implicitly with phrases like “given that the quadratic is irreducible” — candidates must recognize this cue sharply.


五、部分分式在积分中的应用 | Integration Using Partial Fractions

部分分式的最大实战价值在于积分计算。形如 ∫(5x+1)/((x-1)(x+2))dx 的有理函数积分,直接处理几乎不可能,但分解为 ∫2/(x-1)dx + ∫3/(x+2)dx 后,每一项都是标准的自然对数形式:2ln|x-1| + 3ln|x+2| + C。这就是部分分式将”不可积”变为”可积”的核心逻辑。在A-Level考试中,典型的P3试卷至少包含一道需要先用部分分式分解再积分的题目,分值通常在6到8分之间。

The greatest practical value of partial fractions lies in integration. A rational function like ∫(5x+1)/((x-1)(x+2))dx is nearly impossible to handle directly, but after decomposing into ∫2/(x-1)dx + ∫3/(x+2)dx, each term becomes a standard natural logarithm: 2ln|x-1| + 3ln|x+2| + C. This is the core logic of how partial fractions transform “unintegrable” into “integrable”. In A-Level exams, a typical P3 paper contains at least one question requiring partial fraction decomposition followed by integration, usually worth 6 to 8 marks.

对于包含二次不可约因子的积分,情况稍复杂。以 ∫(2x+7)/(x^2+1)dx 为例,可将其拆分为 ∫2x/(x^2+1)dx + ∫7/(x^2+1)dx。前者用代换法 u=x^2+1,得到 ln(x^2+1);后者是标准反三角函数 arctan x 的积分,得 7arctan x。完整结果为 ln(x^2+1) + 7arctan x + C。这种”分子拆分+代换+反三角”的组合技是P3考试的高频考点,建议重点练习。

For integrals containing irreducible quadratics, the situation is slightly more complex. Take ∫(2x+7)/(x^2+1)dx. Split into ∫2x/(x^2+1)dx + ∫7/(x^2+1)dx. The first uses substitution u=x^2+1, yielding ln(x^2+1); the second is the standard arctan integral, giving 7arctan x. The complete result: ln(x^2+1) + 7arctan x + C. This “numerator-split + substitution + inverse trig” combination is a high-frequency P3 exam topic — practice it extensively.

含重复因子的积分也值得关注。∫(2x+3)/((x+1)^2)dx = ∫2/(x+1)dx + ∫1/(x+1)^2dx = 2ln|x+1| – 1/(x+1) + C。注意第二项的积分结果不是对数,而是幂函数的负一次方。这种细微差别在考试改卷中常被扣分,因为学生习惯性地以为所有分母积分都是 ln 形式。一个实用技巧是:积分前快速回忆一遍 ∫x^n dx = x^(n+1)/(n+1) + C(n ≠ -1),而 n=-1 的特殊情况才是 ln|x|。

Integrals with repeated factors also deserve attention. ∫(2x+3)/((x+1)^2)dx = ∫2/(x+1)dx + ∫1/(x+1)^2dx = 2ln|x+1| – 1/(x+1) + C. Note the second integral is NOT a logarithm but a negative power — a subtle distinction that frequently loses marks because students habitually assume all denominator integrals are ln forms. A practical tip: before integrating, quickly recall ∫x^n dx = x^(n+1)/(n+1) + C (n ≠ -1), with n=-1 as the special case giving ln|x|.


六、学习建议与考试技巧 | Study Tips and Exam Strategies

部分分式的学习需要循序渐进。建议从单根线性因子开始,通过十个左右的基础题建立起”覆盖法”的肌肉记忆;然后依次攻克假分式识别与长除法、重根情形和二次不可约因子。每学完一个类型就做五道对应的真题,不跳步、不混练。爱德思教材Exercise 1D至1F是绝佳的练习材料,剑桥考生则可使用历年P3真题进行分类专练。最后一定要把部分分式与积分结合起来练 — 考试时这两者几乎从不单独出现。制定一个两周学习计划:第一周专攻代数分解(每天一种类型),第二周专注积分组合(每天3-4道综合题),效果最为显著。

Learning partial fractions requires a progressive approach. Start with simple linear factors — build up “Cover-Up Method” muscle memory with about ten basic problems. Then tackle improper fraction identification with long division, repeated roots, and irreducible quadratics in sequence. After each type, practice five corresponding past paper questions without skipping or mixing. Edexcel’s Exercise 1D through 1F provide excellent practice material; Cambridge candidates should use classified P3 past paper collections. Crucially, always practice partial fractions together with integration — these two almost never appear in isolation on exams. A two-week study plan works best: week one focuses on algebraic decomposition (one type per day), week two on integration combinations (3-4 comprehensive problems daily).

考试中常见的陷阱包括:(1) 忘记检查假分式(即分子次数大于等于分母次数),此时需先做多项式长除法;(2) 重复因子中漏掉低次项;(3) 积分时将 1/(x+1)^2 误积为 ln 形式;(4) 忘记加积分常数 +C;(5) 二次不可约因子时分子只写常数而不写 Ax+B。建议在试卷空白处写一个快速检查清单:Long Division? → Correct Form? → Coefficients? → Log vs Power? → +C?养成习惯后,这些低级错误将大幅减少。对于即将参加A-Level考试的学生,建议将2019年至今的所有P3真题中涉及部分分式的题目单独整理成册,反复练习。

Common exam pitfalls include: (1) forgetting to check for improper fractions where the numerator degree equals or exceeds the denominator — long division must be done first; (2) missing lower-power terms in repeated factor decompositions; (3) mistakenly integrating 1/(x+1)^2 as ln form; (4) forgetting the constant of integration +C; (5) writing only a constant numerator over an irreducible quadratic instead of Ax+B. Keep a quick mental checklist in the margin: Long Division? → Correct Form? → Coefficients? → Log vs Power? → +C? Once habitual, these careless errors diminish dramatically. For students approaching their A-Level exams, compile all P3 past paper questions involving partial fractions from 2019 onward into a dedicated practice set and work through them repeatedly.


📞 咨询:16621398022(同微信) | 公众号:tutorhao


Discover more from TutorHao

Subscribe to get the latest posts sent to your email.

Comments

屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from TutorHao

Subscribe now to keep reading and get access to the full archive.

Continue reading