University Calculus · Calculus IV大学微积分 · 微积分 IV

Unit D3: Second-Order Linear ODEs: Homogeneous第 D3 单元:二阶线性 ODE:齐次方程

From the superposition principle to the characteristic equation and the Wronskian, this unit solves constant-coefficient homogeneous equations in all three root cases and builds the damped-oscillator toolkit.从叠加原理到特征方程与朗斯基行列式,本单元求解三类根情况下的常系数齐次方程,并建立阻尼振子的分析工具。

Calculus IV ODEs Differential Equations MIT 18.03 / GT 2552
Read me first. This unit assumes you can differentiate exponentials, sines, and cosines, and solve a quadratic. We develop the structure of second-order linear homogeneous equations: superposition, the characteristic equation in its distinct-real, complex, and repeated-root cases, reduction of order for a second solution, and the Wronskian test for a fundamental set. Work each example by hand before opening the collapsible, and verify every quiz answer against the worked solution.

Linear ODEs and Superposition线性 ODE 与叠加原理

A second-order linear ordinary differential equation has the form $a(t)\,y'' + b(t)\,y' + c(t)\,y = g(t)$, where the unknown $y$ and its derivatives appear only to the first power and are never multiplied together. When $g(t) \equiv 0$ the equation is called homogeneous. This unit studies the homogeneous case, and concentrates on the workhorse of applications: constant coefficients.

形如 $a(t)\,y'' + b(t)\,y' + c(t)\,y = g(t)$ 的方程称为二阶线性常微分方程second-order linear ODE),其中未知函数 $y$ 及其导数仅以一次幂出现,且不相互相乘。当 $g(t) \equiv 0$ 时称该方程为齐次的homogeneous)。本单元研究常系数(constant-coefficient)齐次方程。

Key idea. A second-order linear homogeneous ODE with constant coefficients is $a\,y'' + b\,y' + c\,y = 0$ with $a \ne 0$. Its solutions form a two-dimensional vector space: there exist two linearly independent solutions $y_1, y_2$, and every solution is a combination $y = c_1 y_1 + c_2 y_2$.

核心思想。常系数二阶线性齐次 ODE 为 $a\,y'' + b\,y' + c\,y = 0$,$a \ne 0$。其解构成一个二维向量空间(two-dimensional solution space):存在两个线性无关(linearly independent)解 $y_1, y_2$,且每个解都是它们的线性组合 $y = c_1 y_1 + c_2 y_2$。
General second-order linear ODE (homogeneous case $g \equiv 0$)
$$ a(t)\,y'' + b(t)\,y' + c(t)\,y = 0. $$

The reason combinations of solutions are again solutions is the linearity of the differential operator. Write $L[y] = a\,y'' + b\,y' + c\,y$. Then $L$ respects sums and scalar multiples, so any linear combination of solutions of $L[y]=0$ is again a solution.

线性组合仍为解的原因在于微分算子的线性。记 $L[y] = a\,y'' + b\,y' + c\,y$,则 $L$ 保持求和与标量乘法,因此 $L[y]=0$ 的任意线性组合仍是解。

Linearity and the superposition principle
$$ L[c_1 y_1 + c_2 y_2] = c_1 L[y_1] + c_2 L[y_2]. $$ $$ \text{If } L[y_1] = 0 \text{ and } L[y_2] = 0, \text{ then } L[c_1 y_1 + c_2 y_2] = 0. $$

Remark. Two solutions are linearly independent when neither is a constant multiple of the other. The general solution of a second-order equation needs exactly two independent pieces, matching the two arbitrary constants $c_1, c_2$ that an initial-value problem (a value of $y$ and of $y'$ at one point) pins down.

注。两个解线性无关是指其中一个不是另一个的常数倍。二阶方程的通解(general solution)恰好需要两个独立部分,对应于初值问题(给定某点处 $y$ 与 $y'$ 的值)所确定的两个任意常数 $c_1, c_2$。

Worked Example 1.1: verifying superposition

Check that $y_1 = e^{2t}$ and $y_2 = e^{-3t}$ both solve $y'' + y' - 6y = 0$, and confirm that $y = 4y_1 - 5y_2$ solves it too.

For $y_1 = e^{2t}$: $y_1' = 2e^{2t}$, $y_1'' = 4e^{2t}$, so $y_1'' + y_1' - 6y_1 = (4 + 2 - 6)e^{2t} = 0$.

For $y_2 = e^{-3t}$: $y_2' = -3e^{-3t}$, $y_2'' = 9e^{-3t}$, so $y_2'' + y_2' - 6y_2 = (9 - 3 - 6)e^{-3t} = 0$.

By the superposition principle $y = 4y_1 - 5y_2$ is automatically a solution; no separate check is needed.

验证 $y_1 = e^{2t}$,$y_2 = e^{-3t}$ 均满足 $y'' + y' - 6y = 0$,并确认 $y = 4y_1 - 5y_2$ 也满足该方程。

对 $y_1 = e^{2t}$:$y_1' = 2e^{2t}$,$y_1'' = 4e^{2t}$,故 $y_1'' + y_1' - 6y_1 = (4 + 2 - 6)e^{2t} = 0$。

对 $y_2 = e^{-3t}$:$y_2' = -3e^{-3t}$,$y_2'' = 9e^{-3t}$,故 $y_2'' + y_2' - 6y_2 = (9 - 3 - 6)e^{-3t} = 0$。

由叠加原理(superposition),$y = 4y_1 - 5y_2$ 自动是解,无需单独验证。

Worked Example 1.2: a combination that is not a solution

Superposition is a statement about linear combinations only. With $y_1 = e^{2t}$ and $y_2 = e^{-3t}$ solving $y'' + y' - 6y = 0$, check whether the product $u = y_1 y_2 = e^{-t}$ also solves it.

Compute $u = e^{-t}$, $u' = -e^{-t}$, $u'' = e^{-t}$. Then

$$ u'' + u' - 6u = e^{-t} - e^{-t} - 6e^{-t} = -6e^{-t} \ne 0. $$

So the product is not a solution. This is expected: $e^{-t}$ would be a solution only if $r = -1$ solved $r^2 + r - 6 = 0$, but $(-1)^2 + (-1) - 6 = -6 \ne 0$. Products of solutions live outside the solution space because the operator $L$ is not multiplicative.

叠加原理仅对线性组合成立。以 $y_1 = e^{2t}$,$y_2 = e^{-3t}$ 为 $y'' + y' - 6y = 0$ 的解,检验乘积 $u = y_1 y_2 = e^{-t}$ 是否也是解。

计算 $u = e^{-t}$,$u' = -e^{-t}$,$u'' = e^{-t}$,则

$$ u'' + u' - 6u = e^{-t} - e^{-t} - 6e^{-t} = -6e^{-t} \ne 0. $$

乘积不是解。这是意料之中的:$e^{-t}$ 是解当且仅当 $r = -1$ 满足 $r^2 + r - 6 = 0$,但 $(-1)^2 + (-1) - 6 = -6 \ne 0$。解的乘积不在解空间内,因为算子 $L$ 不具有乘法性。

Worked Example 1.3: building the general solution from two pieces

Given that $y_1 = \cos t$ and $y_2 = \sin t$ both solve $y'' + y = 0$, find the member of the solution family with $y(0) = 3$ and $y'(0) = -2$.

By superposition the general solution is $y = c_1 \cos t + c_2 \sin t$, with $y' = -c_1 \sin t + c_2 \cos t$. Evaluate at $t = 0$:

$$ y(0) = c_1 = 3, \qquad y'(0) = c_2 = -2. $$

So $y(t) = 3\cos t - 2\sin t$. The two independent pieces absorb exactly the two pieces of initial data, no more and no fewer, which is the practical meaning of a two-dimensional solution space.

已知 $y_1 = \cos t$ 与 $y_2 = \sin t$ 均满足 $y'' + y = 0$,求满足 $y(0) = 3$,$y'(0) = -2$ 的解。

由叠加原理,通解为 $y = c_1 \cos t + c_2 \sin t$,$y' = -c_1 \sin t + c_2 \cos t$。在 $t = 0$ 代入:

$$ y(0) = c_1 = 3, \qquad y'(0) = c_2 = -2. $$

故 $y(t) = 3\cos t - 2\sin t$。两个独立部分恰好吸收两组初始数据,这正是二维解空间的实际含义。

Common error. Students often expect $y_1 + y_2$ or a product $y_1 y_2$ to be a solution for the same reason a single $y_1$ is. Only linear combinations $c_1 y_1 + c_2 y_2$ are guaranteed. Sums are fine because they are the special case $c_1 = c_2 = 1$, but products, quotients, powers, and compositions generally fail, as Worked Example 1.2 shows. The fix: before combining solutions, confirm the operation is linear.
常见错误。学生常以为 $y_1 + y_2$ 或乘积 $y_1 y_2$ 也像单个 $y_1$ 一样是解。仅有线性组合 $c_1 y_1 + c_2 y_2$ 才有保证。求和没问题,因为它是 $c_1 = c_2 = 1$ 的特例;但乘积、商、幂次与复合一般都失效,如例 1.2 所示。修正方法:在组合解之前,先确认操作是线性的。
Going deeper: why solutions form a two-dimensional space

The existence and uniqueness theorem for linear equations guarantees that for any choice of $y(t_0) = \alpha$ and $y'(t_0) = \beta$ there is exactly one solution. Define a map from each solution $y$ to the pair $(y(t_0), y'(t_0))$ in $\mathbb{R}^2$.

This map is linear and, by existence and uniqueness, it is both onto (every pair is achieved) and one to one (a solution is determined by its pair). A linear isomorphism with $\mathbb{R}^2$ means the solution space is itself two dimensional.

Therefore any two linearly independent solutions span all solutions, which is exactly the structure $y = c_1 y_1 + c_2 y_2$ used throughout this unit. To see the linearity of the map explicitly, suppose $y$ and $\tilde y$ are solutions mapping to $(\alpha, \beta)$ and $(\tilde\alpha, \tilde\beta)$. Then $a y + b\tilde y$ is a solution (superposition) whose initial pair is $a(\alpha,\beta) + b(\tilde\alpha,\tilde\beta)$, so the evaluation map respects linear combinations. Injectivity is uniqueness, surjectivity is existence, and a linear bijection preserves dimension.

线性方程的存在唯一定理保证:对任意 $y(t_0) = \alpha$,$y'(t_0) = \beta$,恰好存在唯一解。定义从解 $y$ 到 $\mathbb{R}^2$ 中数对 $(y(t_0), y'(t_0))$ 的映射。

