A-Level数学 微分方程 可分离变量 积分因子

A-Level数学 微分方程 可分离变量 积分因子

1. 什么是微分方程 What is a Differential Equation

A differential equation is an equation that relates a function with its derivatives. Unlike algebraic equations where the unknown is a number, in differential equations the unknown is a function. They are the language in which the laws of nature are expressed : Newton’s laws of motion, Maxwell’s equations of electromagnetism, the Schrodinger equation in quantum mechanics, and the Black-Scholes equation in finance all take the form of differential equations. At A-Level, we focus on first-order and second-order ordinary differential equations (ODEs) and their solution techniques. 微分方程是连接函数与其导数的方程。与代数方程中未知数是数字不同,微分方程中的未知数是函数。它们是表达自然法则的语言:牛顿运动定律、麦克斯韦电磁方程组、量子力学中的薛定谔方程以及金融学中的布莱克-斯科尔斯方程都采用微分方程的形式。在 A-Level 阶段,我们重点学习一阶和二阶常微分方程及其求解方法。

2. 微分方程的分类 Classification of Differential Equations

Differential equations are classified by order (the highest derivative appearing), degree (the power of the highest derivative), and linearity. A first-order ODE involves only the first derivative dy/dx, while a second-order ODE involves d2y/dx2. An equation is linear if the dependent variable y and all its derivatives appear only to the first power and are not multiplied together. For example, dy/dx + 2xy = e^x is linear, but y(dy/dx) + y = 0 is nonlinear because y multiplies its derivative. At A-Level, you will encounter first-order separable equations, first-order linear equations solved via integrating factor, and second-order linear homogeneous equations with constant coefficients. 微分方程按阶数(出现的最高阶导数)、次数(最高阶导数的幂)和线性性质分类。一阶常微分方程只涉及一阶导数 dy/dx,而二阶常微分方程涉及 d2y/dx2。如果因变量 y 及其所有导数仅以一次幂出现且不相互乘除,则该方程是线性的。在 A-Level 中,你会遇到一阶可分离方程、通过积分因子求解的一阶线性方程以及常系数二阶线性齐次方程。

3. 一阶可分离微分方程 First-Order Separable Differential Equations

A differential equation is separable if it can be written in the form dy/dx = g(x)h(y), where the right-hand side is the product of a function of x alone and a function of y alone. The solution method is straightforward: separate the variables so that all y terms are on the left with dy and all x terms are on the right with dx. Then integrate both sides: write (1/h(y)) dy = g(x) dx, and perform the integration to obtain the general solution involving an arbitrary constant C. If an initial condition is given, substitute it to find the particular value of C. 如果微分方程可以写成 dy/dx = g(x)h(y) 的形式,其中右边是仅含 x 的函数与仅含 y 的函数的乘积,则该方程是可分离的。求解方法很简单:分离变量,使所有含 y 的项与 dy 在左边,所有含 x 的项与 dx 在右边。然后两边积分:写出 (1/h(y)) dy = g(x) dx,进行积分得到含任意常数 C 的通解。如果给定了初始条件,则代入求解 C 的具体值。

Worked example: Solve dy/dx = xy given that y = 2 when x = 0. First, separate variables: (1/y) dy = x dx. Integrate both sides: ln|y| = x2/2 + C. Apply initial condition: ln|2| = 0 + C, so C = ln 2. The particular solution is ln|y| = x2/2 + ln 2, which simplifies to y = 2e^(x2/2). This demonstrates the classic pattern: separate, integrate, apply condition. 示例:求解 dy/dx = xy,已知当 x = 0 时 y = 2。首先分离变量:(1/y) dy = x dx。两边积分:ln|y| = x2/2 + C。代入初始条件:ln|2| = 0 + C,所以 C = ln 2。特解为:ln|y| = x2/2 + ln 2,化简得 y = 2e^(x2/2)。这展示了经典模式:分离、积分、代入条件。

4. 积分因子法 The Integrating Factor Method

For a first-order linear differential equation in standard form dy/dx + P(x)y = Q(x), the integrating factor method provides a systematic solution. The integrating factor I(x) is defined as e^(integral of P(x) dx). Multiply both sides of the equation by I(x), and the left-hand side becomes the exact derivative of I(x)y. Specifically, (d/dx)[I(x)y] = I(x)Q(x). Integrate both sides with respect to x, then divide by I(x) to isolate y. 对于标准形式 dy/dx + P(x)y = Q(x) 的一阶线性微分方程,积分因子法提供了系统性的求解方法。积分因子 I(x) 定义为 e^(P(x)的积分)。将方程两边乘以 I(x),左边变成 I(x)y 的精确导数。具体来说,(d/dx)[I(x)y] = I(x)Q(x)。两边对 x 积分,然后除以 I(x) 得到 y。

