📚 Differential Equations: Concepts and Structure of Solutions | 微分方程:概念与解的结构
A differential equation is a mathematical equation that relates a function to its derivatives. It describes how a quantity changes in relation to another variable, making it one of the most powerful tools for modelling real-world phenomena in physics, biology, economics and engineering.
微分方程是联系函数与其导数的数学方程。它描述了一个量如何随另一个变量变化,因此它成为物理、生物、经济与工程中模拟现实世界现象最有力的工具之一。
1. What Is a Differential Equation? | 什么是微分方程
A differential equation is an equation that involves an unknown function and one or more of its derivatives. For example, \(\frac{dy}{dx} = 2x\) is a simple first-order differential equation, while \(\frac{d^2y}{dx^2} + y = 0\) is a second-order equation.
微分方程是含有未知函数及其一个或多个导数的方程。例如,\(\frac{dy}{dx} = 2x\) 是一个简单的一阶微分方程,而 \(\frac{d^2y}{dx^2} + y = 0\) 是一个二阶方程。
We usually write a differential equation using \(y\) as the dependent variable and \(x\) as the independent variable. The goal is to find a function \(y(x)\) that satisfies the equation.
通常我们用 \(y\) 表示因变量,\(x\) 表示自变量。目标是找到满足方程的函数 \(y(x)\)。
2. Order and Degree | 阶数与次数
The order of a differential equation is the highest order of the derivative that appears in the equation. For instance, \(\frac{dy}{dx} + y = 0\) is first order, and \(\frac{d^2y}{dx^2} + \frac{dy}{dx} = \sin x\) is second order.
微分方程的阶数是方程中出现的最高阶导数。例如,\(\frac{dy}{dx} + y = 0\) 是一阶,\(\frac{d^2y}{dx^2} + \frac{dy}{dx} = \sin x\) 是二阶。
The degree of a differential equation is the power of the highest-order derivative, provided the equation is polynomial in the derivatives. For example, \((y’)^2 + 3y = 0\) has degree 2, because the highest derivative \(y’\) is raised to the power 2.
微分方程的次数是最高阶导数的幂次,前提是方程关于导数是多项式形式。例如,\((y’)^2 + 3y = 0\) 的次数是 2,因为最高阶导数 \(y’\) 的幂次为 2。
3. Linear vs Nonlinear Differential Equations | 线性与非线性微分方程
A differential equation is linear if the dependent variable and all its derivatives appear to the first power and there are no products of the dependent variable with itself or its derivatives. The general form of a first-order linear differential equation is:
若微分方程中因变量及其所有导数都是一次幂,且没有因变量与其自身或导数相乘,则称该方程为线性微分方程。一阶线性微分方程的一般形式为:
\(\frac{dy}{dx} + P(x)y = Q(x)\)
If \(Q(x) = 0\), the equation is homogeneous; otherwise it is non-homogeneous. Nonlinear equations often involve terms like \(y^2\), \(\sin y\), or \(yy’\).
若 \(Q(x) = 0\),方程为齐次的;否则为非齐次。非线性方程常包含 \(y^2\)、\(\sin y\) 或 \(yy’\) 等项。
4. General and Particular Solutions | 通解与特解
A general solution of a first-order differential equation contains an arbitrary constant, \(C\), because the process of integration introduces one constant. For example, all solutions of \(\frac{dy}{dx} = 2x\) are given by \(y = x^2 + C\).
一阶微分方程的通解含有一个任意常数 \(C\),因为积分过程会引入一个常数。例如,\(\frac{dy}{dx} = 2x\) 的所有解为 \(y = x^2 + C\)。
A particular solution is obtained by assigning a specific value to \(C\), often using an extra condition. For the same equation, if \(y(1) = 3\), then \(1 + C = 3\), so \(C = 2\) and the particular solution is \(y = x^2 + 2\).
特解是给 \(C\) 赋予特定值后得到的解,通常通过额外条件来确定。对同一个方程,若 \(y(1) = 3\),则 \(1 + C = 3\),所以 \(C = 2\),特解为 \(y = x^2 + 2\)。
5. Initial Value Problems | 初值问题
An initial value problem (IVP) consists of a differential equation together with an initial condition of the form \(y(x_0) = y_0\). The solution of an IVP is a particular solution that satisfies the given condition.
初值问题由一个微分方程和形如 \(y(x_0) = y_0\) 的初始条件组成。初值问题的解就是满足给定条件的特解。
For example, solve \(\frac{dy}{dx} = 3x^2\) with \(y(0) = 5\). Integrating gives \(y = x^3 + C\), and using the condition gives \(5 = 0 + C\), so \(y = x^3 + 5\).
例如,求解 \(\frac{dy}{dx} = 3x^2\) 且 \(y(0) = 5\)。积分得 \(y = x^3 + C\),代入条件得 \(5 = 0 + C\),所以 \(y = x^3 + 5\)。
6. Separation of Variables | 分离变量法
The simplest class of first-order differential equations are separable equations, which can be written in the form \(\frac{dy}{dx} = g(x)h(y)\). To solve, we separate the variables:
最简单的一阶微分方程类型是可分离变量方程,可写成 \(\frac{dy}{dx} = g(x)h(y)\)。求解时我们分离变量:
\(\frac{1}{h(y)} \, dy = g(x) \, dx\)
Then integrate both sides. For example, \(\frac{dy}{dx} = \frac{x}{y}\). Rewriting: \(y\,dy = x\,dx\). Integrating both sides gives \(\frac{y^2}{2} = \frac{x^2}{2} + C\), so \(y^2 – x^2 = C\).
然后两边积分。例如,\(\frac{dy}{dx} = \frac{x}{y}\)。改写为 \(y\,dy = x\,dx\)。两边积分得 \(\frac{y^2}{2} = \frac{x^2}{2} + C\),所以 \(y^2 – x^2 = C\)。
7. First-Order Linear Equations and Integrating Factor | 一阶线性微分方程与积分因子
For a first-order linear differential equation in the standard form \(\frac{dy}{dx} + P(x)y = Q(x)\), we use an integrating factor defined by:
对于标准形式 \(\frac{dy}{dx} + P(x)y = Q(x)\) 的一阶线性微分方程,我们使用积分因子:
\(I(x) = e^{\int P(x)\,dx}\)
Multiplying both sides of the equation by \(I(x)\) makes the left side a perfect derivative:
将方程两边乘以 \(I(x)\),使左边成为完全导数:
\(\frac{d}{dx}\left(I(x)y\right) = I(x)Q(x)\)
Then integrate both sides and solve for \(y\). As an example, solve \(\frac{dy}{dx} + 2y = e^{3x}\). Here \(P(x)=2\), so \(I(x)=e^{2x}\). Multiplying: \((e^{2x}y)’ = e^{5x}\). Integrating: \(e^{2x}y = \frac{1}{5}e^{5x} + C\), so \(y = \frac{1}{5}e^{3x} + Ce^{-2x}\).
然后两边积分并解出 \(y\)。例如,求解 \(\frac{dy}{dx} + 2y = e^{3x}\)。这里 \(P(x)=2\),所以 \(I(x)=e^{2x}\)。两边乘以 \(I(x)\):\((e^{2x}y)’ = e^{5x}\)。积分:\(e^{2x}y = \frac{1}{5}e^{5x} + C\),所以 \(y = \frac{1}{5}e^{3x} + Ce^{-2x}\)。
8. Structure of Linear Differential Equations: Superposition | 线性微分方程解的结构:叠加原理
For a homogeneous linear differential equation, any linear combination of two solutions is also a solution. This is called the superposition principle. For example, if \(y_1\) and \(y_2\) are solutions of \(y” + y = 0\), then \(c_1y_1 + c_2y_2\) is also a solution for any constants \(c_1\) and \(c_2\).
对于齐次线性微分方程,任意两个解的线性组合仍是解。这称为叠加原理。例如,若 \(y_1\) 和 \(y_2\) 都是 \(y” + y = 0\) 的解,则对任意常数 \(c_1\) 和 \(c_2\),\(c_1y_1 + c_2y_2\) 也是解。
For a non-homogeneous equation \(L[y] = f(x)\), if \(y_p\) is any particular solution and \(y_c\) is the general solution of the corresponding homogeneous equation \(L[y] = 0\), then the general solution of the non-homogeneous equation is \(y = y_c + y_p\).
对于非齐次方程 \(L[y] = f(x)\),若 \(y_p\) 是任意一个特解,\(y_c\) 是对应齐次方程 \(L[y] = 0\) 的通解,那么非齐次方程的通解为 \(y = y_c + y_p\)。
This structure is fundamental: the general solution is the sum of the complementary function (solving the homogeneous part) and a particular integral (satisfying the forcing term).
这种结构非常重要:通解等于补充函数(解齐次部分)加上一个特解积分(满足强迫项)。
9. Existence and Uniqueness of Solutions | 解的存在唯一性
Given a first-order differential equation \(\frac{dy}{dx} = f(x,y)\) with an initial value \(y(x_0) = y_0\), if \(f\) and \(\frac{\partial f}{\partial y}\) are continuous near \((x_0, y_0)\), then there exists a unique solution to the initial value problem in some interval around \(x_0\).
给定一阶微分方程 \(\frac{dy}{dx} = f(x,y)\) 和初值 \(y(x_0) = y_0\),若 \(f\) 和 \(\frac{\partial f}{\partial y}\) 在 \((x_0, y_0)\) 附近连续,则初值问题在 \(x_0\) 的某个区间内存在唯一解。
This theorem avoids situations like \(\frac{dy}{dx} = \sqrt{y}\) with \(y(0)=0\), which has more than one solution because \(\frac{\partial f}{\partial y}\) is not continuous at \(y=0\).
这个定理排除了类似 \(\frac{dy}{dx} = \sqrt{y}\) 且 \(y(0)=0\) 的情况,因为此时 \(\frac{\partial f}{\partial y}\) 在 \(y=0\) 处不连续,导致解不唯一。
10. Slope Fields and Numerical Methods | 斜率场与数值方法
When an explicit solution is difficult or impossible to find, we can visualize the family of solutions using a slope field. At each point \((x,y)\), we draw a short line segment with slope \(f(x,y)\). A solution curve must be tangent to these segments at every point.
当难以或无法求出显式解时,我们可以用斜率场来可视化解族。在每一点 \((x,y)\) 处画一个斜率为 \(f(x,y)\) 的短线段。解曲线必须在每一点与该线段相切。
The Euler method is a basic numerical technique to approximate a solution. Starting from \((x_0, y_0)\), we step by \(\Delta x = h\) using:
欧拉方法是一种基本的数值逼近技术。从 \((x_0, y_0)\) 出发,取步长 \(\Delta x = h\),使用:
\(y_{n+1} = y_n + h \cdot f(x_n, y_n)\)
This approximates the solution curve by a polygonal path. Smaller step sizes generally give better accuracy.
这种方法用折线近似解曲线。步长越小通常精度越好。
11. Applications in IB Mathematics | IB数学中的应用
In IB Mathematics AA HL and AI HL, differential equations are used to model exponential growth and decay, logistic growth, Newton’s law of cooling, and simple harmonic motion.
在IB数学AA HL和AI HL中,微分方程用于建模指数增长与衰减、逻辑增长、牛顿冷却定律以及简谐运动。
- Exponential growth: \(\frac{dy}{dt} = ky\) gives \(y = Ce^{kt}\).
- 指数增长:\(\frac{dy}{dt} = ky\) 给出 \(y = Ce^{kt}\)。
- Logistic growth: \(\frac{dP}{dt} = rP\left(1 – \frac{P}{K}\right)\) models a population with carrying capacity \(K\).
- 逻辑增长:\(\frac{dP}{dt} = rP\left(1 – \frac{P}{K}\right)\) 模拟具有环境容纳量 \(K\) 的种群。
- Cooling: \(\frac{dT}{dt} = -k(T – T_{\text{env}})\) follows Newton’s law.
- 冷却:\(\frac{dT}{dt} = -k(T – T_{\text{env}})\) 遵循牛顿冷却定律。
Understanding the structure of solutions helps us interpret these models and make predictions.
理解解的结构有助于我们解释这些模型并做出预测。
12. Conclusion | 总结
Differential equations are a central topic in higher mathematics. We have seen how to classify them, construct general and particular solutions, use methods such as separation of variables and integrating factors, and understand the linear structure of solutions through superposition.
微分方程是高等数学的核心主题。我们已经学习了如何对它们进行分类、构造通解与特解、使用分离变量法和积分因子等解法,并通过叠加原理理解线性方程解的结构。
Mastering these concepts prepares you for more advanced studies in physics, engineering and economics.
掌握这些概念将为你在物理、工程和经济学中的进阶学习做好准备。
Published by TutorHao | IB Mathematics Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导