此映射是线性的,且由存在唯一性,它既是满射(每对数值都能达到)也是单射(一个解由其数对唯一确定)。与 $\mathbb{R}^2$ 的线性同构意味着解空间本身是二维的。

因此任意两个线性无关的解张成全部解,这正是本单元通篇使用的结构 $y = c_1 y_1 + c_2 y_2$。

How many arbitrary constants appear in the general solution of $a\,y'' + b\,y' + c\,y = 0$?$a\,y'' + b\,y' + c\,y = 0$ 的通解中含有几个任意常数?
1.1
$0$
$1$
$2$
$3$
Correct. The solution space is two dimensional, so the general solution carries two constants $c_1, c_2$.正确。解空间是二维的,故通解含两个常数 $c_1, c_2$。
A second-order linear equation has a two-dimensional solution space, hence exactly two arbitrary constants.二阶线性方程的解空间是二维的,恰好有两个任意常数。
If $y_1$ and $y_2$ both solve $L[y] = 0$, which is guaranteed to also be a solution?若 $y_1$ 与 $y_2$ 均满足 $L[y] = 0$,以下哪项必然也是解?
1.2
$c_1 y_1 + c_2 y_2$ for any constants $c_1, c_2$对任意常数 $c_1, c_2$,$c_1 y_1 + c_2 y_2$
$y_1 y_2$
$y_1 / y_2$
$e^{y_1}$
Correct. Linearity gives superposition: any linear combination of solutions solves the homogeneous equation.正确。线性性给出叠加原理:解的任意线性组合也是齐次方程的解。
Superposition applies to linear combinations only. Products, quotients, and compositions need not solve a linear ODE.叠加原理仅适用于线性组合。乘积、商、复合不一定满足线性 ODE。

The Characteristic Equation: Distinct Real Roots特征方程:不同实根

For the constant-coefficient equation $a\,y'' + b\,y' + c\,y = 0$, the exponential $y = e^{rt}$ is a natural trial solution, because each derivative simply multiplies by $r$. Substituting reduces the differential equation to an algebraic one.

求解 $ay'' + by' + cy = 0$ 时,试探解 $y = e^{rt}$(其中 $r$ 为待定常数)。代入方程:$a r^2 e^{rt} + b r e^{rt} + c e^{rt} = 0$,即 $e^{rt}(ar^2 + br + c) = 0$。由于 $e^{rt} \ne 0$,要求 $r$ 满足特征方程characteristic equation)$ar^2 + br + c = 0$。

Key idea. Substituting $y = e^{rt}$ into $a\,y'' + b\,y' + c\,y = 0$ produces $(a r^2 + b r + c)\,e^{rt} = 0$. Since $e^{rt} \ne 0$, the trial works exactly when $r$ solves the characteristic equation $a r^2 + b r + c = 0$.

核心思想。若特征方程 $ar^2 + br + c = 0$ 有两个不同实根 $r_1 \ne r_2$(即判别式 $b^2 - 4ac > 0$),则通解为 $y = c_1 e^{r_1 t} + c_2 e^{r_2 t}$。两个解线性无关,因为一个不是另一个的常数倍(指数不同)。
Characteristic (auxiliary) equation
$$ a r^2 + b r + c = 0, \qquad r = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}. $$

When the discriminant $b^2 - 4ac > 0$, the characteristic equation has two distinct real roots $r_1 \ne r_2$. Each gives an exponential solution, and the two exponentials are linearly independent, so they span the full solution space.

两个指数函数 $e^{r_1 t}$ 与 $e^{r_2 t}$($r_1 \ne r_2$)是线性无关的:若 $c_1 e^{r_1 t} + c_2 e^{r_2 t} = 0$ 对所有 $t$ 成立,则 $c_1 = c_2 = 0$。只需令 $t=0$ 和对方程求导再令 $t=0$,即可得到线性方程组,其系数行列式 $r_2 - r_1 \ne 0$,故只有零解。

General solution, distinct real roots
$$ y(t) = c_1 e^{r_1 t} + c_2 e^{r_2 t}, \qquad r_1 \ne r_2 \text{ real}. $$

Remark. If both roots are negative, every solution decays to zero as $t \to \infty$; this is the overdamped regime in mechanical and electrical models. A positive root signals exponential growth.

注。若两根均为负数,则所有解随 $t \to \infty$ 衰减至零,对应力学与电学模型中的过阻尼overdamped)状态。正根意味着指数增长。

Worked Example 2.1: solving an initial-value problem

Solve $y'' + y' - 6y = 0$ with $y(0) = 1$, $y'(0) = -8$.

The characteristic equation is $r^2 + r - 6 = (r+3)(r-2) = 0$, so $r = -3$ and $r = 2$. The general solution is

$$ y(t) = c_1 e^{2t} + c_2 e^{-3t}, \qquad y'(t) = 2c_1 e^{2t} - 3c_2 e^{-3t}. $$

Apply the initial conditions at $t = 0$: $c_1 + c_2 = 1$ and $2c_1 - 3c_2 = -8$. Subtracting twice the first from the second gives $-5c_2 = -10$, so $c_2 = 2$ and $c_1 = -1$.

$$ y(t) = -e^{2t} + 2e^{-3t}. $$

求解 $y'' - 5y' + 6y = 0$。

特征方程:$r^2 - 5r + 6 = 0$,因式分解得 $(r-2)(r-3) = 0$,根为 $r_1 = 2$,$r_2 = 3$。

通解:$y = c_1 e^{2t} + c_2 e^{3t}$。

Worked Example 2.2: an overdamped boundary case with two negative roots

Solve $2y'' + 7y' + 3y = 0$ with $y(0) = 4$, $y'(0) = -3$, and describe the long-run behavior.

Characteristic equation: $2r^2 + 7r + 3 = 0$. Factor as $(2r + 1)(r + 3) = 0$, so $r = -\tfrac{1}{2}$ and $r = -3$. Both roots are real, distinct, and negative.

$$ y(t) = c_1 e^{-t/2} + c_2 e^{-3t}, \qquad y'(t) = -\tfrac{1}{2} c_1 e^{-t/2} - 3 c_2 e^{-3t}. $$

At $t = 0$: $c_1 + c_2 = 4$ and $-\tfrac{1}{2}c_1 - 3c_2 = -3$. Multiply the second by $2$: $-c_1 - 6c_2 = -6$. Add the first: $-5c_2 = -2$, so $c_2 = \tfrac{2}{5}$ and $c_1 = \tfrac{18}{5}$.

$$ y(t) = \tfrac{18}{5}\,e^{-t/2} + \tfrac{2}{5}\,e^{-3t}. $$

Because both exponents are negative, $y(t) \to 0$ as $t \to \infty$. The slower root $-\tfrac{1}{2}$ dominates the tail, so the decay is eventually governed by $e^{-t/2}$. This is the overdamped regime: a monotone return to equilibrium with no oscillation.

求满足 $y'' - 5y' + 6y = 0$,$y(0) = 1$,$y'(0) = 0$ 的解。

由通解 $y = c_1 e^{2t} + c_2 e^{3t}$,$y' = 2c_1 e^{2t} + 3c_2 e^{3t}$。令 $t=0$:

$$ c_1 + c_2 = 1, \quad 2c_1 + 3c_2 = 0. $$

解方程组:$c_2 = -2$,$c_1 = 3$。故 $y = 3e^{2t} - 2e^{3t}$。

Worked Example 2.3: a root at zero (a missing decay)

Solve $y'' - 3y' = 0$ with $y(0) = 2$, $y'(0) = 6$.

Here $c = 0$, so the characteristic equation is $r^2 - 3r = r(r - 3) = 0$ with roots $r = 0$ and $r = 3$. The root $r = 0$ contributes $e^{0\cdot t} = 1$, a constant solution.

$$ y(t) = c_1 + c_2 e^{3t}, \qquad y'(t) = 3 c_2 e^{3t}. $$

At $t = 0$: $c_1 + c_2 = 2$ and $3 c_2 = 6$, so $c_2 = 2$ and $c_1 = 0$. Thus $y(t) = 2e^{3t}$. The constant mode is present in the general solution even though this particular initial data switches it off.

求解 $y'' + y' - 2y = 0$,$y(0) = 2$,$y'(0) = -3$。

特征方程:$r^2 + r - 2 = 0$,$(r+2)(r-1) = 0$,根为 $r_1 = -2$,$r_2 = 1$。

通解:$y = c_1 e^{-2t} + c_2 e^t$,$y' = -2c_1 e^{-2t} + c_2 e^t$。令 $t=0$:

$$ c_1 + c_2 = 2, \quad -2c_1 + c_2 = -3. $$

解得 $c_1 = \tfrac{5}{3}$,$c_2 = \tfrac{1}{3}$。故 $y = \tfrac{5}{3}e^{-2t} + \tfrac{1}{3}e^t$。

Common error. A frequent slip is reading off the roots with the wrong sign, for example concluding from $r^2 + r - 6 = 0$ that the solution is $c_1 e^{-2t} + c_2 e^{3t}$. The factorization is $(r + 3)(r - 2) = 0$, giving roots $-3$ and $+2$, so the exponents are $-3t$ and $+2t$. Always set each factor to zero and solve, then double-check by expanding: $(r+3)(r-2) = r^2 + r - 6$ matches. The exponent in $e^{rt}$ is the root itself, not its negative.
常见错误。将特征方程误写为 $ar + b = 0$ 而非 $ar^2 + br + c = 0$(这是一阶方程的特征方程)。始终从正确的试探解 $y = e^{rt}$ 出发:对二阶方程,代入后得到的必然是 $r$ 的二次方程。
Going deeper: why two distinct exponentials are independent