Worked example: Solve dy/dx + (2/x)y = x3. Here P(x) = 2/x, so the integrating factor is I(x) = e^(integral of 2/x dx) = e^(2 ln|x|) = x2. Multiply throughout by x2: x2(dy/dx) + 2xy = x5. The left side is d/dx[x2y]. Integrate: x2y = integral of x5 dx = x6/6 + C. Therefore y = x4/6 + C/x2. Always check that you have put the equation in standard form before identifying P(x): the coefficient of dy/dx must be 1. 示例:求解 dy/dx + (2/x)y = x3。这里 P(x) = 2/x,所以积分因子 I(x) = e^(积分 2/x dx) = e^(2 ln|x|) = x2。全式乘以 x2:x2(dy/dx) + 2xy = x5。左边是 d/dx[x2y]。积分:x2y = 积分 x5 dx = x6/6 + C。因此 y = x4/6 + C/x2。在确定 P(x) 之前,务必检查方程是否已化为标准形式:dy/dx 的系数必须为 1。

5. 微分方程的应用 Applications of Differential Equations

Differential equations model an enormous range of real-world phenomena. In population dynamics, the exponential growth model dP/dt = kP gives P = P0 e^(kt), describing unrestricted population increase. The logistic model dP/dt = kP(1 – P/M) adds a carrying capacity M, producing S-shaped growth curves that level off as the population approaches M. In Newton’s law of cooling, dT/dt = -k(T – T_ambient) describes how a hot object cools towards room temperature; this is a separable equation yielding exponential decay of the temperature difference. In mechanics, v dv/dx = a (acceleration as a function of displacement) produces separated-variable equations for motion under variable forces. 微分方程模拟了广泛的现实世界现象。在种群动力学中,指数增长模型 dP/dt = kP 给出 P = P0 e^(kt),描述不受限制的种群增长。逻辑斯蒂模型 dP/dt = kP(1 – P/M) 增加了一个环境容纳量 M,产生 S 形增长曲线,当种群接近 M 时趋于平稳。在牛顿冷却定律中,dT/dt = -k(T – T_环境温度) 描述热物体如何冷却至室温;这是一个可分离方程,产生温差呈指数衰减的解。在力学中,v dv/dx = a(加速度作为位移的函数)生成可分离变量方程,用于描述变力作用下的运动。

In radioactive decay, dN/dt = -lambda N leads to the familiar half-life formula N = N0 e^(-lambda t). In electrical circuits, the current in an RC circuit satisfies R(dq/dt) + q/C = E, a first-order linear equation solvable by integrating factor. Finance uses differential equations for compound interest (dA/dt = rA) and option pricing. The unifying theme: whenever a rate of change is proportional to the current value, differential equations provide the mathematical framework for prediction and analysis. 在放射性衰变中,dN/dt = -λ N 导出熟悉的半衰期公式 N = N0 e^(-λ t)。在电路中,RC 电路的电流满足 R(dq/dt) + q/C = E,这是一个可通过积分因子求解的一阶线性方程。金融学使用微分方程计算复利 (dA/dt = rA) 和期权定价。统一主题:当变化率与当前值成正比时,微分方程提供预测和分析的数学框架。

6. 二阶齐次常微分方程 Second-Order Homogeneous ODEs

A second-order linear homogeneous ODE with constant coefficients has the form a(d2y/dx2) + b(dy/dx) + cy = 0, where a, b, c are constants. The solution strategy uses the characteristic (auxiliary) equation am2 + bm + c = 0. The roots m1 and m2 of this quadratic determine the general solution. If the roots are real and distinct, y = A e^(m1 x) + B e^(m2 x). If the roots are real and equal (m1 = m2 = m), y = (A + Bx) e^(mx). If the roots are complex conjugates (m = alpha plus-or-minus i beta), y = e^(alpha x) [A cos(beta x) + B sin(beta x)]. 具有常系数的二阶线性齐次常微分方程形式为 a(d2y/dx2) + b(dy/dx) + cy = 0,其中 a, b, c 为常数。求解策略使用特征(辅助)方程 am2 + bm + c = 0。该二次方程的根 m1 和 m2 决定通解。如果根为实根且不相等,y = A e^(m1 x) + B e^(m2 x)。如果根为实根且相等 (m1 = m2 = m),y = (A + Bx) e^(mx)。如果根为共轭复数 (m = α ± iβ),y = e^(α x) [A cos(β x) + B sin(β x)]。

Worked example: Solve d2y/dx2 – 5(dy/dx) + 6y = 0. The characteristic equation is m2 – 5m + 6 = 0. Factorising gives (m – 2)(m – 3) = 0, so m = 2 and m = 3. These are real and distinct roots. The general solution is y = A e^(2x) + B e^(3x). To find the particular solution, apply boundary conditions (e.g., y(0) = 1, y'(0) = 0) to determine A and B. Second-order ODEs require two arbitrary constants and therefore two boundary conditions or initial conditions. 示例:求解 d2y/dx2 – 5(dy/dx) + 6y = 0。特征方程为 m2 – 5m + 6 = 0。因式分解得 (m – 2)(m – 3) = 0,所以 m = 2 和 m = 3。这是不等的实根。通解为 y = A e^(2x) + B e^(3x)。要求特解,应用边界条件(例如 y(0) = 1, y'(0) = 0)来确定 A 和 B。二阶常微分方程需要两个任意常数,因此需要两个边界条件或初始条件。

