📚 Taylor Series | 泰勒级数
Taylor series might seem like an advanced topic well beyond the GCSE syllabus, but understanding its core idea can deepen your appreciation of how functions can be expressed as infinite sums. In fact, some GCSE questions on binomial expansions are a first encounter with series approximations. This article breaks down the key concepts of Taylor series, from the formula to practical examples, all explained in a friendly way.
泰勒级数看上去像是远超 GCSE 考纲的高阶内容,但理解它的核心思想可以让你更深刻地体会函数如何用无穷多项相加来表示。事实上,GCSE 中一些二项式展开的题目正是级数近似的初次接触。本文将以通俗易懂的方式,为你拆解泰勒级数的核心知识点,从公式到实例一网打尽。
1. What is a Taylor Series? | 什么是泰勒级数?
A Taylor series is a representation of a smooth function as an infinite sum of terms calculated from the function’s derivatives at a single point. If you take a function like eˣ, sin x, or cos x, you can write it as a polynomial of infinite degree. This is extremely useful because polynomials are easy to compute, differentiate, and integrate.
泰勒级数是将一个光滑函数表示为一个无穷和的形式,这个和的每一项都是由该函数在某一点的各阶导数计算得出。如果你有一个函数如 eˣ、sin x 或 cos x,就可以把它写成一个无穷次的多项式。这非常有用,因为多项式容易计算、求导和积分。
2. The General Formula | 通式
The Taylor series of a function f(x) about a point x = a is:
f(x) = f(a) + f'(a)(x – a) + f”(a)(x – a)² / 2! + f”'(a)(x – a)³ / 3! + … + f⁽ⁿ⁾(a)(x – a)ⁿ / n! + …
In compact notation, f(x) = Σ (f⁽ⁿ⁾(a) / n!) (x – a)ⁿ, from n=0 to ∞, where f⁽⁰⁾(a) = f(a).
函数 f(x) 在点 x = a 处的泰勒级数为:
f(x) = f(a) + f'(a)(x – a) + f”(a)(x – a)² / 2! + f”'(a)(x – a)³ / 3! + … + f⁽ⁿ⁾(a)(x – a)ⁿ / n! + …
用求和符号表示为 f(x) = Σ (f⁽ⁿ⁾(a) / n!) (x – a)ⁿ,n 从 0 到 ∞,其中 f⁽⁰⁾(a) = f(a)。
3. Maclaurin Series as a Special Case | 特殊情况:麦克劳林级数
When a = 0, the Taylor series simplifies to the Maclaurin series: f(x) = f(0) + f'(0)x + f”(0)x²/2! + f”'(0)x³/3! + … This special case is often used because evaluating derivatives at zero is simpler. Many common functions have elegant Maclaurin series.
当 a = 0 时,泰勒级数简化为麦克劳林级数:f(x) = f(0) + f'(0)x + f”(0)x²/2! + f”'(0)x³/3! + … 这种特殊情况十分常用,因为在零点求导数值更简单。许多常见函数都有着优美的麦克劳林级数。
4. Deriving eˣ Series | eˣ 级数推导
For f(x) = eˣ, all derivatives are eˣ, so f⁽ⁿ⁾(0) = 1 for every n. Plugging into the Maclaurin formula: eˣ = 1 + x + x²/2! + x³/3! + x⁴/4! + … This series converges for all real x. With just the first few terms, you can approximate e¹ as 2.5, 2.666…, 2.70833… getting closer to e ≈ 2.71828.
对于 f(x) = eˣ,它的所有阶导数都是 eˣ,因此 f⁽ⁿ⁾(0) = 1 对一切 n 成立。代入麦克劳林公式得到:eˣ = 1 + x + x²/2! + x³/3! + x⁴/4! + … 这个级数对所有实数 x 都收敛。即使只用前几项,就能将 e¹ 近似为 2.5, 2.666…, 2.70833… 逐步逼近 e ≈ 2.71828。
5. Deriving sin x and cos x Series | sin x 和 cos x 的级数
For sin x: f(0)=0, f'(0)=1, f”(0)=0, f”'(0)=-1, repeating every four derivatives. The Maclaurin series is sin x = x – x³/3! + x⁵/5! – x⁷/7! + … For cos x: cos x = 1 – x²/2! + x⁴/4! – x⁶/6! + … Notice the alternating signs and that sin x uses only odd powers while cos x uses even powers.
对于 sin x:f(0)=0, f'(0)=1, f”(0)=0, f”'(0)=-1,每四次求导循环一次。麦克劳林级数为 sin x = x – x³/3! + x⁵/5! – x⁷/7! + … 对于 cos x:cos x = 1 – x²/2! + x⁴/4! – x⁶/6! + … 注意正负交替,以及 sin x 只含奇次幂,cos x 只含偶次幂的特点。
6. Approximating Functions | 用级数逼近函数
A Taylor series lets you replace a complicated function with a simple polynomial, especially near x = a. For instance, near x = 0, eˣ ≈ 1 + x + x²/2 gives a quadratic approximation. The more terms you include, the better the approximation over a wider interval. This idea is used inside calculators to compute values of exponentials, trig functions, and logarithms.
泰勒级数可以把一个复杂的函数替换为简单的多项式,尤其是在 x = a 附近。例如,在 x = 0 附近,eˣ ≈ 1 + x + x²/2 就是一个二次近似。包含的项数越多,在更宽区间内的近似效果就越好。计算器在计算指数、三角函数和对数值时,正是运用了这一思想。
7. Taylor Polynomials and Remainder | 泰勒多项式与余项
If we stop after the n-th term, we obtain a Taylor polynomial Tₙ(x) that approximates f(x). The error is given by the remainder term Rₙ(x). Lagrange’s form of the remainder states there exists a number c between a and x such that Rₙ(x) = f⁽ⁿ⁺¹⁾(c)(x – a)ⁿ⁺¹ / (n+1)!. Understanding the remainder helps guarantee the accuracy of an approximation.
如果在第 n 项后停止,就得到一个泰勒多项式 Tₙ(x) 来近似 f(x)。误差由余项 Rₙ(x) 给出。拉格朗日余项告诉我们,在 a 和 x 之间存在某个数 c,使得 Rₙ(x) = f⁽ⁿ⁺¹⁾(c)(x – a)ⁿ⁺¹ / (n+1)! 。理解余项有助于保证近似计算的精度。
8. Applications in Physics and Engineering | 在物理和工程中的应用
Taylor series appear everywhere in applied mathematics. In physics, the period of a simple pendulum is approximated using a series for sin θ. In engineering, linearizing a nonlinear system around an equilibrium uses the first-order Taylor expansion. Even the famous equation E = mc² arises from a series expansion of relativistic energy when velocity is small compared to light speed.
泰勒级数在应用数学中无处不在。物理学中,单摆周期的近似就用到了 sin θ 的级数展开。在工程中,将非线性系统在平衡点附近线性化,就用了一阶泰勒展开。甚至著名的质能方程 E = mc² 也是在速度远小于光速时,对相对论能量进行级数展开而得到的。
9. Practical Example: Approximating √(1+x) | 实例:近似计算 √(1+x)
Let’s find the Maclaurin series for f(x) = √(1+x). We have f(0)=1, f'(x)=1/(2√(1+x)) so f'(0)=1/2, f”(x)=-1/(4(1+x)^(3/2)) so f”(0)=-1/4. Then √(1+x) ≈ 1 + (1/2)x – (1/8)x² + … To quickly estimate √1.1, set x=0.1: 1 + 0.05 – 0.00125 = 1.04875, which is very close to the true value ≈ 1.04881.
我们来求 f(x) = √(1+x) 的麦克劳林级数。f(0)=1,f'(x)=1/(2√(1+x)),故 f'(0)=1/2;f”(x)=-1/(4(1+x)^(3/2)),故 f”(0)=-1/4。于是 √(1+x) ≈ 1 + (1/2)x – (1/8)x² + … 要快速估算 √1.1,令 x=0.1:1 + 0.05 – 0.00125 = 1.04875,与真实值 ≈ 1.04881 非常接近。
10. Common Mistakes and Tips | 常见错误与技巧
Students often forget the factorial denominators or miscompute derivatives at the centre a. Always double-check the pattern of derivatives before building the series. Another pitfall is assuming the series works for all x; the radius of convergence must be considered. For GCSE extension, focus on correctly obtaining the first few terms and understanding the pattern.
同学们常常忘记分母中的阶乘,或者在 a 点求导数时算错。在构造级数前,一定要反复核对导数的规律。另一个误区是认为级数对所有 x 都成立,必须考虑收敛半径。对于 GCSE 拓展学习,重点在于正确求出前几项并理解其规律。
11. Taylor Series vs Binomial Expansion | 泰勒级数与二项式展开对比
You might have used the binomial expansion for (1+x)ⁿ where n is rational. That expansion is actually the Maclaurin series of (1+x)ⁿ. For example, (1+x)⁻¹ = 1 – x + x² – x³ + … is the geometric series, which matches the Taylor series at a=0. So the binomial theorem is a special case of the Taylor series.
你可能已经使用过有理指数 n 的二项式展开 (1+x)ⁿ。那个展开实际上就是 (1+x)ⁿ 的麦克劳林级数。例如,(1+x)⁻¹ = 1 – x + x² – x³ + … 正是几何级数,与 a=0 处的泰勒级数一致。因此二项式定理是泰勒级数的一个特例。
12. Why Study Taylor Series? | 为什么学习泰勒级数?
Even if it is not on your GCSE exam, Taylor series illuminates why calculus works and how mathematics models the real world. It connects algebra, differentiation, and infinite series in one beautiful idea. Seeing these concepts early prepares you for A-Level maths and beyond, fostering a deeper mathematical curiosity.
即使泰勒级数不在 GCSE 考试中出现,它仍能说明微积分的原理,以及数学如何模拟现实世界。它将代数、微分和无穷级数融为一个优美的整体。尽早接触这些思想,能为 A-Level 及更高层次的学习做好准备,并培养更深层的数学好奇心。
Published by TutorHao | Mathematics Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导