Claim: if $r_1 \ne r_2$, then $e^{r_1 t}$ and $e^{r_2 t}$ are linearly independent on any interval. Suppose constants satisfy $c_1 e^{r_1 t} + c_2 e^{r_2 t} = 0$ for all $t$.

Divide by $e^{r_1 t}$ (which is never zero): $c_1 + c_2 e^{(r_2 - r_1)t} = 0$ for all $t$. Differentiate: $c_2 (r_2 - r_1) e^{(r_2 - r_1)t} = 0$. Since $r_2 - r_1 \ne 0$ and the exponential is nonzero, $c_2 = 0$, and then $c_1 = 0$.

The only combination that vanishes identically is the trivial one, so the pair is independent. Equivalently, their Wronskian is $W = (r_2 - r_1)e^{(r_1 + r_2)t} \ne 0$, the test developed in Section 6.

为何恰好是指数函数?若对 $L[y] = 0$ 的解作 Laplace 变换,分母多项式正是 $as^2 + bs + c$。其根将传递函数(transfer function)的极点(poles)决定了系统的模态(modes)$e^{r_k t}$。

此外,算子 $\tfrac{d}{dt}$ 的特征函数(eigenfunctions)正是指数函数:$\tfrac{d}{dt}e^{rt} = r e^{rt}$。因此常系数线性 ODE 的解空间自然由这些特征函数张成,恰如矩阵的特征向量张成对角化基。

The general solution of $y'' - 5y' + 6y = 0$ is:$y'' - 5y' + 6y = 0$ 的通解是:
2.1
$c_1 e^{-2t} + c_2 e^{-3t}$
$c_1 e^{2t} + c_2 e^{3t}$
$c_1 e^{2t} + c_2 t e^{2t}$
$e^{2t}(c_1\cos 3t + c_2\sin 3t)$
Correct. $r^2 - 5r + 6 = (r-2)(r-3) = 0$, so the roots are $2$ and $3$ and the solution is $c_1 e^{2t} + c_2 e^{3t}$.正确。$r^2 - 5r + 6 = (r-2)(r-3) = 0$,根为 $2$ 和 $3$,通解为 $c_1 e^{2t} + c_2 e^{3t}$。
Factor the characteristic polynomial: $(r-2)(r-3) = 0$ gives roots $2$ and $3$, both positive.对特征多项式因式分解:$(r-2)(r-3) = 0$,根为 $2$ 和 $3$,均为正数。

Complex Roots复根

When the discriminant $b^2 - 4ac < 0$, the characteristic roots are a complex-conjugate pair $r = \lambda \pm i\mu$ with $\mu > 0$. The formal exponentials $e^{(\lambda \pm i\mu)t}$ are still solutions, but we prefer real solutions. Euler's formula converts them.

当判别式 $b^2 - 4ac < 0$ 时,特征根为复数 $r = \alpha \pm \beta i$(其中 $\alpha = -b/(2a)$,$\beta = \sqrt{4ac-b^2}/(2a) > 0$)。虽然复指数 $e^{(\alpha \pm \beta i)t}$ 是解,但通常需要实值解。

Key idea. For roots $\lambda \pm i\mu$, Euler's formula $e^{i\mu t} = \cos\mu t + i\sin\mu t$ turns the complex exponentials into a real pair $e^{\lambda t}\cos\mu t$ and $e^{\lambda t}\sin\mu t$. These are two independent real solutions.

核心思想。利用 Euler 公式(Euler's formula)$e^{i\theta} = \cos\theta + i\sin\theta$,将复指数解转化为实值解:$y_1 = e^{\alpha t}\cos\beta t$,$y_2 = e^{\alpha t}\sin\beta t$,通解为 $y = e^{\alpha t}(c_1\cos\beta t + c_2\sin\beta t)$。
General solution, complex roots $r = \lambda \pm i\mu$
$$ y(t) = e^{\lambda t}\big(c_1 \cos\mu t + c_2 \sin\mu t\big). $$

The real part $\lambda$ governs growth or decay of the amplitude, and the imaginary part $\mu$ sets the frequency of oscillation. When $\lambda < 0$ the result is a decaying oscillation, the underdamped regime; when $\lambda = 0$ the motion is a pure undamped oscillation of frequency $\mu$.

从 $e^{(\alpha+\beta i)t} = e^{\alpha t}e^{i\beta t} = e^{\alpha t}(\cos\beta t + i\sin\beta t)$ 出发,取实部与虚部,分别得到两个实值解 $e^{\alpha t}\cos\beta t$ 与 $e^{\alpha t}\sin\beta t$。由线性性,实部与虚部单独满足原实系数 ODE。

Going deeper: from complex exponentials to real solutions

The complex roots give formal solutions $e^{(\lambda + i\mu)t}$ and $e^{(\lambda - i\mu)t}$. Factor the real part and apply Euler's formula:

$$ e^{(\lambda \pm i\mu)t} = e^{\lambda t}\big(\cos\mu t \pm i\sin\mu t\big). $$

Because the equation has real coefficients, the real and imaginary parts of a complex solution are each real solutions. Taking the real and imaginary parts of $e^{(\lambda + i\mu)t}$ gives

$$ \operatorname{Re} = e^{\lambda t}\cos\mu t, \qquad \operatorname{Im} = e^{\lambda t}\sin\mu t. $$

These two functions are linearly independent (one is not a multiple of the other), so their span is the full real solution space, yielding the boxed general solution.

复根情形与简谐振子(simple harmonic oscillator)的物理图像直接对应:$\alpha$ 是衰减率(damping rate),$\beta$ 是阻尼振荡频率(damped frequency)。

若 $\alpha < 0$(欠阻尼,underdamped),解呈振荡衰减;若 $\alpha = 0$(无阻尼),解为纯振荡;若 $\alpha > 0$(不稳定),振幅增长。对实系数二阶 ODE,复根总以共轭对出现,确保通解为实值。

Worked Example 3.1: a decaying oscillation

Solve $y'' + 2y' + 5y = 0$ with $y(0) = 1$, $y'(0) = 1$.

Characteristic equation: $r^2 + 2r + 5 = 0$, so $r = \dfrac{-2 \pm \sqrt{4 - 20}}{2} = -1 \pm 2i$. Here $\lambda = -1$ and $\mu = 2$.

$$ y(t) = e^{-t}\big(c_1\cos 2t + c_2\sin 2t\big). $$

At $t = 0$: $y(0) = c_1 = 1$. Differentiate using the product rule: $y'(t) = e^{-t}\big((-c_1 + 2c_2)\cos 2t + (-c_2 - 2c_1)\sin 2t\big)$, so $y'(0) = -c_1 + 2c_2 = 1$. With $c_1 = 1$ this gives $c_2 = 1$.

$$ y(t) = e^{-t}\big(\cos 2t + \sin 2t\big). $$

求解 $y'' + 2y' + 5y = 0$。

特征方程:$r^2 + 2r + 5 = 0$,判别式 $4 - 20 = -16 < 0$,根为 $r = \frac{-2 \pm 4i}{2} = -1 \pm 2i$。

故 $\alpha = -1$,$\beta = 2$,通解:$y = e^{-t}(c_1\cos 2t + c_2\sin 2t)$。

Worked Example 3.2: amplitude-phase form of an oscillation

Rewrite the solution $y(t) = e^{-t}(\cos 2t + \sin 2t)$ from Worked Example 3.1 in the single-sinusoid form $y = A e^{-t}\cos(2t - \varphi)$.

Match $c_1 \cos 2t + c_2 \sin 2t = A\cos(2t - \varphi) = A\cos\varphi \cos 2t + A\sin\varphi \sin 2t$. With $c_1 = 1$ and $c_2 = 1$:

$$ A\cos\varphi = 1, \qquad A\sin\varphi = 1 \;\Longrightarrow\; A = \sqrt{1^2 + 1^2} = \sqrt 2, \quad \tan\varphi = 1. $$

Both $\cos\varphi$ and $\sin\varphi$ are positive, so $\varphi$ is in the first quadrant: $\varphi = \pi/4$. Thus

$$ y(t) = \sqrt 2\, e^{-t}\cos\!\left(2t - \tfrac{\pi}{4}\right). $$

The envelope $\sqrt 2\, e^{-t}$ shows the amplitude decaying, the angular frequency is $2$, and the phase shift is $\pi/4$. The amplitude-phase form makes the physics readable in a way the $c_1, c_2$ form hides.

求满足 $y'' + 4y = 0$,$y(0) = 0$,$y'(0) = 3$ 的解。

特征根 $r = \pm 2i$,故 $\alpha = 0$,$\beta = 2$,通解 $y = c_1\cos 2t + c_2\sin 2t$,$y' = -2c_1\sin 2t + 2c_2\cos 2t$。

令 $t=0$:$c_1 = 0$,$2c_2 = 3$,故 $c_2 = \tfrac{3}{2}$,$y = \tfrac{3}{2}\sin 2t$。

Worked Example 3.3: pure undamped oscillation from initial data

Solve $y'' + 4y = 0$ with $y(0) = 0$, $y'(0) = 6$.

Characteristic equation $r^2 + 4 = 0$ gives $r = \pm 2i$, so $\lambda = 0$, $\mu = 2$, and the solution is an undamped oscillation:

$$ y(t) = c_1 \cos 2t + c_2 \sin 2t, \qquad y'(t) = -2c_1 \sin 2t + 2c_2 \cos 2t. $$

At $t = 0$: $y(0) = c_1 = 0$ and $y'(0) = 2c_2 = 6$, so $c_2 = 3$. Therefore $y(t) = 3\sin 2t$. The zero initial position with nonzero velocity picks out a pure sine, with amplitude $3$ and period $\pi$.

弹簧-质量-阻尼系统满足 $my'' + \gamma y' + ky = 0$。令 $m=1$,$\gamma = 2$,$k = 5$,求解 $y(0) = 1$,$y'(0) = 0$。

特征方程 $r^2 + 2r + 5 = 0$,根 $r = -1 \pm 2i$。通解 $y = e^{-t}(c_1\cos 2t + c_2\sin 2t)$,$y' = e^{-t}[(-c_1+2c_2)\cos 2t + (-c_2-2c_1)\sin 2t]$。

令 $t=0$:$c_1 = 1$,$-c_1 + 2c_2 = 0 \Rightarrow c_2 = \tfrac{1}{2}$。故 $y = e^{-t}(\cos 2t + \tfrac{1}{2}\sin 2t)$。

Common error. When the roots are $\lambda \pm i\mu$, students sometimes write the solution as $e^{\lambda t}\cos(\lambda t) + \dots$ or swap $\lambda$ and $\mu$. The decay rate is the real part $\lambda$ (it sits in the exponential $e^{\lambda t}$), and the oscillation frequency is the imaginary part $\mu$ (it sits inside $\cos\mu t$ and $\sin\mu t$). For $r = -1 \pm 2i$ the answer is $e^{-t}(c_1\cos 2t + c_2\sin 2t)$, never $e^{-2t}\cos t$. Read $\lambda$ from outside the trig and $\mu$ from inside.
常见错误。将通解写成 $c_1 e^{(\alpha+\beta i)t} + c_2 e^{(\alpha-\beta i)t}$ 而不转化为实形式,然后再将 $c_1, c_2$ 取为实数——这在数学上等价,但在应用初始条件时会引入复数运算。始终先转化为 $e^{\alpha t}(c_1\cos\beta t + c_2\sin\beta t)$,以保证系数为实数。
The general solution of $y'' + 9y = 0$ is:$y'' + 9y = 0$ 的通解是:
3.1
$c_1 e^{3t} + c_2 e^{-3t}$
$c_1 e^{3t} + c_2 t e^{3t}$
$e^{3t}(c_1\cos t + c_2\sin t)$
$c_1\cos 3t + c_2\sin 3t$
Correct. $r^2 + 9 = 0$ gives $r = \pm 3i$, so $\lambda = 0$, $\mu = 3$, and the solution is $c_1\cos 3t + c_2\sin 3t$.正确。$r^2 + 9 = 0$ 给出 $r = \pm 3i$,$\lambda = 0$,$\mu = 3$,通解为 $c_1\cos 3t + c_2\sin 3t$。
The roots are $\pm 3i$, a pure imaginary pair, so the solution is an undamped oscillation $c_1\cos 3t + c_2\sin 3t$.根为 $\pm 3i$(纯虚数对),故通解为无阻尼振荡 $c_1\cos 3t + c_2\sin 3t$。

Repeated Roots重根

When the discriminant is zero, $b^2 - 4ac = 0$, the characteristic equation has a single repeated root $r = -b/(2a)$. This supplies only one exponential solution $e^{rt}$, so we are missing a second independent piece. Multiplying by $t$ recovers it.

当判别式 $b^2 - 4ac = 0$ 时,特征方程有重根 $r_1 = r_2 = r = -b/(2a)$。此时 $e^{rt}$ 是一个解,但仅靠它无法构成完整的通解——我们需要第二个线性无关的解。

Key idea. A repeated root $r$ gives the two independent solutions $e^{rt}$ and $t\,e^{rt}$. The factor of $t$ produces a function that is not a constant multiple of $e^{rt}$, restoring a two-dimensional solution space.

核心思想。当特征方程有重根 $r$(即 $b^2 = 4ac$)时,两个线性无关的解为 $y_1 = e^{rt}$ 与 $y_2 = t\,e^{rt}$,通解为 $y = (c_1 + c_2 t)e^{rt}$。额外的 $t$ 因子由降阶法(reduction of order)或算子方法给出。
General solution, repeated root $r$
$$ y(t) = c_1 e^{rt} + c_2\, t\, e^{rt} = (c_1 + c_2 t)\,e^{rt}. $$

Remark. In a mechanical model the repeated-root case is critical damping: the system returns to equilibrium as fast as possible without oscillating. The extra factor of $t$ lets the displacement cross zero at most once.

验证:令 $y_2 = t\,e^{rt}$,则 $y_2' = (1 + rt)e^{rt}$,$y_2'' = (2r + r^2 t)e^{rt}$。代入 $ay_2'' + by_2' + cy_2 = e^{rt}[a(2r+r^2 t) + b(1+rt) + ct] = e^{rt}[(2ar+b) + t(ar^2+br+c)]$。由于 $r$ 是重根,$ar^2+br+c=0$ 且 $2ar+b = 0$(后者来自 $b^2=4ac$ 的重根条件),故整个表达式为零。

Going deeper: where the factor of $t$ comes from

With a repeated root the equation factors as $a(r - r_0)^2$, so the operator factors as $a\,(D - r_0)^2$, where $D = d/dt$. We seek a second solution of $(D - r_0)^2 y = 0$ beyond $e^{r_0 t}$.

Try $y = u(t)\,e^{r_0 t}$. A short computation gives $(D - r_0)\big(u e^{r_0 t}\big) = u'\,e^{r_0 t}$, so applying the factor twice yields

$$ (D - r_0)^2\big(u\,e^{r_0 t}\big) = u''\,e^{r_0 t}. $$

Setting this to zero forces $u'' = 0$, hence $u = c_1 + c_2 t$. The new piece beyond the constant is $t\,e^{r_0 t}$, exactly the second solution claimed.

重根的出现与临界阻尼critical damping)直接对应:$b^2 = 4ac$ 时系统处于欠阻尼与过阻尼的边界。物理上,临界阻尼系统返回平衡位置的速度最快而不振荡,解 $(c_1 + c_2 t)e^{rt}$ 的形式——指数衰减乘以一个线性增长——正是这种临界行为的数学体现。