7. 精选习题 Worked Examples

Example 1 (Separable): Solve dy/dx = y2 cos(x) with y(0) = 1. Separate: (1/y2) dy = cos(x) dx. Integrate: -1/y = sin(x) + C. Rearranging: y = -1/(sin(x) + C). Apply y(0) = 1: 1 = -1/(0 + C), so C = -1. The solution is y = 1/(1 – sin(x)). Note that the solution is defined only when sin(x) is not equal to 1, because the denominator must be nonzero. 例题1(可分离):求解 dy/dx = y2 cos(x),其中 y(0) = 1。分离变量:(1/y2) dy = cos(x) dx。积分:-1/y = sin(x) + C。整理:y = -1/(sin(x) + C)。代入 y(0) = 1:1 = -1/(0 + C),所以 C = -1。解为 y = 1/(1 – sin(x))。注意该解仅在 sin(x) 不等于 1 时有定义,因为分母不能为零。

Example 2 (Integrating factor): Solve dy/dx + y tan(x) = sec(x) with y(0) = 0. Here P(x) = tan(x). Integrating factor: I(x) = e^(integral tan(x) dx) = e^(ln|sec(x)|) = sec(x). Multiply: sec(x)(dy/dx) + y sec(x)tan(x) = sec2(x). The left side is d/dx[y sec(x)]. Integrate: y sec(x) = integral sec2(x) dx = tan(x) + C. Thus y = sin(x) + C cos(x). Apply y(0) = 0: 0 = 0 + C(1), so C = 0. The solution is y = sin(x). 例题2(积分因子):求解 dy/dx + y tan(x) = sec(x),其中 y(0) = 0。这里 P(x) = tan(x)。积分因子:I(x) = e^(积分 tan(x) dx) = e^(ln|sec(x)|) = sec(x)。两边乘以积分因子:sec(x)(dy/dx) + y sec(x)tan(x) = sec2(x)。左边是 d/dx[y sec(x)]。积分:y sec(x) = 积分 sec2(x) dx = tan(x) + C。因此 y = sin(x) + C cos(x)。代入 y(0) = 0:0 = 0 + C(1),所以 C = 0。解为 y = sin(x)。

8. A-Level 考试技巧 Exam Tips

Always write the differential equation in standard form before identifying the method. For separable equations, check that the function on the right genuinely factorises as g(x)h(y): rewriting f(x,y) = (y cos x)/x as (cos x)/x times y confirms separability. For the integrating factor method, ensure the coefficient of dy/dx is exactly 1 before extracting P(x): if the equation is given as x(dy/dx) + 2y = x3, first divide through by x to get dy/dx + (2/x)y = x2. When integrating to find the integrating factor, you may omit the constant of integration because any antiderivative yields an equivalent integrating factor. 在确定求解方法之前,务必先将微分方程写成标准形式。对于可分离方程,检查右边函数是否确实可以分解为 g(x)h(y):将 f(x,y) = (y cos x)/x 改写为 (cos x)/x 乘以 y 即可确认其可分离性。对于积分因子法,确保 dy/dx 的系数恰好为 1 后再提取 P(x):如果方程以 x(dy/dx) + 2y = x3 给出,则先全式除以 x 得到 dy/dx + (2/x)y = x2。在积分求积分因子时,可以省略积分常数,因为任何原函数都会给出等价的积分因子。

For second-order ODEs, memorise the three cases of the characteristic equation. To distinguish between the real-and-distinct case and the repeated-root case, compute the discriminant b2 – 4ac: positive gives distinct real roots, zero gives repeated root, negative gives complex conjugates. In the exam, show clearly the characteristic equation, its roots, and which case applies before writing the general solution. Many marks are lost when students jump straight to the final answer without justifying the form of the solution. 对于二阶常微分方程,牢记特征方程的三种情况。要区分不等实根和重根情况,计算判别式 b2 – 4ac:正值为不等实根,零为重根,负值为共轭复数。考试中要清晰展示特征方程、其根以及适用哪种情况,然后再写出通解。许多失分来自学生直接跳到最终答案而没有为解的形式提供依据。

9. 总结 Summary

Differential equations are a cornerstone of applied mathematics, bridging pure calculus with real-world modelling. The three core A-Level techniques : separation of variables for dy/dx = g(x)h(y), the integrating factor for dy/dx + P(x)y = Q(x), and the characteristic equation for second-order homogeneous ODEs : cover a remarkably broad class of problems. The key to mastery is systematic practice: always check the form first, decide which technique applies, and proceed methodically through separation/integration or finding the auxiliary equation. 微分方程是应用数学的基石,连接着纯微积分与现实世界建模。A-Level 的三种核心技术:用于 dy/dx = g(x)h(y) 的分离变量法、用于 dy/dx + P(x)y = Q(x) 的积分因子法以及用于二阶齐次常微分方程的特征方程法:覆盖了极其广泛的问题类型。掌握的关键在于系统练习:始终先检查形式,判断适用哪种方法,然后有条不紊地进行分离积分或求解辅助方程。

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 aleveler.com

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

Continue reading