从算子角度,$D^2 - 2rD + r^2 = (D-r)^2$,其核(null space)的维度为 2,由 $e^{rt}$ 与 $t\,e^{rt}$ 张成,类比 Jordan 块(Jordan block)特征向量与广义特征向量的关系。

Worked Example 4.1: a critically damped system

Solve $y'' - 4y' + 4y = 0$ with $y(0) = 2$, $y'(0) = 5$.

Characteristic equation: $r^2 - 4r + 4 = (r - 2)^2 = 0$, a repeated root $r = 2$. So

$$ y(t) = (c_1 + c_2 t)\,e^{2t}, \qquad y'(t) = \big(c_2 + 2(c_1 + c_2 t)\big)e^{2t}. $$

At $t = 0$: $y(0) = c_1 = 2$ and $y'(0) = c_2 + 2c_1 = 5$, so $c_2 = 5 - 4 = 1$.

$$ y(t) = (2 + t)\,e^{2t}. $$

求解 $y'' - 6y' + 9y = 0$。

特征方程:$r^2 - 6r + 9 = (r-3)^2 = 0$,重根 $r = 3$。

通解:$y = (c_1 + c_2 t)e^{3t}$。

Worked Example 4.2: a critically damped return to equilibrium

Solve $y'' + 6y' + 9y = 0$ with $y(0) = 1$, $y'(0) = -1$, and find whether the solution ever crosses zero for $t > 0$.

Characteristic equation: $r^2 + 6r + 9 = (r + 3)^2 = 0$, a repeated root $r = -3$. So

$$ y(t) = (c_1 + c_2 t)\,e^{-3t}, \qquad y'(t) = \big(c_2 - 3(c_1 + c_2 t)\big)e^{-3t}. $$

At $t = 0$: $c_1 = 1$ and $y'(0) = c_2 - 3c_1 = -1$, so $c_2 = 2$. Hence $y(t) = (1 + 2t)e^{-3t}$.

Since $e^{-3t} > 0$, the sign of $y$ is the sign of $1 + 2t$, which is positive for all $t > 0$. So the solution decays to zero without crossing, the hallmark of critical damping: at most one zero crossing, here none.

求满足 $y'' - 6y' + 9y = 0$,$y(0) = 2$,$y'(0) = 1$ 的解。

通解 $y = (c_1 + c_2 t)e^{3t}$,$y' = c_2 e^{3t} + 3(c_1 + c_2 t)e^{3t}$。令 $t=0$:$c_1 = 2$,$c_2 + 3c_1 = 1 \Rightarrow c_2 = 1 - 6 = -5$。

故 $y = (2 - 5t)e^{3t}$。

Worked Example 4.3: verifying $t\,e^{rt}$ directly

Confirm by substitution that $y_2 = t e^{3t}$ solves $y'' - 6y' + 9y = 0$ (whose characteristic equation $(r-3)^2 = 0$ has the repeated root $3$).

Differentiate with the product rule: $y_2 = t e^{3t}$, so $y_2' = e^{3t} + 3t e^{3t} = (1 + 3t)e^{3t}$ and $y_2'' = 3e^{3t} + 3(1 + 3t)e^{3t} = (6 + 9t)e^{3t}$.

Substitute:

$$ y_2'' - 6y_2' + 9y_2 = \big[(6 + 9t) - 6(1 + 3t) + 9t\big]e^{3t} = \big[6 + 9t - 6 - 18t + 9t\big]e^{3t} = 0. $$

The bracket collapses to zero, so $t e^{3t}$ is indeed a solution. The general solution is $y = (c_1 + c_2 t)e^{3t}$.

求解 $y'' + 4y' + 4y = 0$,$y(0) = 0$,$y'(0) = 1$。

特征方程:$(r+2)^2 = 0$,重根 $r = -2$。通解 $y = (c_1 + c_2 t)e^{-2t}$。令 $t=0$:$c_1 = 0$,$c_2 - 2c_1 = 1 \Rightarrow c_2 = 1$。

故 $y = t\,e^{-2t}$。

Common error. A repeated root tempts students to write the general solution as $c_1 e^{rt} + c_2 e^{rt}$, but that is just $(c_1 + c_2)e^{rt}$, a single arbitrary constant in disguise. It cannot match two independent initial conditions. The second solution must be the new function $t\,e^{rt}$, giving $(c_1 + c_2 t)e^{rt}$. Likewise, do not write $e^{2rt}$ or $e^{rt^2}$; the missing piece is exactly one extra factor of $t$.
常见错误。对重根仍写 $y = c_1 e^{rt} + c_2 e^{rt} = (c_1+c_2)e^{rt}$,实质上只有一个任意常数,导致解不完整。遇到重根,务必在第二个解中乘以 $t$:$y_2 = t\,e^{rt}$。
The general solution of $y'' + 6y' + 9y = 0$ is:$y'' + 6y' + 9y = 0$ 的通解是:
4.1
$c_1 e^{3t} + c_2 e^{-3t}$
$e^{-3t}(c_1\cos 3t + c_2\sin 3t)$
$(c_1 + c_2 t)\,e^{-3t}$
$c_1 e^{3t} + c_2 t e^{3t}$
Correct. $r^2 + 6r + 9 = (r + 3)^2 = 0$ has the repeated root $-3$, so the solution is $(c_1 + c_2 t)e^{-3t}$.正确。$r^2 + 6r + 9 = (r+3)^2 = 0$ 有重根 $-3$,故通解为 $(c_1 + c_2 t)e^{-3t}$。
The polynomial is a perfect square $(r+3)^2$, giving the repeated root $-3$ and the solution $(c_1 + c_2 t)e^{-3t}$.多项式是完全平方 $(r+3)^2$,重根为 $-3$,通解为 $(c_1 + c_2 t)e^{-3t}$。

Reduction of Order降阶法

The factor-of-$t$ trick for repeated roots is a special case of a general method. If one solution $y_1$ of a second-order linear homogeneous equation is known, reduction of order manufactures a second, independent solution by seeking $y_2 = v(t)\,y_1(t)$. This works even when the coefficients are not constant.

降阶法(reduction of order)是一种通用技巧:已知一个非零解 $y_1$,令 $y = v(t)\,y_1(t)$,代入 ODE,可将二阶方程化为关于 $v'$ 的一阶方程,从而求出第二个线性无关解 $y_2$。

Key idea. Given one solution $y_1$ of $y'' + p(t)\,y' + q(t)\,y = 0$, substitute $y_2 = v\,y_1$. The terms in $v$ (undifferentiated) cancel because $y_1$ already solves the equation, leaving a first-order equation in $v'$ that can be integrated.

核心思想。设 $y_1$ 是 $ay'' + by' + cy = 0$ 的已知非零解。令 $y = v(t)y_1(t)$,代入方程后 $v$ 的项消去(因为 $y_1$ 本身是解),剩余一个关于 $w = v'$ 的一阶线性 ODE,解之再积分即得 $v(t)$,从而得到 $y_2 = v\,y_1$。
Reduction-of-order formula (standard form $y'' + p\,y' + q\,y = 0$)
$$ y_2 = y_1 \int \frac{e^{-\int p(t)\,dt}}{y_1^{\,2}}\,dt. $$

The cancellation is the heart of the method: substituting $y_2 = v y_1$ produces a term $v\,(y_1'' + p\,y_1' + q\,y_1)$, which is $v \cdot 0 = 0$ because $y_1$ is a solution. What remains involves only $v'$ and $v''$, so the substitution $w = v'$ lowers the order by one.

消去的关键在于:代入 $y_2 = v y_1$ 后,含未微分 $v$ 的项为 $v(y_1'' + py_1' + qy_1) = 0$(因 $y_1$ 是解)。剩余部分仅含 $v'$ 与 $v''$,令 $w = v'$ 即可将阶数降低一阶。

Going deeper: deriving the reduction-of-order formula

Put $y_2 = v y_1$. Then $y_2' = v' y_1 + v y_1'$ and $y_2'' = v'' y_1 + 2 v' y_1' + v y_1''$. Substitute into $y'' + p y' + q y = 0$ and group by how many times $v$ is differentiated:

$$ v\big(y_1'' + p y_1' + q y_1\big) + v'\big(2 y_1' + p y_1\big) + v''\, y_1 = 0. $$

The first bracket is zero since $y_1$ solves the equation. With $w = v'$, the rest is a first-order linear equation:

$$ y_1\, w' + (2 y_1' + p y_1)\,w = 0 \quad\Longrightarrow\quad \frac{w'}{w} = -\frac{2 y_1'}{y_1} - p. $$

Integrate: $\ln|w| = -2\ln|y_1| - \int p\,dt$, so $w = \dfrac{e^{-\int p\,dt}}{y_1^{\,2}}$. Finally $v = \int w\,dt$ and $y_2 = v y_1$, which is the boxed formula.

降阶法对非常系数方程同样有效,只要能找到一个已知解。例如 Bessel 方程(Bessel equation)和 Legendre 方程(Legendre equation)的第二类解(second kind solutions)均通过对第一类解降阶得到。

更系统地,Abel 恒等式(Abel's identity)$W(t) = W(t_0)\exp\!\left(-\int_{t_0}^t \frac{b(s)}{a(s)}ds\right)$ 给出朗斯基行列式的公式,可以不直接求 $y_2$ 就得到 $W$,再反求 $y_2$。

Worked Example 5.1: a second solution by reduction of order

The equation $t^2 y'' - 3t y' + 4y = 0$ (for $t > 0$) has the solution $y_1 = t^2$. Find a second independent solution.

Write in standard form by dividing by $t^2$: $y'' - \dfrac{3}{t} y' + \dfrac{4}{t^2} y = 0$, so $p(t) = -3/t$. Then $\int p\,dt = -3\ln t$ and $e^{-\int p\,dt} = e^{3\ln t} = t^3$.

$$ y_2 = y_1 \int \frac{t^3}{(t^2)^2}\,dt = t^2 \int \frac{t^3}{t^4}\,dt = t^2 \int \frac{1}{t}\,dt = t^2 \ln t. $$

So $y_2 = t^2 \ln t$, and the general solution is $y = c_1 t^2 + c_2 t^2 \ln t$.

已知 $y_1 = e^{2t}$ 是 $y'' - 4y' + 4y = 0$ 的解,用降阶法求第二个解。

令 $y = v\,e^{2t}$,则 $y' = (v' + 2v)e^{2t}$,$y'' = (v'' + 4v' + 4v)e^{2t}$。代入:

$$ e^{2t}[(v'' + 4v' + 4v) - 4(v' + 2v) + 4v] = e^{2t}\,v'' = 0. $$

故 $v'' = 0$,$v = c_1 + c_2 t$。取 $c_1 = 0$,$c_2 = 1$,得 $y_2 = t\,e^{2t}$,与第 4 节重根结论一致。

Worked Example 5.2: recovering $t e^{rt}$ from reduction of order

The constant-coefficient repeated-root case is itself a reduction-of-order problem. Take $y'' - 4y' + 4y = 0$, with known solution $y_1 = e^{2t}$, and recover the second solution by the formula.

In standard form $p(t) = -4$, so $\int p\,dt = -4t$ and $e^{-\int p\,dt} = e^{4t}$. Then

$$ y_2 = y_1 \int \frac{e^{4t}}{(e^{2t})^2}\,dt = e^{2t}\int \frac{e^{4t}}{e^{4t}}\,dt = e^{2t}\int 1\,dt = t\,e^{2t}. $$

The integral collapses to $\int 1\,dt = t$, so $y_2 = t e^{2t}$, exactly the extra factor of $t$ promised in Section 4. Reduction of order and the factored-operator argument agree.

方程 $t^2 y'' - 3t y' + 4y = 0$(Euler-Cauchy 型)有解 $y_1 = t^2$(可验证)。用降阶法求 $y_2$。

令 $y = v\,t^2$,$y' = v' t^2 + 2vt$,$y'' = v'' t^2 + 4v't + 2v$。代入后消去含 $v$ 的项(因 $y_1=t^2$ 是解):

$$ t^2(v'' t^2 + 4v't + 2v) - 3t(v't^2 + 2vt) + 4vt^2 = t^4 v'' + t^3 v' = 0. $$

令 $w = v'$:$t\,w' + w = 0$,即 $w'/w = -1/t$,解得 $w = 1/t$,$v = \ln t$。故 $y_2 = t^2 \ln t$。

Worked Example 5.3: a variable-coefficient equation

The equation $t^2 y'' - t y' + y = 0$ (for $t > 0$) has the solution $y_1 = t$. Find a second independent solution.

Standard form: divide by $t^2$ to get $y'' - \dfrac{1}{t} y' + \dfrac{1}{t^2} y = 0$, so $p(t) = -1/t$. Then $\int p\,dt = -\ln t$ and $e^{-\int p\,dt} = e^{\ln t} = t$.

$$ y_2 = y_1 \int \frac{t}{(t)^2}\,dt = t\int \frac{t}{t^2}\,dt = t\int \frac{1}{t}\,dt = t\ln t. $$

So $y_2 = t\ln t$, and the general solution is $y = c_1 t + c_2 t\ln t$. As a check, $y_2' = \ln t + 1$ and $y_2'' = 1/t$, and substituting gives $t^2(1/t) - t(\ln t + 1) + t\ln t = t - t\ln t - t + t\ln t = 0$.

代入 $y = v\,y_1$ 后忘记展开 $y''$,或代入后没有化简含 $y_1$ 满足方程所消去的项。务必完整展开所有导数,再利用 $a y_1'' + b y_1' + c y_1 = 0$ 消去零项,才能得到关于 $w = v'$ 的一阶方程。

(此示例补充说明降阶法的常见问题,方便对比理解。)

Common error. Two pitfalls dominate. First, the reduction formula requires standard form $y'' + p\,y' + q\,y = 0$ with leading coefficient $1$; using $p$ from an equation like $t^2 y'' - 3t y' + 4y = 0$ without first dividing by $t^2$ gives the wrong $p$ and a wrong answer. Second, after finding $v = \int w\,dt$, students sometimes re-attach a constant of integration and an extra multiple of $y_1$, double-counting. Take the simplest antiderivative for $v$; the arbitrary constants belong to the final general solution, not to $y_2$.
常见错误。代入 $y = v\,y_1$ 后忘记展开 $y''$,或代入后没有化简含 $y_1$ 满足方程所消去的项。务必完整展开所有导数,再利用 $a y_1'' + b y_1' + c y_1 = 0$ 消去零项,才能得到关于 $w = v'$ 的一阶方程。
Reduction of order finds a second solution of a second-order linear homogeneous ODE by assuming the form:降阶法通过假设以下形式求二阶线性齐次 ODE 的第二个解:
5.1
$y_2 = v(t)\,y_1(t)$
$y_2 = y_1(t) + v(t)$
$y_2 = e^{y_1(t)}$
$y_2 = y_1(t)^2$
Correct. We seek $y_2 = v y_1$; substituting cancels the undifferentiated $v$ term and leaves a solvable first-order equation in $v'$.正确。令 $y_2 = v y_1$;代入后未微分的 $v$ 项消去,留下关于 $v'$ 的一阶方程。
The method multiplies the known solution by an unknown function: $y_2 = v(t)\,y_1(t)$.该方法将已知解乘以未知函数:$y_2 = v(t)\,y_1(t)$。

The Wronskian朗斯基行列式

To assert that $y = c_1 y_1 + c_2 y_2$ is the general solution, we need $y_1$ and $y_2$ to be linearly independent. The Wronskian determinant turns this into a single computation, and tells us when initial conditions can always be met.

朗斯基行列式(Wronskian)是判断两个解是否线性无关的系统性工具。对两个函数 $y_1, y_2$,定义 $W = y_1 y_2' - y_2 y_1'$。

Key idea. The Wronskian of $y_1, y_2$ is $W = y_1 y_2' - y_2 y_1'$. If $W(t_0) \ne 0$ at some point, then $y_1$ and $y_2$ are linearly independent and together form a fundamental set: every solution is a unique combination of them.

核心思想。两个解 $y_1, y_2$ 线性无关当且仅当其朗斯基行列式 $W = \begin{vmatrix} y_1 & y_2 \\ y_1' & y_2' \end{vmatrix} = y_1 y_2' - y_2 y_1' \ne 0$(在某点,从而在所有点)成立。若 $W = 0$,则两个解线性相关(linearly dependent)。
Wronskian determinant
$$ W(y_1, y_2)(t) = \begin{vmatrix} y_1 & y_2 \\ y_1' & y_2' \end{vmatrix} = y_1 y_2' - y_2 y_1'. $$

The Wronskian also controls solvability of an initial-value problem. Imposing $y(t_0) = \alpha$ and $y'(t_0) = \beta$ on $c_1 y_1 + c_2 y_2$ gives a linear system for $c_1, c_2$ whose coefficient determinant is exactly $W(t_0)$. A nonzero Wronskian means the system always has a unique solution.

Abel 恒等式(Abel's identity)给出朗斯基行列式的显式公式:$W(t) = W(t_0)\exp\!\left(-\int_{t_0}^t \frac{b(s)}{a(s)}\,ds\right)$。由此可知 $W$ 要么恒为零,要么恒不为零,不存在中间状态——这正是线性无关性判断的有力支撑。

Abel's identity (standard form $y'' + p\,y' + q\,y = 0$)
$$ W(t) = W(t_0)\,\exp\!\left(-\int_{t_0}^{t} p(s)\,ds\right). $$

Remark. Abel's identity shows the Wronskian is either identically zero or never zero, because the exponential factor never vanishes. So checking $W$ at one convenient point settles independence everywhere on an interval.

注。Abel 恒等式表明朗斯基行列式要么恒为零,要么处处非零,因为指数因子不会消失。因此只需在一个方便的点(通常取 $t=0$)检验 $W$,即可确定整个区间上的线性无关性。

Worked Example 6.1: confirming a fundamental set

Show that $y_1 = e^{2t}$ and $y_2 = e^{-3t}$ form a fundamental set for $y'' + y' - 6y = 0$.

Compute $y_1' = 2e^{2t}$ and $y_2' = -3e^{-3t}$. Then

$$ W = y_1 y_2' - y_2 y_1' = e^{2t}(-3e^{-3t}) - e^{-3t}(2e^{2t}) = -3e^{-t} - 2e^{-t} = -5e^{-t}. $$

Since $-5e^{-t} \ne 0$ for all $t$, the two solutions are linearly independent and form a fundamental set, so $y = c_1 e^{2t} + c_2 e^{-3t}$ is the general solution.

计算 $y_1 = e^{2t}$,$y_2 = e^{-3t}$ 的朗斯基行列式,并验证其在 $t=0$ 处不为零。

$$ W = \begin{vmatrix} e^{2t} & e^{-3t} \\ 2e^{2t} & -3e^{-3t} \end{vmatrix} = -3e^{-t} - 2e^{-t} = -5e^{-t}. $$

在 $t=0$ 处 $W = -5 \ne 0$,故两解线性无关,构成基本解组(fundamental set)。

Worked Example 6.2: a vanishing Wronskian signals dependence

Test whether $y_1 = e^{2t}$ and $y_2 = 3e^{2t}$ form a fundamental set.

Compute $y_1' = 2e^{2t}$ and $y_2' = 6e^{2t}$. Then

$$ W = y_1 y_2' - y_2 y_1' = e^{2t}(6e^{2t}) - 3e^{2t}(2e^{2t}) = 6e^{4t} - 6e^{4t} = 0. $$

The Wronskian is identically zero, so the pair is linearly dependent. Indeed $y_2 = 3 y_1$, a constant multiple, so they span only a one-dimensional space. They cannot serve as a fundamental set, and $c_1 e^{2t} + 3c_2 e^{2t} = (c_1 + 3c_2)e^{2t}$ carries just one effective constant.

检验 $y_1 = e^{t}$,$y_2 = 3e^{t}$ 的朗斯基行列式。

$$ W = \begin{vmatrix} e^t & 3e^t \\ e^t & 3e^t \end{vmatrix} = 3e^{2t} - 3e^{2t} = 0. $$

$W \equiv 0$,故 $y_1$ 与 $y_2$ 线性相关($y_2 = 3y_1$),不构成基本解组,无法给出完整通解。

Worked Example 6.3: Abel's identity predicts the Wronskian

For $y'' + 2y' + 5y = 0$ (the equation of Worked Example 3.1), use Abel's identity to find the Wronskian up to a constant, then confirm with the solutions $y_1 = e^{-t}\cos 2t$, $y_2 = e^{-t}\sin 2t$.

Here the equation is already in standard form with $p = 2$. Abel gives $W(t) = W(t_0)\exp\!\big(-\int 2\,dt\big) = C e^{-2t}$ for a constant $C$.

Direct computation: $y_1' = e^{-t}(-\cos 2t - 2\sin 2t)$ and $y_2' = e^{-t}(-\sin 2t + 2\cos 2t)$. Then

$$ W = y_1 y_2' - y_2 y_1' = e^{-2t}\big[\cos 2t(-\sin 2t + 2\cos 2t) - \sin 2t(-\cos 2t - 2\sin 2t)\big]. $$

The bracket simplifies: $-\cos 2t\sin 2t + 2\cos^2 2t + \sin 2t\cos 2t + 2\sin^2 2t = 2$. So $W = 2e^{-2t}$, matching the predicted form $C e^{-2t}$ with $C = 2$, and never zero.

利用 Abel 恒等式验证:对 $y'' + p(t)y' + q(t)y = 0$,朗斯基行列式满足 $W' = -p(t)W$,故 $W(t) = W(0)e^{-\int_0^t p(s)ds}$。若 $p$ 连续,则 $W$ 要么恒为零,要么恒不为零。

对常系数方程 $y'' + by' + cy = 0$,$p = b/a$(常数),$W(t) = W(0)e^{-(b/a)t}$。对例 6.1,$W(0) = -5$,$W(t) = -5e^{-(-3+2)t} = -5e^{-t}$,与直接计算吻合。

Common error. The determinant has a fixed order: $W = y_1 y_2' - y_2 y_1'$, not $y_1' y_2 - y_2' y_1$. Reversing the columns flips the sign, which can change a result like $-5e^{-t}$ into $+5e^{-t}$. The sign is harmless for the independence test (only "nonzero" matters), but it matters when you later use $W$ in variation of parameters. Write the rows as functions over derivatives, top to bottom, and keep the column order $y_1, y_2$.
常见错误。仅在一点检查 $W = 0$ 就断言线性相关——但若方程满足存在唯一性条件,则 $W$ 要么处处为零,要么处处非零,只需在一个方便的点(通常取 $t=0$)检验即可。
Going deeper: proof of Abel's identity

Differentiate $W = y_1 y_2' - y_2 y_1'$ using the product rule. The cross terms $y_1' y_2'$ cancel:

$$ W' = y_1 y_2'' - y_2 y_1''. $$

Each solution satisfies $y_i'' = -p\,y_i' - q\,y_i$. Substitute:

$$ W' = y_1(-p y_2' - q y_2) - y_2(-p y_1' - q y_1) = -p\,(y_1 y_2' - y_2 y_1') = -p\,W. $$

This is a first-order linear equation $W' = -p\,W$, whose solution is $W(t) = W(t_0)\exp\!\big(-\int_{t_0}^t p\,ds\big)$. The exponential is always positive, so $W$ keeps a fixed sign or is identically zero.

朗斯基行列式与参数变分法(variation of parameters)紧密相关:求非齐次方程 $ay'' + by' + cy = g$ 的特解时,公式为 $y_p = -y_1\int\frac{y_2\,g}{a\,W}\,dt + y_2\int\frac{y_1\,g}{a\,W}\,dt$,其中 $W$ 出现在分母。若 $W = 0$,则公式失效,这再次说明线性无关性($W \ne 0$)对方法的适用性至关重要。

What does $W(y_1, y_2)(t_0) \ne 0$ tell you about $y_1$ and $y_2$?$W(y_1, y_2)(t_0) \ne 0$ 告诉你关于 $y_1$ 与 $y_2$ 的什么信息?
6.1
They are equal at $t_0$.它们在 $t_0$ 处相等。
They are linearly independent and form a fundamental set.它们线性无关,构成基本解组。
They are linearly dependent.它们线性相关。
They have the same derivative at $t_0$.它们在 $t_0$ 处的导数相同。
Correct. A nonzero Wronskian at one point certifies linear independence, so the pair is a fundamental set.正确。某点处朗斯基行列式不为零就确认了线性无关性,该对构成基本解组。
A nonvanishing Wronskian is the test for linear independence; the pair then spans all solutions.朗斯基行列式不为零是线性无关性的检验;该对则张成所有解。
The Wronskian of $y_1 = \cos 2t$ and $y_2 = \sin 2t$ is:$y_1 = \cos 2t$ 与 $y_2 = \sin 2t$ 的朗斯基行列式是:
6.2
$0$
$1$
$-2$
$2$
Correct. $W = \cos 2t(2\cos 2t) - \sin 2t(-2\sin 2t) = 2\cos^2 2t + 2\sin^2 2t = 2$.正确。$W = \cos 2t(2\cos 2t) - \sin 2t(-2\sin 2t) = 2\cos^2 2t + 2\sin^2 2t = 2$。
Compute $y_1 y_2' - y_2 y_1' = \cos 2t(2\cos 2t) - \sin 2t(-2\sin 2t) = 2$.计算 $y_1 y_2' - y_2 y_1' = \cos 2t(2\cos 2t) - \sin 2t(-2\sin 2t) = 2$。

Going Deeper深入探讨

The constant-coefficient theory has a clean structure worth seeing as a whole, and it connects directly to the most important model in applied mathematics: the damped harmonic oscillator. We also note how everything generalizes to higher order.

本节汇集三类根情形的统一视角,探讨更高阶方程的推广、系统形式(system form),以及与矩阵指数(matrix exponential)的关联。

Key idea. The three solution forms (distinct real, complex, repeated roots) are the three cases of the discriminant $b^2 - 4ac$. For the mechanical model $m y'' + b y' + k y = 0$ they correspond to overdamping, underdamping, and critical damping.

核心思想。三类根(不同实根、复根、重根)对应特征方程的三种代数情形,且与一阶线性系统 $\mathbf{x}' = A\mathbf{x}$ 的特征值问题完全类比:实特征值对应指数模态,复特征值对应振荡衰减模态,Jordan 块对应重特征值与多项式-指数解。
Damped harmonic oscillator and its three regimes
$$ m\,y'' + b\,y' + k\,y = 0, \qquad r = \frac{-b \pm \sqrt{b^2 - 4mk}}{2m}. $$ $$ b^2 > 4mk:\ \text{overdamped}, \quad b^2 = 4mk:\ \text{critically damped}, \quad b^2 < 4mk:\ \text{underdamped}. $$

The same characteristic-equation idea extends to order $n$: a constant-coefficient equation of order $n$ has characteristic polynomial of degree $n$, and a root of multiplicity $k$ contributes the solutions $e^{rt}, t e^{rt}, \ldots, t^{k-1} e^{rt}$. Complex conjugate roots contribute the corresponding sine and cosine families with the same $t$-power pattern.

$n$ 阶常系数线性齐次 ODE $a_n y^{(n)} + \cdots + a_0 y = 0$ 的特征方程为 $a_n r^n + \cdots + a_0 = 0$,有 $n$ 个根(计重数)。每个不同实根 $r$ 贡献 $e^{rt}$,重数为 $m$ 的根贡献 $e^{rt}, te^{rt}, \ldots, t^{m-1}e^{rt}$,复共轭对 $\alpha \pm \beta i$ 贡献 $e^{\alpha t}\cos\beta t$ 与 $e^{\alpha t}\sin\beta t$(类似地处理重数)。通解是这 $n$ 个基本解的线性组合。

Going deeper: classifying a spring-mass system

A mass $m = 1$ hangs on a spring with stiffness $k = 4$ and damping $b$. Classify the motion as $b$ varies, and find the borderline value.

The equation is $y'' + b y' + 4y = 0$ with discriminant $b^2 - 16$. The borderline (critical damping) is $b^2 = 16$, that is $b = 4$.

For $b > 4$ the roots are distinct and negative (overdamped, monotone return). For $b = 4$ the root is repeated, $r = -2$, giving $y = (c_1 + c_2 t)e^{-2t}$ (critical, fastest non-oscillatory return). For $0 < b < 4$ the roots are $-\tfrac{b}{2} \pm i\sqrt{4 - b^2/4}$, an underdamped decaying oscillation.

For example $b = 5$ gives $r^2 + 5r + 4 = (r+1)(r+4) = 0$, roots $-1, -4$: overdamped, $y = c_1 e^{-t} + c_2 e^{-4t}$.

将 $y'' + by' + cy = 0$ 化为一阶系统 $\mathbf{x}' = A\mathbf{x}$,令 $x_1 = y$,$x_2 = y'$,则

$$ A = \begin{pmatrix} 0 & 1 \\ -c & -b \end{pmatrix}, \quad \mathbf{x}' = A\mathbf{x}. $$

$A$ 的特征多项式恰好是 $\lambda^2 + b\lambda + c = 0$,与原 ODE 的特征方程一致。矩阵指数 $e^{At}$ 给出解算子,三类根对应 $A$ 的三类若当形式(Jordan forms)。

Worked Example 7.1: a third-order equation

Solve $y''' - y'' - y' + y = 0$.

The characteristic equation is $r^3 - r^2 - r + 1 = 0$. Group: $r^2(r - 1) - (r - 1) = (r - 1)(r^2 - 1) = (r - 1)^2(r + 1)$.

So $r = 1$ is a double root and $r = -1$ is simple. The double root contributes $e^{t}$ and $t e^{t}$; the simple root contributes $e^{-t}$.

$$ y(t) = (c_1 + c_2 t)\,e^{t} + c_3 e^{-t}. $$

$n$ 阶常系数线性齐次 ODE $a_n y^{(n)} + \cdots + a_0 y = 0$ 的特征方程为 $a_n r^n + \cdots + a_0 = 0$,有 $n$ 个根(计重数)。每个不同实根 $r$ 贡献 $e^{rt}$,重数为 $m$ 的根贡献 $e^{rt}, te^{rt}, \ldots, t^{m-1}e^{rt}$,复共轭对 $\alpha \pm \beta i$ 贡献 $e^{\alpha t}\cos\beta t$ 与 $e^{\alpha t}\sin\beta t$(类似地处理重数)。通解是这 $n$ 个基本解的线性组合。

Worked Example 7.2: a fourth-order equation with a repeated complex pair

Solve $y'''' + 2y'' + y = 0$.

Characteristic equation: $r^4 + 2r^2 + 1 = (r^2 + 1)^2 = 0$. The roots are $r = \pm i$, each of multiplicity $2$. A complex pair $\lambda \pm i\mu$ of multiplicity $2$ contributes the four real solutions $\cos\mu t,\ \sin\mu t,\ t\cos\mu t,\ t\sin\mu t$ (here $\lambda = 0$, $\mu = 1$).

$$ y(t) = c_1\cos t + c_2\sin t + c_3\, t\cos t + c_4\, t\sin t. $$

The extra factor of $t$ on the second copy of each function is the same multiplicity rule seen for repeated real roots, applied to the trigonometric family. This is the resonance shape that reappears when forcing in Unit D4.

矩阵指数(matrix exponential)$e^{At} = \sum_{k=0}^\infty \frac{(At)^k}{k!}$ 给出一阶系统 $\mathbf{x}' = A\mathbf{x}$ 的解 $\mathbf{x}(t) = e^{At}\mathbf{x}_0$。计算 $e^{At}$ 时,通过若当分解(Jordan decomposition)$A = PJP^{-1}$,得 $e^{At} = Pe^{Jt}P^{-1}$,其中 $e^{Jt}$ 对角块对应三类根的函数形式。这将整个二阶 ODE 理论纳入线性代数框架。

Worked Example 7.3: reading the regime from the discriminant

An RLC circuit obeys $L q'' + R q' + \tfrac{1}{C} q = 0$ with $L = 1$, $C = 1/4$, so $\tfrac{1}{C} = 4$, and resistance $R$. Find the value of $R$ that gives critical damping, and classify $R = 3$.

The equation is $q'' + R q' + 4q = 0$ with discriminant $R^2 - 16$. Critical damping is the borderline $R^2 = 16$, that is $R = 4$ (taking $R > 0$).

For $R = 3$: $R^2 - 16 = 9 - 16 = -7 < 0$, so the roots are complex, $r = -\tfrac{3}{2} \pm i\sqrt{4 - 9/4} = -\tfrac{3}{2} \pm i\tfrac{\sqrt 7}{2}$. The circuit is underdamped: the charge oscillates while decaying, with envelope $e^{-3t/2}$ and angular frequency $\tfrac{\sqrt 7}{2}$.

在处理高阶方程时,将复根对计为两个独立根但只写一个实值解(遗漏 $\sin$ 项或 $\cos$ 项),或将重数为 $m$ 的根只贡献一个基本解而非 $m$ 个。务必根据代数重数写出完整的基本解组。

(此示例说明高阶情形的典型错误,对比理解 7.2 的四个独立解。)

Common error. When extending to higher order, students often forget that a root of multiplicity $k$ needs $k$ solutions, not one. A factor $(r - r_0)^3$ contributes $e^{r_0 t}, t e^{r_0 t}, t^2 e^{r_0 t}$, and a repeated complex pair $(r^2 + \mu^2)^2$ contributes both the plain and the $t$-multiplied sine and cosine. Count solutions against the degree of the polynomial: an order-$n$ equation must yield exactly $n$ independent solutions, so if your count falls short, you are missing a $t$-power.
常见错误。在处理高阶方程时,将复根对计为两个独立根但只写一个实值解(遗漏 $\sin$ 项或 $\cos$ 项),或将重数为 $m$ 的根只贡献一个基本解而非 $m$ 个。务必根据代数重数写出完整的基本解组。
In the model $m y'' + b y' + k y = 0$, the system is critically damped when:在模型 $m y'' + b y' + k y = 0$ 中,系统处于临界阻尼的条件是:
7.1
$b^2 < 4mk$
$b = 0$
$b^2 = 4mk$
$b^2 > 4mk$
Correct. Critical damping is the borderline of a repeated root, the discriminant condition $b^2 = 4mk$.正确。临界阻尼是重根的边界,即判别式条件 $b^2 = 4mk$。
A repeated characteristic root occurs exactly when the discriminant vanishes: $b^2 = 4mk$.当判别式为零时恰好出现重特征根:$b^2 = 4mk$。

Flashcards闪卡

0 / 12 flipped0 / 12 已翻转
Second-order linear homogeneous ODE二阶线性齐次 ODE
$a\,y'' + b\,y' + c\,y = 0$. Solutions form a two-dimensional space.$a\,y'' + b\,y' + c\,y = 0$。解构成二维向量空间。
Superposition principle叠加原理
If $L[y_1]=0$ and $L[y_2]=0$ then $L[c_1 y_1 + c_2 y_2]=0$.若 $L[y_1]=0$ 且 $L[y_2]=0$,则 $L[c_1 y_1 + c_2 y_2]=0$。
Characteristic equation特征方程
Substitute $y=e^{rt}$ to get $a r^2 + b r + c = 0$, with $r = \dfrac{-b\pm\sqrt{b^2-4ac}}{2a}$.代入 $y=e^{rt}$ 得 $a r^2 + b r + c = 0$,$r = \dfrac{-b\pm\sqrt{b^2-4ac}}{2a}$。
Distinct real roots $r_1 \ne r_2$不同实根 $r_1 \ne r_2$
$y = c_1 e^{r_1 t} + c_2 e^{r_2 t}$.$y = c_1 e^{r_1 t} + c_2 e^{r_2 t}$。
Complex roots $\lambda \pm i\mu$复根 $\lambda \pm i\mu$
$y = e^{\lambda t}(c_1\cos\mu t + c_2\sin\mu t)$, via Euler's formula.$y = e^{\lambda t}(c_1\cos\mu t + c_2\sin\mu t)$,由 Euler 公式得。
Repeated root $r$重根 $r$
$y = (c_1 + c_2 t)\,e^{rt}$. The factor $t$ supplies the second solution.$y = (c_1 + c_2 t)\,e^{rt}$。因子 $t$ 提供第二个解。
Reduction of order ansatz降阶法的试探形式
$y_2 = v(t)\,y_1$; the undifferentiated $v$ term cancels, leaving a first-order equation in $v'$.$y_2 = v(t)\,y_1$;未微分的 $v$ 项消去,留下关于 $v'$ 的一阶方程。
Reduction-of-order formula降阶法公式
$y_2 = y_1\displaystyle\int \frac{e^{-\int p\,dt}}{y_1^{\,2}}\,dt$ for $y'' + p y' + q y = 0$.$y_2 = y_1\displaystyle\int \frac{e^{-\int p\,dt}}{y_1^{\,2}}\,dt$,适用于 $y'' + p y' + q y = 0$。
Wronskian朗斯基行列式
$W = y_1 y_2' - y_2 y_1'$. $W(t_0)\ne 0$ means $y_1, y_2$ are linearly independent.$W = y_1 y_2' - y_2 y_1'$。$W(t_0)\ne 0$ 表明 $y_1, y_2$ 线性无关。
Abel's identityAbel 恒等式
$W(t) = W(t_0)\exp\!\big(-\int_{t_0}^t p\,ds\big)$. So $W$ is never zero or identically zero.$W(t) = W(t_0)\exp\!\big(-\int_{t_0}^t p\,ds\big)$。故 $W$ 要么处处非零,要么恒为零。
Three damping regimes of $m y'' + b y' + k y = 0$$m y'' + b y' + k y = 0$ 的三种阻尼状态
$b^2 > 4mk$ overdamped; $b^2 = 4mk$ critically damped; $b^2 < 4mk$ underdamped.$b^2 > 4mk$ 过阻尼;$b^2 = 4mk$ 临界阻尼;$b^2 < 4mk$ 欠阻尼。
Higher-order roots高阶方程的根
A root of multiplicity $k$ contributes $e^{rt}, t e^{rt}, \ldots, t^{k-1} e^{rt}$.重数为 $k$ 的根贡献 $e^{rt}, t e^{rt}, \ldots, t^{k-1} e^{rt}$。

Unit Quiz单元测验

The general solution of $y'' - y' - 12y = 0$ is:$y'' - y' - 12y = 0$ 的通解是:
Q.1
$c_1 e^{3t} + c_2 e^{4t}$
$c_1 e^{4t} + c_2 e^{-3t}$
$(c_1 + c_2 t)e^{4t}$
$e^{4t}(c_1\cos 3t + c_2\sin 3t)$
Correct. $r^2 - r - 12 = (r - 4)(r + 3) = 0$, roots $4$ and $-3$, so $c_1 e^{4t} + c_2 e^{-3t}$.正确。$r^2 - r - 12 = (r-4)(r+3) = 0$,根为 $4$ 和 $-3$,故通解为 $c_1 e^{4t} + c_2 e^{-3t}$。
Factor $(r-4)(r+3)$: the roots are $4$ and $-3$.因式分解 $(r-4)(r+3)$:根为 $4$ 和 $-3$。
The roots of the characteristic equation for $y'' + 4y' + 13y = 0$ are:$y'' + 4y' + 13y = 0$ 的特征根为:
Q.2
$-2, -11$
$2 \pm 3i$
$-2 \pm 3i$
$-2$ (repeated / 重根)
Correct. $r = \dfrac{-4 \pm \sqrt{16 - 52}}{2} = \dfrac{-4 \pm \sqrt{-36}}{2} = -2 \pm 3i$.正确。$r = \dfrac{-4 \pm \sqrt{16 - 52}}{2} = -2 \pm 3i$。
The discriminant is $16 - 52 = -36$, so $r = -2 \pm 3i$.判别式为 $16 - 52 = -36$,故 $r = -2 \pm 3i$。
A repeated characteristic root $r = -5$ gives the general solution:重特征根 $r = -5$ 对应的通解是:
Q.3
$(c_1 + c_2 t)\,e^{-5t}$
$c_1 e^{-5t} + c_2 e^{5t}$
$c_1 e^{-5t} + c_2$
$e^{-5t}(c_1\cos 5t + c_2\sin 5t)$
Correct. A repeated root contributes $e^{-5t}$ and $t e^{-5t}$, so $y = (c_1 + c_2 t)e^{-5t}$.正确。重根贡献 $e^{-5t}$ 和 $t e^{-5t}$,故 $y = (c_1 + c_2 t)e^{-5t}$。
The second independent solution carries a factor of $t$: $(c_1 + c_2 t)e^{-5t}$.第二个独立解带有因子 $t$:$(c_1 + c_2 t)e^{-5t}$。
Given one solution $y_1$, reduction of order produces a second solution by:已知一个解 $y_1$,降阶法通过以下方式求第二个解:
Q.4
squaring $y_1$对 $y_1$ 取平方
differentiating $y_1$对 $y_1$ 求导
adding a constant to $y_1$对 $y_1$ 加一个常数
substituting $y_2 = v(t)\,y_1$ and solving for $v$令 $y_2 = v(t)\,y_1$ 并求解 $v$
Correct. The ansatz $y_2 = v y_1$ reduces the problem to a first-order equation for $v'$.正确。令 $y_2 = v y_1$ 将问题化为关于 $v'$ 的一阶方程。
Reduction of order multiplies the known solution by an unknown $v(t)$ and solves the resulting first-order equation.降阶法将已知解乘以未知函数 $v(t)$,然后求解所得的一阶方程。
If $W(y_1, y_2)(t) = 0$ for all $t$ on an interval where the coefficients are continuous, then $y_1$ and $y_2$ are:若在系数连续的区间上 $W(y_1, y_2)(t) = 0$ 恒成立,则 $y_1$ 与 $y_2$:
Q.5
a fundamental set构成基本解组
always orthogonal总是正交的
linearly dependent线性相关
both zero都是零函数
Correct. A Wronskian that is identically zero (for solutions on a common interval) signals linear dependence.正确。朗斯基行列式恒为零(对公共区间上的解)表明线性相关。
By Abel's identity $W$ is either never zero or identically zero; the latter case means the solutions are linearly dependent.由 Abel 恒等式,$W$ 要么处处非零,要么恒为零;后者意味着解线性相关。
For the spring-mass system $y'' + b y' + 9y = 0$, oscillation (underdamping) occurs when:对弹簧-质量系统 $y'' + b y' + 9y = 0$,出现振荡(欠阻尼)的条件是:
Q.6
$b > 6$
$0 < b < 6$
$b = 6$
$b > 9$
Correct. Underdamping needs $b^2 < 4mk = 36$, that is $b < 6$ (with $b > 0$).正确。欠阻尼需要 $b^2 < 4mk = 36$,即 $b < 6$($b > 0$)。
With $m = 1$, $k = 9$, complex roots require $b^2 < 36$, so $0 < b < 6$.取 $m = 1$,$k = 9$,复根要求 $b^2 < 36$,故 $0 < b < 6$。

Readiness Checklist掌握度清单

Tap each item you can do without notes.勾选每一项你无需笔记即可完成的内容。 0 / 8 mastered