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

Unit D7: Systems of First-Order Linear ODEsUnit D7: 一阶线性微分方程组

Reduce higher-order equations to first-order systems, solve constant-coefficient systems by the eigenvalue method, and classify the phase plane by stability.

将高阶方程化为一阶方程组,用特征值法求解常系数方程组,并通过稳定性分析刻画相图。

Calculus IV ODEs Differential Equations MIT 18.03 / GT 2552
Read me first.阅读须知。 This unit treats the linear system $\mathbf{x}' = A\mathbf{x}$ as the central object of differential equations. We reduce any higher-order equation to first-order form, build the general solution from eigenvalues and eigenvectors, handle the complex and repeated cases, and read off stability from the trace and determinant. Work each example by hand before checking the solution, and treat the matrix exponential in Section 7 as the unifying viewpoint. 本单元以线性方程组 $\mathbf{x}' = A\mathbf{x}$ 为核心。我们将高阶方程化为一阶形式,利用特征值和特征向量构造通解,处理复数根和重根情形,并从迹和行列式读出稳定性。每道例题请先自行动手,再查看解答;第7节的矩阵指数是贯穿全章的统一视角。

From Higher-Order Equations to Systems从高阶方程到方程组

Key idea.核心思想。 Any $n$th-order linear ODE can be rewritten as a system of $n$ first-order equations by naming the successive derivatives as new unknowns. A system is therefore the natural common language for ODE theory: existence and uniqueness, the structure of the general solution, and numerical integration are all cleanest in first-order form. 任何 $n$ 阶线性微分方程都可以通过引入 $x_1=y,\;x_2=y',\;\dots,\;x_n=y^{(n-1)}$ 化为 $n$ 个一阶方程组成的线性微分方程组。方程组写成矩阵形式 $\mathbf{x}'=A\mathbf{x}+\mathbf{g}$,是微分方程理论的自然语言。

Consider a scalar equation of order $n$. Introduce the variables $x_1 = y$, $x_2 = y'$, up through $x_n = y^{(n-1)}$. Each new variable is the derivative of the previous one, and the original equation supplies the derivative of the last. The result is a first-order system in the vector unknown $\mathbf{x} = (x_1, \dots, x_n)$.

Reduction of an $n$th-order equation
$$ y^{(n)} = f\big(t, y, y', \dots, y^{(n-1)}\big) \;\;\Longrightarrow\;\; \begin{cases} x_1' = x_2 \\ x_2' = x_3 \\ \;\;\vdots \\ x_n' = f(t, x_1, \dots, x_n). \end{cases} $$

A linear first-order system in $n$ unknowns has the form $x_i' = \sum_j a_{ij}(t)\, x_j + g_i(t)$, which we write compactly as $\mathbf{x}' = A(t)\,\mathbf{x} + \mathbf{g}(t)$. When $A$ is a constant matrix and $\mathbf{g} = \mathbf{0}$ the system is homogeneous with constant coefficients, the case solved completely by the eigenvalue method of Sections 3 through 5.

Existence and uniqueness for first-order systems
$$ \mathbf{x}' = A(t)\,\mathbf{x} + \mathbf{g}(t), \quad \mathbf{x}(t_0) = \mathbf{x}_0 $$

If $A(t)$ and $\mathbf{g}(t)$ are continuous on an open interval containing $t_0$, the initial value problem has a unique solution on that entire interval. For linear systems there is no shrinking of the interval of existence: the solution lives wherever the coefficients do.

Worked Example 1.1: reducing a spring equation例题 1.1:弹簧方程的化简

Reduce $y'' + 3y' + 2y = 0$ to a first-order system.

Set $x_1 = y$ and $x_2 = y'$. Then $x_1' = x_2$, and solving the equation for $y''$ gives $x_2' = y'' = -3y' - 2y = -2x_1 - 3x_2$.

$$ \begin{pmatrix} x_1' \\ x_2' \end{pmatrix} = \begin{pmatrix} 0 & 1 \\ -2 & -3 \end{pmatrix} \begin{pmatrix} x_1 \\ x_2 \end{pmatrix}. $$

The coefficient matrix is the companion matrix of the characteristic polynomial $\lambda^2 + 3\lambda + 2$. Its eigenvalues, $-1$ and $-2$, are exactly the roots of that polynomial.

Worked Example 1.2: a coupled system that is not from one scalar equation例题 1.2:不来自单个标量方程的耦合方程组

Reduction runs only one way for a single scalar equation, but many genuine systems arise directly from modelling. Consider two tanks. Tank 1 holds salt amount $x_1(t)$, tank 2 holds $x_2(t)$, brine is pumped between them, and the mixing rates give

$$ x_1' = -2x_1 + x_2, \qquad x_2' = 2x_1 - 3x_2. $$

In matrix form this is $\mathbf{x}' = A\mathbf{x}$ with $A = \begin{pmatrix} -2 & 1 \\ 2 & -3 \end{pmatrix}$. There is no single second-order equation that we reduced; the system is the primary object. Note both column sums are not equal, so total salt is not conserved, which is physically correct here because each tank also drains to the outside.

We can still eliminate to a scalar equation if we wish. Differentiate the first equation and substitute the second: $x_1'' = -2x_1' + x_2' = -2x_1' + (2x_1 - 3x_2)$. From the first equation $x_2 = x_1' + 2x_1$, so $x_1'' = -2x_1' + 2x_1 - 3(x_1' + 2x_1) = -5x_1' - 4x_1$, giving $x_1'' + 5x_1' + 4x_1 = 0$. The roots $-1$ and $-4$ are exactly the eigenvalues of $A$, confirming the two viewpoints agree.

Worked Example 1.3: a nonhomogeneous third-order reduction例题 1.3:非齐次三阶方程的化简

Reduce $y''' + 2y'' - y' + 4y = \sin t$ to a first-order system.

Set $x_1 = y$, $x_2 = y'$, $x_3 = y''$. Then $x_1' = x_2$, $x_2' = x_3$, and solving the equation for the top derivative gives $x_3' = y''' = -2y'' + y' - 4y + \sin t = -4x_1 + x_2 - 2x_3 + \sin t$.

$$ \mathbf{x}' = \begin{pmatrix} 0 & 1 & 0 \\ 0 & 0 & 1 \\ -4 & 1 & -2 \end{pmatrix}\mathbf{x} + \begin{pmatrix} 0 \\ 0 \\ \sin t \end{pmatrix}. $$

The forcing enters only the last component, the same row that carried the top derivative. This is the general pattern: a scalar forcing $g(t)$ becomes the vector $\mathbf{g} = (0,\dots,0,g(t))^{\mathsf T}$, and the matrix is always the companion matrix of the homogeneous part.

Common error.常见错误。 A frequent slip is to write the last row of the companion matrix with the coefficients in the wrong sign or wrong order. For $y^{(n)} + a_{n-1}y^{(n-1)} + \cdots + a_0 y = 0$, the bottom row is $(-a_0,\, -a_1,\, \dots,\, -a_{n-1})$: every coefficient is moved to the other side and so flips sign, and they appear in increasing derivative order left to right because $x_1=y$ sits leftmost. Always re-derive it by solving the original equation for $y^{(n)}$ rather than copying a memorized template, and sanity-check by confirming the matrix's characteristic polynomial equals the original characteristic polynomial. 伴随矩阵最后一行的系数容易写错符号或顺序。对方程 $y^{(n)} + a_{n-1}y^{(n-1)} + \cdots + a_0 y = 0$,底行为 $(-a_0,\,-a_1,\,\dots,\,-a_{n-1})$:每个系数移项后变号,且按导数阶次从左到右排列,因为 $x_1=y$ 在最左边。始终对整行做完整检验。
Going deeper: the companion matrix and its characteristic polynomial深入探讨:伴随矩阵及其特征多项式

Claim: the companion matrix $C$ of $p(\lambda) = \lambda^n + a_{n-1}\lambda^{n-1} + \cdots + a_0$ has characteristic polynomial $\det(\lambda I - C) = p(\lambda)$. We prove it by induction on $n$ using cofactor expansion along the first column.

Write $C$ with superdiagonal ones and bottom row $(-a_0, -a_1, \dots, -a_{n-1})$. Expanding $\det(\lambda I - C)$ down its first column, only two entries are nonzero: the top-left $\lambda$ and the bottom-left $a_0$. The $\lambda$ minor is the same determinant for the order $n-1$ companion matrix of $\lambda^{n-1} + a_{n-1}\lambda^{n-2} + \cdots + a_1$, which by induction equals $\lambda^{n-1} + a_{n-1}\lambda^{n-2} + \cdots + a_1$. The bottom-left cofactor, after tracking the sign $(-1)^{n+1}$ and the upper-triangular minor of all $-1$ entries, contributes exactly $a_0$.

$$ \det(\lambda I - C) = \lambda\big(\lambda^{n-1} + a_{n-1}\lambda^{n-2} + \cdots + a_1\big) + a_0 = \lambda^n + a_{n-1}\lambda^{n-1} + \cdots + a_1\lambda + a_0. $$

So the eigenvalues of the system matrix are precisely the characteristic roots of the scalar equation. This is why reducing to a system loses no information: the spectral data is identical. The base case $n=1$ is $\det(\lambda - (-a_0)) = \lambda + a_0$, which matches.

Reducing $y''' - 2y'' + y = 0$ with $x_1=y,\;x_2=y',\;x_3=y''$, what is $x_3'$?将 $y''' - 2y'' + y = 0$ 化为一阶方程组,令 $x_1=y,\;x_2=y',\;x_3=y''$,则 $x_3'$ 是什么?
1.1
$x_3' = x_2$
$x_3' = -x_1 + 2x_3$
$x_3' = 2x_1 - x_3$
$x_3' = x_1 + 2x_2$
Correct. Since $x_3 = y''$, we have $x_3' = y''' = 2y'' - y = 2x_3 - x_1$.正确。因为 $x_3 = y''$,所以 $x_3' = y''' = 2y'' - y = 2x_3 - x_1$。
Solve the original equation for the highest derivative: $y''' = 2y'' - y$, then substitute $y''=x_3$ and $y=x_1$.对最高阶导数求解原方程:$y''' = 2y'' - y$,然后代入 $y''=x_3$,$y=x_1$。

Matrix Form矩阵形式与存在性理论

Key idea.核心思想。 The homogeneous system $\mathbf{x}' = A\mathbf{x}$ has a solution space that is an $n$-dimensional vector space. A set of $n$ solutions is a basis, called a fundamental set, exactly when their Wronskian (the determinant of the matrix whose columns are those solutions) is nonzero. Every solution is a constant-coefficient combination of a fundamental set. 齐次方程组 $\mathbf{x}'=A\mathbf{x}$ 的解空间是 $n$ 维向量空间。任意基解矩阵 $\Psi(t)$ 满足 $\Psi'=A\Psi$,且其朗斯基行列式满足阿贝尔定理:$W(t)=W(t_0)e^{\int_{t_0}^{t}\operatorname{tr}A\,ds}$,对所有 $t$ 均非零。

Let $\mathbf{x}^{(1)}, \dots, \mathbf{x}^{(n)}$ be solutions of $\mathbf{x}' = A(t)\mathbf{x}$. Assemble them as the columns of a matrix $\Psi(t) = [\,\mathbf{x}^{(1)} \mid \cdots \mid \mathbf{x}^{(n)}\,]$, called a solution matrix. The Wronskian is $W(t) = \det \Psi(t)$.

Fundamental matrix and general solution
$$ \Psi'(t) = A(t)\,\Psi(t), \qquad \mathbf{x}(t) = \Psi(t)\,\mathbf{c}, \qquad \mathbf{c} \in \mathbb{R}^n. $$

By Abel's theorem the Wronskian of solutions satisfies $W'(t) = \operatorname{tr} A(t)\, W(t)$, so $W(t) = W(t_0)\exp\!\big(\int_{t_0}^t \operatorname{tr} A(s)\,ds\big)$. The exponential is never zero, hence $W$ is either identically zero or never zero. If $W \neq 0$ the columns form a fundamental set and $\Psi$ is a fundamental matrix.

Solving an initial value problem
$$ \mathbf{x}(t) = \Psi(t)\,\Psi(t_0)^{-1}\,\mathbf{x}_0. $$
Worked Example 2.1: checking a fundamental set例题 2.1:验证基解集合

For $\mathbf{x}' = \begin{pmatrix} 1 & 1 \\ 4 & 1 \end{pmatrix}\mathbf{x}$, verify that $\mathbf{x}^{(1)} = e^{3t}\binom{1}{2}$ and $\mathbf{x}^{(2)} = e^{-t}\binom{1}{-2}$ form a fundamental set.

Each is a solution (it is an eigenvector times $e^{\lambda t}$, checked in Section 3). The Wronskian is

$$ W = \det \begin{pmatrix} e^{3t} & e^{-t} \\ 2e^{3t} & -2e^{-t} \end{pmatrix} = -2e^{2t} - 2e^{2t} = -4e^{2t} \neq 0. $$

Since $W$ is never zero, the two solutions are linearly independent and the general solution is $\mathbf{x} = c_1 e^{3t}\binom{1}{2} + c_2 e^{-t}\binom{1}{-2}$.

Going deeper: why Abel's theorem makes the Wronskian all-or-nothing深入探讨:阿贝尔定理为何使朗斯基行列式全有或全无

Differentiate $W = \det \Psi$ column by column. The derivative of a determinant is the sum over columns of the determinant with that one column differentiated. Replacing the $k$th column $\mathbf{x}^{(k)}$ by $\mathbf{x}^{(k)\prime} = A\mathbf{x}^{(k)}$ and using multilinearity, each off-diagonal contribution of $A$ produces a repeated column and vanishes; only the diagonal entries $a_{kk}$ survive.

$$ W'(t) = \Big(\sum_k a_{kk}(t)\Big) W(t) = \operatorname{tr} A(t)\, W(t). $$

This scalar linear ODE has solution $W(t) = W(t_0)\exp\!\big(\int_{t_0}^t \operatorname{tr} A\big)$. The exponential factor is strictly positive, so the sign and the vanishing of $W$ are decided entirely by $W(t_0)$. Thus $W$ is everywhere zero or nowhere zero.

Worked Example 2.2: solving an IVP through the fundamental matrix例题 2.2:通过基解矩阵求解初值问题

Continuing the previous system $\mathbf{x}' = \begin{pmatrix} 1 & 1 \\ 4 & 1 \end{pmatrix}\mathbf{x}$, solve the initial value problem with $\mathbf{x}(0) = \binom{2}{0}$.

A fundamental matrix is $\Psi(t) = \begin{pmatrix} e^{3t} & e^{-t} \\ 2e^{3t} & -2e^{-t} \end{pmatrix}$. At $t=0$, $\Psi(0) = \begin{pmatrix} 1 & 1 \\ 2 & -2 \end{pmatrix}$ with determinant $-4$, so

$$ \Psi(0)^{-1} = \frac{1}{-4}\begin{pmatrix} -2 & -1 \\ -2 & 1 \end{pmatrix} = \begin{pmatrix} 1/2 & 1/4 \\ 1/2 & -1/4 \end{pmatrix}. $$

The constants are $\mathbf{c} = \Psi(0)^{-1}\mathbf{x}_0 = \begin{pmatrix} 1/2 & 1/4 \\ 1/2 & -1/4 \end{pmatrix}\binom{2}{0} = \binom{1}{1}$. Hence

$$ \mathbf{x}(t) = \Psi(t)\binom{1}{1} = e^{3t}\binom{1}{2} + e^{-t}\binom{1}{-2}. $$

Check at $t=0$: $\binom{1}{2} + \binom{1}{-2} = \binom{2}{0}$, the required initial data. The formula $\mathbf{x}(t) = \Psi(t)\Psi(t_0)^{-1}\mathbf{x}_0$ packages exactly this computation.

Worked Example 2.3: a Wronskian that is identically zero例题 2.3:恒为零的朗斯基行列式

Suppose someone proposes $\mathbf{x}^{(1)} = e^{3t}\binom{1}{2}$ and $\mathbf{x}^{(2)} = 5e^{3t}\binom{1}{2}$ as a candidate fundamental set. Their Wronskian is

$$ W = \det\begin{pmatrix} e^{3t} & 5e^{3t} \\ 2e^{3t} & 10e^{3t} \end{pmatrix} = 10e^{6t} - 10e^{6t} = 0 \quad\text{for all } t. $$

Abel's theorem then guarantees $W \equiv 0$, which is consistent: the second solution is a scalar multiple of the first, so the pair spans only a one-dimensional subspace, not the full two-dimensional solution space. A fundamental set requires the columns to be linearly independent, which the nonvanishing of $W$ at a single point already certifies for solutions of the same linear system.

Common error.常见错误。 The Wronskian dichotomy (everywhere zero or nowhere zero) holds only for functions that are genuine solutions of the same linear system $\mathbf{x}' = A(t)\mathbf{x}$. For arbitrary vector functions it can fail: one can write down two vector functions whose Wronskian vanishes at isolated points yet which are linearly independent, and others that are linearly dependent on subintervals only. Never conclude independence from $W \neq 0$ unless you have first confirmed each column actually solves the system, and never conclude dependence from $W = 0$ at a single $t$ without Abel's theorem in hand. 朗斯基行列式的二分性(处处为零或处处非零)仅对同一线性方程组 $\mathbf{x}'=A(t)\mathbf{x}$ 的真实解成立。对任意向量函数则可能失效。切勿仅凭行列式在某点为零就断言线性相关;必须先确认各列确实是同一方程组的解,再使用阿贝尔定理。
Two solutions of a $2\times 2$ system have Wronskian $W(0) = 5$. By Abel's theorem with $\operatorname{tr} A = -2$ (constant), what is $W(t)$?某 $2\times 2$ 方程组的两个解满足 $W(0)=5$。由阿贝尔定理,当 $\operatorname{tr}A=-2$(常数)时,$W(t)$ 为?
2.1
$W(t) = 5 - 2t$
$W(t) = 5e^{2t}$
$W(t) = 0$ for $t>0$
$W(t) = 5e^{-2t}$
Correct. $W(t) = W(0)\exp(\int_0^t \operatorname{tr}A\,ds) = 5e^{-2t}$, which never vanishes.正确。$W(t)=W(0)\exp(\int_0^t\operatorname{tr}A\,ds)=5e^{-2t}$,永远不为零。
Use $W(t) = W(0)e^{(\operatorname{tr}A)\,t}$ with $\operatorname{tr}A = -2$.使用 $W(t)=W(0)e^{(\operatorname{tr}A)t}$,代入 $\operatorname{tr}A=-2$。

The Eigenvalue Method: Real Distinct特征值法:实不同根

Key idea.核心思想。 Seek solutions of $\mathbf{x}' = A\mathbf{x}$ of the form $\mathbf{x} = e^{\lambda t}\mathbf{v}$. Substituting reduces the differential equation to the algebraic eigenvalue problem $A\mathbf{v} = \lambda\mathbf{v}$. Each eigenpair gives one solution; if $A$ has $n$ real distinct eigenvalues, their eigenvectors are independent and produce the full fundamental set. 对 $\mathbf{x}'=A\mathbf{x}$ 寻求形如 $\mathbf{x}=e^{\lambda t}\mathbf{v}$ 的解,代入后转化为代数特征值问题 $A\mathbf{v}=\lambda\mathbf{v}$。每个特征对给出一个解;若 $A$ 有 $n$ 个实不同特征值,其特征向量线性无关,构成完整的基解集合。

Plugging $\mathbf{x} = e^{\lambda t}\mathbf{v}$ into $\mathbf{x}' = A\mathbf{x}$ gives $\lambda e^{\lambda t}\mathbf{v} = e^{\lambda t} A\mathbf{v}$. Cancelling the scalar $e^{\lambda t}$ leaves $A\mathbf{v} = \lambda \mathbf{v}$, so $\lambda$ must be a root of the characteristic equation $\det(A - \lambda I) = 0$ and $\mathbf{v}$ a corresponding eigenvector.

General solution, real distinct eigenvalues
$$ \mathbf{x}(t) = c_1 e^{\lambda_1 t}\mathbf{v}_1 + c_2 e^{\lambda_2 t}\mathbf{v}_2 + \cdots + c_n e^{\lambda_n t}\mathbf{v}_n. $$
Worked Example 3.1: a saddle例题 3.1:鞍点

Solve $\mathbf{x}' = \begin{pmatrix} 1 & 1 \\ 4 & 1 \end{pmatrix}\mathbf{x}$.

Characteristic equation: $\det(A - \lambda I) = (1-\lambda)^2 - 4 = \lambda^2 - 2\lambda - 3 = 0$, so $\lambda = 3, -1$.

For $\lambda = 3$: $(A - 3I)\mathbf{v} = \begin{pmatrix} -2 & 1 \\ 4 & -2 \end{pmatrix}\mathbf{v} = 0$ gives $\mathbf{v}_1 = \binom{1}{2}$. For $\lambda = -1$: $\begin{pmatrix} 2 & 1 \\ 4 & 2 \end{pmatrix}\mathbf{v} = 0$ gives $\mathbf{v}_2 = \binom{1}{-2}$.

$$ \mathbf{x}(t) = c_1 e^{3t}\binom{1}{2} + c_2 e^{-t}\binom{1}{-2}. $$

One eigenvalue is positive and one negative, so the origin is a saddle point.

Going deeper: distinct eigenvalues give independent eigenvectors深入探讨:不同特征值给出线性无关的特征向量

Suppose $\mathbf{v}_1, \dots, \mathbf{v}_k$ are eigenvectors for distinct eigenvalues $\lambda_1, \dots, \lambda_k$ and assume a dependence $c_1\mathbf{v}_1 + \cdots + c_k\mathbf{v}_k = 0$ with the fewest nonzero terms. Apply $A - \lambda_k I$ to the relation. The $\mathbf{v}_k$ term dies, and each other term is scaled by $(\lambda_i - \lambda_k) \neq 0$, producing a shorter dependence, contradiction unless all $c_i = 0$.

Hence $n$ distinct eigenvalues yield $n$ independent eigenvectors. The corresponding solutions $e^{\lambda_i t}\mathbf{v}_i$ have Wronskian at $t=0$ equal to $\det[\mathbf{v}_1 \mid \cdots \mid \mathbf{v}_n] \neq 0$, so they form a fundamental set.

Worked Example 3.2: a stable node with an initial condition例题 3.2:含初始条件的稳定结点

Solve $\mathbf{x}' = \begin{pmatrix} -2 & 1 \\ 1 & -2 \end{pmatrix}\mathbf{x}$ with $\mathbf{x}(0) = \binom{3}{1}$.

Characteristic equation: $(-2-\lambda)^2 - 1 = \lambda^2 + 4\lambda + 3 = 0$, so $\lambda = -1, -3$.

For $\lambda = -1$: $(A+I)\mathbf{v} = \begin{pmatrix} -1 & 1 \\ 1 & -1 \end{pmatrix}\mathbf{v} = 0$ gives $\mathbf{v}_1 = \binom{1}{1}$. For $\lambda = -3$: $\begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix}\mathbf{v} = 0$ gives $\mathbf{v}_2 = \binom{1}{-1}$.

General solution $\mathbf{x} = c_1 e^{-t}\binom{1}{1} + c_2 e^{-3t}\binom{1}{-1}$. Apply the initial data: $c_1\binom{1}{1} + c_2\binom{1}{-1} = \binom{3}{1}$ gives $c_1 + c_2 = 3$ and $c_1 - c_2 = 1$, so $c_1 = 2$, $c_2 = 1$.

$$ \mathbf{x}(t) = 2e^{-t}\binom{1}{1} + e^{-3t}\binom{1}{-1}. $$

Both eigenvalues are negative, so the origin is a stable node. As $t\to\infty$ the faster mode $e^{-3t}$ dies first, and trajectories approach the origin tangent to the slow eigendirection $\binom{1}{1}$.

Worked Example 3.3: a $3\times 3$ system with three real eigenvalues例题 3.3:三个实特征值的 $3\times 3$ 方程组

Solve $\mathbf{x}' = \begin{pmatrix} 1 & 0 & 0 \\ 1 & 2 & 0 \\ 1 & 0 & 3 \end{pmatrix}\mathbf{x}$.

The matrix is lower triangular, so the eigenvalues are the diagonal entries $\lambda = 1, 2, 3$, all real and distinct.

For $\lambda = 1$: $(A - I)\mathbf{v} = \begin{pmatrix} 0 & 0 & 0 \\ 1 & 1 & 0 \\ 1 & 0 & 2 \end{pmatrix}\mathbf{v} = 0$. From rows two and three, $v_2 = -v_1$ and $v_3 = -v_1/2$. Taking $v_1 = 2$ gives $\mathbf{v}_1 = (2,-2,-1)^{\mathsf T}$.

For $\lambda = 2$: $\begin{pmatrix} -1 & 0 & 0 \\ 1 & 0 & 0 \\ 1 & 0 & 1 \end{pmatrix}\mathbf{v} = 0$ forces $v_1 = 0$ and $v_3 = 0$ with $v_2$ free, so $\mathbf{v}_2 = (0,1,0)^{\mathsf T}$.

For $\lambda = 3$: $\begin{pmatrix} -2 & 0 & 0 \\ 1 & -1 & 0 \\ 1 & 0 & 0 \end{pmatrix}\mathbf{v} = 0$ forces $v_1 = 0$ and $v_2 = 0$ with $v_3$ free, so $\mathbf{v}_3 = (0,0,1)^{\mathsf T}$.

$$ \mathbf{x}(t) = c_1 e^{t}\!\begin{pmatrix} 2 \\ -2 \\ -1 \end{pmatrix} + c_2 e^{2t}\!\begin{pmatrix} 0 \\ 1 \\ 0 \end{pmatrix} + c_3 e^{3t}\!\begin{pmatrix} 0 \\ 0 \\ 1 \end{pmatrix}. $$

All eigenvalues are positive, so the origin is a three-dimensional unstable node. Triangular matrices make the spectrum readable at a glance, a useful shortcut to remember on exams.

Common error.常见错误。 Students often forget that an eigenvector is only determined up to a nonzero scalar, and then panic when their textbook lists $\binom{1}{2}$ but their own row reduction produced $\binom{2}{4}$ or $\binom{-1}{-2}$. These are the same eigendirection and give the same general solution; the arbitrary constants $c_i$ absorb the scaling. A more serious error is dividing the differential equation by $e^{\lambda t}$ and then treating $A\mathbf{v} = \lambda\mathbf{v}$ as if any nonzero $\lambda$ works: $\lambda$ must be a root of $\det(A - \lambda I) = 0$, otherwise the only solution of $(A - \lambda I)\mathbf{v} = 0$ is $\mathbf{v} = \mathbf{0}$, which gives the trivial solution and no information. 特征向量只精确到非零数量因子,学生有时因教材给出 $\binom{1}{2}$ 而自己化简得到 $\binom{2}{4}$ 或 $\binom{-1}{-2}$ 而感到困惑。这些都是同一特征方向,通解相同;任意常数 $c_i$ 吸收了缩放。更严重的错误是将特征值法误用:$\lambda$ 必须是 $\det(A-\lambda I)=0$ 的根,否则 $(A-\lambda I)\mathbf{v}=\mathbf{0}$ 只有零解。
The eigenvalues of $A$ are $\lambda = 2$ and $\lambda = 5$. The equilibrium at the origin is:矩阵 $A$ 的特征值为 $\lambda=2$ 和 $\lambda=5$,原点处的平衡点是:
3.1
a stable node稳定结点
a saddle point鞍点
an unstable node不稳定结点
a center中心
Correct. Both eigenvalues are real, positive, and distinct, so every trajectory grows away from the origin: an unstable (source) node.正确。两个特征值均为实数、正数且不同,每条轨线都远离原点:不稳定结点(源)。
Both eigenvalues are positive, so solutions grow in every direction. That is an unstable node, not a saddle (which needs opposite signs).两个特征值均为正数,解在各方向增长,是不稳定结点,而非鞍点(鞍点需要异号特征值)。

Complex Eigenvalues复特征值

Key idea.核心思想。 When $A$ is real, complex eigenvalues occur in conjugate pairs $\lambda = \alpha \pm i\beta$. A single complex solution $e^{\lambda t}\mathbf{v}$ splits, via Euler's formula, into two real solutions: its real and imaginary parts. The real part $\alpha$ controls growth or decay, while the imaginary part $\beta$ controls the frequency of rotation. 当 $A$ 为实矩阵时,复特征值成共轭对出现:$\lambda=\alpha\pm i\beta$。单个复数解 $e^{\lambda t}\mathbf{v}$ 经欧拉公式分裂为两个实数解,即其实部与虚部。实部 $\alpha$ 控制增长或衰减,虚部 $\beta$ 控制旋转频率。

Compute the eigenvalue $\lambda = \alpha + i\beta$ and a complex eigenvector $\mathbf{v} = \mathbf{a} + i\mathbf{b}$. Then $e^{\lambda t}\mathbf{v}$ is a complex solution. Expanding $e^{(\alpha + i\beta)t} = e^{\alpha t}(\cos\beta t + i\sin\beta t)$ and separating real and imaginary parts yields two real, linearly independent solutions.

Two real solutions from one complex eigenpair
$$ \mathbf{x}_1 = e^{\alpha t}\big(\mathbf{a}\cos\beta t - \mathbf{b}\sin\beta t\big), \qquad \mathbf{x}_2 = e^{\alpha t}\big(\mathbf{a}\sin\beta t + \mathbf{b}\cos\beta t\big). $$
Worked Example 4.1: a spiral sink例题 4.1:螺旋汇

Solve $\mathbf{x}' = \begin{pmatrix} -1 & -2 \\ 2 & -1 \end{pmatrix}\mathbf{x}$.

$\det(A - \lambda I) = (-1-\lambda)^2 + 4 = 0$, so $\lambda = -1 \pm 2i$; here $\alpha = -1$, $\beta = 2$.

For $\lambda = -1 + 2i$: $(A - \lambda I)\mathbf{v} = \begin{pmatrix} -2i & -2 \\ 2 & -2i \end{pmatrix}\mathbf{v} = 0$ gives $\mathbf{v} = \binom{1}{-i} = \binom{1}{0} + i\binom{0}{-1}$, so $\mathbf{a} = \binom{1}{0}$, $\mathbf{b} = \binom{0}{-1}$.

$$ \mathbf{x}(t) = e^{-t}\!\left[ c_1\!\begin{pmatrix}\cos 2t \\ \sin 2t\end{pmatrix} + c_2\!\begin{pmatrix}\sin 2t \\ -\cos 2t\end{pmatrix} \right]. $$

Since $\alpha = -1 < 0$, trajectories spiral inward to the origin: a stable spiral (spiral sink).

Worked Example 4.2: a center with closed orbits例题 4.2:封闭轨道的中心

Solve $\mathbf{x}' = \begin{pmatrix} 0 & 2 \\ -2 & 0 \end{pmatrix}\mathbf{x}$ with $\mathbf{x}(0) = \binom{1}{0}$.

$\det(A - \lambda I) = \lambda^2 + 4 = 0$, so $\lambda = \pm 2i$; here $\alpha = 0$, $\beta = 2$.

For $\lambda = 2i$: $(A - 2iI)\mathbf{v} = \begin{pmatrix} -2i & 2 \\ -2 & -2i \end{pmatrix}\mathbf{v} = 0$. The top row gives $-2i\,v_1 + 2v_2 = 0$, so $v_2 = i v_1$; take $\mathbf{v} = \binom{1}{i} = \binom{1}{0} + i\binom{0}{1}$, hence $\mathbf{a} = \binom{1}{0}$, $\mathbf{b} = \binom{0}{1}$.

The two real solutions are $\mathbf{x}_1 = \mathbf{a}\cos 2t - \mathbf{b}\sin 2t = \binom{\cos 2t}{-\sin 2t}$ and $\mathbf{x}_2 = \mathbf{a}\sin 2t + \mathbf{b}\cos 2t = \binom{\sin 2t}{\cos 2t}$, so

$$ \mathbf{x}(t) = c_1\binom{\cos 2t}{-\sin 2t} + c_2\binom{\sin 2t}{\cos 2t}. $$

Initial data $\binom{1}{0}$ forces $c_1 = 1$, $c_2 = 0$, giving $\mathbf{x}(t) = \binom{\cos 2t}{-\sin 2t}$. This traces the unit circle clockwise with period $\pi$: a closed orbit, confirming the center. Since $x_1^2 + x_2^2 = 1$ for all $t$, the trajectory is bounded but never approaches the origin, the signature of neutral stability.

Common error.常见错误。 When forming the two real solutions, it is tempting to also use the conjugate eigenpair $\bar\lambda = \alpha - i\beta$ and write four solutions for a $2\times 2$ system. That doubles nothing: the conjugate solution $e^{\bar\lambda t}\bar{\mathbf{v}}$ is the complex conjugate of the first, so its real part equals $\mathbf{x}_1$ and its imaginary part equals $-\mathbf{x}_2$. One complex eigenpair yields exactly two real, independent solutions. A second frequent slip is dropping the $e^{\alpha t}$ envelope when $\alpha \neq 0$; without it you would describe a center instead of the correct spiral. 构造两个实数解时,容易误用共轭特征对 $\bar\lambda=\alpha-i\beta$ 而写出四个解(对 $2\times 2$ 方程组)。实际上没有多出任何新解:共轭解的实部等于 $\mathbf{x}_1$,虚部等于 $-\mathbf{x}_2$。一个复特征对恰好给出两个实数解。另一常见错误是在 $\alpha\neq 0$ 时丢掉 $e^{\alpha t}$ 包络,误将螺旋点描述为中心。
Going deeper: why the real and imaginary parts are independent solutions深入探讨:为何实部与虚部是独立的解

Let $\mathbf{z}(t) = e^{\lambda t}\mathbf{v}$ be a complex solution of $\mathbf{x}' = A\mathbf{x}$ with $A$ real and $\lambda = \alpha + i\beta$, $\beta \neq 0$. Write $\mathbf{z} = \mathbf{u} + i\mathbf{w}$ with $\mathbf{u} = \operatorname{Re}\mathbf{z}$ and $\mathbf{w} = \operatorname{Im}\mathbf{z}$ both real.

Since $A$ is real, $\mathbf{z}' = A\mathbf{z}$ separates into real and imaginary parts: $\mathbf{u}' + i\mathbf{w}' = A\mathbf{u} + iA\mathbf{w}$. Matching real and imaginary parts gives $\mathbf{u}' = A\mathbf{u}$ and $\mathbf{w}' = A\mathbf{w}$ separately, so each part is itself a real solution.

Independence: suppose $c_1\mathbf{u} + c_2\mathbf{w} = \mathbf{0}$ for all $t$ with real constants. Then $c_1\mathbf{u} + c_2\mathbf{w} = \operatorname{Re}\!\big((c_1 - i c_2)\mathbf{z}\big) = \mathbf{0}$. Evaluating at $t=0$ gives $\operatorname{Re}\!\big((c_1 - ic_2)\mathbf{v}\big) = \mathbf{0}$ and differentiating once and evaluating at $0$ gives $\operatorname{Re}\!\big((c_1 - ic_2)\lambda\mathbf{v}\big) = \mathbf{0}$. Because $\beta \neq 0$, the scalar $\lambda$ is non-real, and these two conditions force $c_1 - ic_2 = 0$, hence $c_1 = c_2 = 0$. The real and imaginary parts are therefore linearly independent and span the real solution space of the conjugate pair.

A real $2\times 2$ matrix has eigenvalues $\lambda = 3 \pm 4i$. The origin is:某实 $2\times 2$ 矩阵的特征值为 $\lambda=3\pm 4i$,原点是:
4.1
an unstable spiral (spiral source)不稳定螺旋点(螺旋源)
a center中心
a stable spiral稳定螺旋点
a saddle鞍点
Correct. The real part $\alpha = 3 > 0$ forces outward growth and $\beta = 4 \neq 0$ forces rotation: an unstable spiral.正确。实部 $\alpha=3>0$ 使振幅增大,$\beta=4\neq 0$ 产生旋转:不稳定螺旋点。
A center needs $\alpha = 0$. Here $\alpha = 3 > 0$, so amplitude grows while the solution rotates: a spiral source.中心需要 $\alpha=0$。此处 $\alpha=3>0$,振幅增大同时旋转,是螺旋源。
For purely imaginary eigenvalues $\lambda = \pm i\beta$ ($\beta \neq 0$), trajectories are:对纯虚特征值 $\lambda=\pm i\beta$($\beta\neq 0$),轨线是:
4.2
straight lines through the origin过原点的直线
closed ellipses around the origin (a center)绕原点的封闭椭圆(中心)
spirals into the origin趋向原点的螺旋线
unbounded along an eigendirection沿特征方向无界
Correct. With $\alpha = 0$ there is no growth factor; the $\cos\beta t$ and $\sin\beta t$ terms trace periodic closed orbits, so the origin is a center.正确。$\alpha=0$ 无增长因子;$\cos\beta t$ 和 $\sin\beta t$ 描绘周期性封闭轨道,原点是中心。
No real part means no exponential growth or decay. The solution is purely oscillatory and traces closed ellipses: a center.无实部意味着无指数增长或衰减。解纯粹振荡,轨迹是封闭椭圆:中心。

Repeated Eigenvalues重特征值(亏损情形)

Key idea.核心思想。 A repeated eigenvalue may or may not have enough eigenvectors. If a double eigenvalue $\lambda$ has two independent eigenvectors (the complete case) the solution is the usual combination. If it has only one (the defective case), the missing second solution is built from a generalized eigenvector and carries a factor of $t$. 重特征值不一定有足够的特征向量。若二重特征值 $\lambda$ 有两个线性无关的特征向量(完全情形),解与一般情形相同。若只有一个(亏损情形),缺失的第二个解由广义特征向量构造,并含有 $t$ 因子。

Suppose $\lambda$ is a double root and the eigenspace is only one-dimensional, spanned by $\mathbf{v}$. Seek a second solution $\mathbf{x}_2 = e^{\lambda t}(t\,\mathbf{v} + \mathbf{w})$. Substituting into $\mathbf{x}' = A\mathbf{x}$ and matching terms forces $\mathbf{w}$ to solve the generalized eigenvector equation.

Defective double eigenvalue: the second solution
$$ (A - \lambda I)\mathbf{v} = \mathbf{0}, \qquad (A - \lambda I)\mathbf{w} = \mathbf{v}, $$ $$ \mathbf{x}(t) = c_1 e^{\lambda t}\mathbf{v} + c_2 e^{\lambda t}\big(t\,\mathbf{v} + \mathbf{w}\big). $$
Worked Example 5.1: a defective node例题 5.1:亏损结点

Solve $\mathbf{x}' = \begin{pmatrix} 3 & -4 \\ 1 & -1 \end{pmatrix}\mathbf{x}$.

$\det(A - \lambda I) = (3-\lambda)(-1-\lambda) + 4 = \lambda^2 - 2\lambda + 1 = (\lambda - 1)^2$, so $\lambda = 1$ is a double root.

Eigenvectors: $(A - I)\mathbf{v} = \begin{pmatrix} 2 & -4 \\ 1 & -2 \end{pmatrix}\mathbf{v} = 0$ gives the single direction $\mathbf{v} = \binom{2}{1}$, so $A$ is defective.

Generalized eigenvector: solve $(A - I)\mathbf{w} = \mathbf{v}$, that is $\begin{pmatrix} 2 & -4 \\ 1 & -2 \end{pmatrix}\mathbf{w} = \binom{2}{1}$. Taking $\mathbf{w} = \binom{1}{0}$ works.

$$ \mathbf{x}(t) = c_1 e^{t}\binom{2}{1} + c_2 e^{t}\!\left[ t\binom{2}{1} + \binom{1}{0} \right]. $$

Because $\lambda = 1 > 0$, this is an unstable improper (degenerate) node.

Worked Example 5.2: the complete (non-defective) repeated case例题 5.2:完全(非亏损)重根情形

Solve $\mathbf{x}' = \begin{pmatrix} -3 & 0 \\ 0 & -3 \end{pmatrix}\mathbf{x}$.

$\det(A - \lambda I) = (\lambda + 3)^2$, so $\lambda = -3$ is a double root. But here $A - \lambda I = A + 3I = \mathbf{0}$, so every nonzero vector is an eigenvector and the eigenspace is the whole plane. The matrix is a scalar multiple of the identity, the model complete case.

We may choose the standard basis $\mathbf{v}_1 = \binom{1}{0}$, $\mathbf{v}_2 = \binom{0}{1}$:

$$ \mathbf{x}(t) = c_1 e^{-3t}\binom{1}{0} + c_2 e^{-3t}\binom{0}{1} = e^{-3t}\binom{c_1}{c_2}. $$

No $t$ factor appears because the eigenspace is two-dimensional. Every trajectory is a straight ray into the origin along whatever direction $\binom{c_1}{c_2}$ the initial data picks, so this is a stable star (proper) node. Contrast Worked Example 5.1, where a one-dimensional eigenspace forced the $t$-multiplied second solution.

Worked Example 5.3: a stable defective node with initial data例题 5.3:含初始数据的稳定亏损结点

Solve $\mathbf{x}' = \begin{pmatrix} -1 & 1 \\ 0 & -1 \end{pmatrix}\mathbf{x}$ with $\mathbf{x}(0) = \binom{1}{2}$.

$\det(A - \lambda I) = (\lambda + 1)^2$, so $\lambda = -1$ is a double root. Eigenvectors solve $(A + I)\mathbf{v} = \begin{pmatrix} 0 & 1 \\ 0 & 0 \end{pmatrix}\mathbf{v} = 0$, forcing $v_2 = 0$, so the eigenspace is one-dimensional, spanned by $\mathbf{v} = \binom{1}{0}$. The matrix is defective.

Generalized eigenvector: solve $(A + I)\mathbf{w} = \mathbf{v}$, that is $\begin{pmatrix} 0 & 1 \\ 0 & 0 \end{pmatrix}\mathbf{w} = \binom{1}{0}$, which gives $w_2 = 1$ with $w_1$ free; take $\mathbf{w} = \binom{0}{1}$.

$$ \mathbf{x}(t) = c_1 e^{-t}\binom{1}{0} + c_2 e^{-t}\!\left[ t\binom{1}{0} + \binom{0}{1} \right]. $$

At $t=0$: $c_1\binom{1}{0} + c_2\binom{0}{1} = \binom{1}{2}$, so $c_1 = 1$, $c_2 = 2$. Therefore $\mathbf{x}(t) = e^{-t}\binom{1 + 2t}{2}$. Even though the polynomial factor $1 + 2t$ grows, the dominant $e^{-t}$ decay wins and $\mathbf{x}(t) \to \mathbf{0}$: a stable improper node.

Common error.常见错误。 Two mistakes recur in the defective case. First, students guess the second solution as $e^{\lambda t} t\,\mathbf{v}$ alone, dropping the $+\mathbf{w}$ term; substituting shows $e^{\lambda t} t\mathbf{v}$ is not a solution by itself because the product rule generates an extra $e^{\lambda t}\mathbf{v}$ that only $(A - \lambda I)\mathbf{w} = \mathbf{v}$ can cancel. Second, they conclude a repeated eigenvalue is automatically defective. It is not: if the algebraic multiplicity equals the geometric multiplicity (as in Worked Example 5.2) there are enough eigenvectors and no $t$ factor appears. Always count the dimension of $\ker(A - \lambda I)$ before assuming you need a generalized eigenvector. 亏损情形有两个常见错误。其一是将第二个解猜测为单独的 $e^{\lambda t}t\,\mathbf{v}$,遗漏了 $+\mathbf{w}$ 项;代入后发现乘积法则产生额外的 $e^{\lambda t}\mathbf{v}$,只有满足 $(A-\lambda I)\mathbf{w}=\mathbf{v}$ 才能消去。其二是认为重特征值必然亏损,实则不然:若代数重数等于几何重数(如例题 5.2),则有足够多的特征向量,无需 $t$ 因子。始终先计算 $\ker(A-\lambda I)$ 的维数。
Going deeper: deriving the $t$-multiplied second solution深入探讨:推导含 $t$ 因子的第二个解

Let $\lambda$ be a double eigenvalue with a one-dimensional eigenspace spanned by $\mathbf{v}$. We look for a second solution of the form $\mathbf{x}_2(t) = e^{\lambda t}\big(t\,\mathbf{v} + \mathbf{w}\big)$ and determine what $\mathbf{w}$ must satisfy. Differentiate using the product rule:

$$ \mathbf{x}_2' = \lambda e^{\lambda t}(t\mathbf{v} + \mathbf{w}) + e^{\lambda t}\mathbf{v} = e^{\lambda t}\big(\lambda t\,\mathbf{v} + \lambda\mathbf{w} + \mathbf{v}\big). $$

We require $\mathbf{x}_2' = A\mathbf{x}_2 = e^{\lambda t}\big(t\,A\mathbf{v} + A\mathbf{w}\big)$. Cancel $e^{\lambda t}$ and match the coefficient of $t$ and the constant term separately.

Coefficient of $t$: $\lambda\mathbf{v} = A\mathbf{v}$, which holds because $\mathbf{v}$ is an eigenvector. Constant term: $\lambda\mathbf{w} + \mathbf{v} = A\mathbf{w}$, that is $(A - \lambda I)\mathbf{w} = \mathbf{v}$. This is exactly the generalized eigenvector equation. It is solvable because $\mathbf{v}$ lies in the range of $(A - \lambda I)$ whenever the eigenvalue is defective with algebraic multiplicity two, a fact guaranteed by the structure of the Jordan block for $\lambda$.

Finally $\mathbf{x}_1 = e^{\lambda t}\mathbf{v}$ and $\mathbf{x}_2$ are independent: at $t=0$ their values are $\mathbf{v}$ and $\mathbf{w}$, and $\mathbf{w} \notin \operatorname{span}\{\mathbf{v}\}$ since otherwise $(A-\lambda I)\mathbf{w}$ would be a multiple of $(A - \lambda I)\mathbf{v} = \mathbf{0}$, contradicting $(A - \lambda I)\mathbf{w} = \mathbf{v} \neq \mathbf{0}$.

$A$ has a double eigenvalue $\lambda = -2$ with only one independent eigenvector. A second solution has the form:矩阵 $A$ 有二重特征值 $\lambda=-2$,仅有一个线性无关的特征向量。第二个解的形式为:
5.1
$e^{-2t}\mathbf{v}$ again仍然是 $e^{-2t}\mathbf{v}$
$t^2 e^{-2t}\mathbf{v}$$t^2 e^{-2t}\mathbf{v}$
$e^{-2t}(t\,\mathbf{v} + \mathbf{w})$ with $(A+2I)\mathbf{w} = \mathbf{v}$$e^{-2t}(t\,\mathbf{v}+\mathbf{w})$,其中 $(A+2I)\mathbf{w}=\mathbf{v}$
$e^{-2t}\cos t\,\mathbf{v}$$e^{-2t}\cos t\,\mathbf{v}$
Correct. The defective case requires a generalized eigenvector $\mathbf{w}$ with $(A - \lambda I)\mathbf{w} = \mathbf{v}$, giving the $t$-multiplied second solution $e^{\lambda t}(t\mathbf{v} + \mathbf{w})$.正确。亏损情形需要广义特征向量 $\mathbf{w}$,满足 $(A-\lambda I)\mathbf{w}=\mathbf{v}$,得到含 $t$ 因子的第二个解 $e^{\lambda t}(t\mathbf{v}+\mathbf{w})$。
A single $t$ factor (not $t^2$) and a generalized eigenvector $\mathbf{w}$ solving $(A - \lambda I)\mathbf{w} = \mathbf{v}$ are needed. No oscillation appears for a real eigenvalue.需要单个 $t$ 因子(非 $t^2$)和满足 $(A-\lambda I)\mathbf{w}=\mathbf{v}$ 的广义特征向量。实特征值不产生振荡。

The Phase Plane and Stability相平面与稳定性

Key idea.核心思想。 For a planar system $\mathbf{x}' = A\mathbf{x}$ the geometry of trajectories near the origin is classified by the eigenvalues of $A$, which depend only on the trace $p = \operatorname{tr} A$ and determinant $q = \det A$. The pair $(p, q)$ fixes the phase portrait: node, saddle, spiral, or center, and whether it is stable. 对平面方程组 $\mathbf{x}'=A\mathbf{x}$,原点附近轨线的几何形态由 $A$ 的特征值决定,而特征值只依赖于迹 $p=\operatorname{tr}A$ 和行列式 $q=\det A$。坐标 $(p,q)$ 确定相图类型:结点、鞍点、螺旋点或中心,以及是否稳定。
Eigenvalues from trace and determinant
$$ \lambda = \frac{p \pm \sqrt{p^2 - 4q}}{2}, \qquad p = \operatorname{tr} A, \quad q = \det A. $$

The classification reads off $(p, q)$ as follows. If $q < 0$ the eigenvalues are real with opposite signs: a saddle (always unstable). If $q > 0$ and $p^2 > 4q$ the eigenvalues are real and same sign: a node, stable when $p < 0$ and unstable when $p > 0$. If $q > 0$ and $p^2 < 4q$ the eigenvalues are complex: a spiral, stable when $p < 0$ and unstable when $p > 0$. If $p = 0$ and $q > 0$ the eigenvalues are purely imaginary: a center, neutrally stable. The equilibrium is asymptotically stable exactly when both eigenvalues have negative real part, equivalently $p < 0$ and $q > 0$.

Stability test (planar)
$$ \text{asymptotically stable} \iff \operatorname{tr} A < 0 \;\text{ and }\; \det A > 0. $$
Worked Example 6.1: classify by trace and determinant例题 6.1:用迹和行列式分类

Classify the origin for $A = \begin{pmatrix} -3 & 2 \\ -2 & -3 \end{pmatrix}$.

$p = \operatorname{tr} A = -6$, $q = \det A = 9 + 4 = 13$. Discriminant $p^2 - 4q = 36 - 52 = -16 < 0$, so the eigenvalues are complex, $\lambda = -3 \pm 2i$.

Complex with $p < 0$ and $q > 0$: a stable spiral. Trajectories spiral inward to the origin.

Going deeper: why the trace-determinant test certifies stability深入探讨:为何迹-行列式判别可认证稳定性

For a $2 \times 2$ matrix the eigenvalues satisfy $\lambda_1 + \lambda_2 = p$ and $\lambda_1 \lambda_2 = q$. Asymptotic stability requires both eigenvalues to have negative real part.

If the eigenvalues are real, both negative means their sum is negative ($p < 0$) and their product is positive ($q > 0$). If they are complex conjugates $\alpha \pm i\beta$, then $p = 2\alpha$ and $q = \alpha^2 + \beta^2 > 0$ automatically, so $\alpha < 0$ is equivalent to $p < 0$.

In every case, both eigenvalues have negative real part if and only if $p < 0$ and $q > 0$. This is the Routh-Hurwitz criterion specialized to two dimensions.

Worked Example 6.2: reading the full trace-determinant chart例题 6.2:读取完整的迹-行列式图

Classify the origin for each matrix using only $(p, q)$ and the discriminant $\Delta = p^2 - 4q$.

(a) $A = \begin{pmatrix} -1 & 4 \\ -1 & -1 \end{pmatrix}$: $p = -2$, $q = 1 + 4 = 5$, $\Delta = 4 - 20 = -16 < 0$. Complex eigenvalues with $p<0$: a stable spiral.

(b) $A = \begin{pmatrix} 4 & 1 \\ 1 & 4 \end{pmatrix}$: $p = 8$, $q = 16 - 1 = 15$, $\Delta = 64 - 60 = 4 > 0$. Real same-sign eigenvalues with $p > 0$: an unstable node.

(c) $A = \begin{pmatrix} 1 & 5 \\ 1 & -1 \end{pmatrix}$: $p = 0$, $q = -1 - 5 = -6 < 0$. Negative determinant: real opposite-sign eigenvalues, a saddle. The trace being zero is irrelevant here because a saddle is decided by $q < 0$ alone.

(d) $A = \begin{pmatrix} 0 & -3 \\ 3 & 0 \end{pmatrix}$: $p = 0$, $q = 9 > 0$, $\Delta = -36 < 0$. Purely imaginary eigenvalues: a center, neutrally stable.

Worked Example 6.3: the parabola boundary between nodes and spirals例题 6.3:结点与螺旋点之间的抛物线边界

On the curve $\Delta = p^2 - 4q = 0$ the eigenvalues are real and equal, the repeated-root case of Section 5. Consider the one-parameter family $A_q = \begin{pmatrix} -2 & 1 \\ -q & 0 \end{pmatrix}$, which has $p = -2$ and $\det A_q = q$.

For $q < 1$ the discriminant $\Delta = 4 - 4q > 0$, so the eigenvalues are real and distinct: a stable node (since $p<0$, $q>0$ when $0 1$, $\Delta < 0$ and the origin becomes a stable spiral. Exactly at $q = 1$, $\Delta = 0$ and $\lambda = -1$ is a double root, the borderline degenerate node. The qualitative picture changes from straight-line approach to rotational approach as $q$ crosses the parabola $q = p^2/4 = 1$.

This is why the trace-determinant plane is the standard summary chart: the line $q = 0$ separates saddles from nodes, the line $p = 0$ (with $q>0$) holds the centers, and the parabola $q = p^2/4$ separates nodes from spirals.

Common error.常见错误。 A stable spiral and a stable node are easy to confuse because both have all trajectories tending to the origin. The deciding quantity is the discriminant $\Delta = p^2 - 4q$, not the sign of the trace: $\Delta > 0$ gives real eigenvalues (a node), $\Delta < 0$ gives complex eigenvalues (a spiral). A second pitfall is reading stability off $\det A$ alone. A positive determinant is necessary but not sufficient for stability; you also need $\operatorname{tr} A < 0$. For instance $\operatorname{tr} A = 2$, $\det A = 5$ has $q > 0$ yet is an unstable spiral because the trace is positive. 稳定螺旋点和稳定结点容易混淆,因为两者的轨线都趋向原点。判别量是判别式 $\Delta=p^2-4q$,而非迹的符号:$\Delta>0$ 给出实特征值(结点),$\Delta<0$ 给出复特征值(螺旋点)。另一个陷阱是仅凭 $\det A$ 判断稳定性。正行列式是必要条件但不充分;还需要 $\operatorname{tr}A<0$。例如 $\operatorname{tr}A=2$,$\det A=5$ 有 $q>0$ 却是不稳定螺旋点。
For $A$ with $\operatorname{tr} A = -2$ and $\det A = -8$, the origin is:设矩阵 $A$ 满足 $\operatorname{tr}A=-2$,$\det A=-8$,原点是:
6.1
a stable node稳定结点
a stable spiral稳定螺旋点
a center中心
a saddle point鞍点
Correct. Since $\det A = -8 < 0$, the eigenvalues are real with opposite signs regardless of the trace: a saddle, which is always unstable.正确。因为 $\det A=-8<0$,无论迹为何值,特征值均为实数且异号:鞍点,始终不稳定。
A negative determinant alone forces real eigenvalues of opposite sign, which is a saddle. The trace value does not change this.负行列式迫使特征值为实数且异号,即鞍点。迹的值不改变这一结论。

Going Deeper深入探讨:矩阵指数

Key idea.核心思想。 The eigenvalue method is the special case of the matrix exponential. The fundamental matrix $e^{At}$ solves every constant-coefficient homogeneous system at once, and the variation of parameters formula extends it to forced (nonhomogeneous) systems. 特征值法是矩阵指数的特殊情形。基解矩阵 $e^{At}$ 一次性求解所有常系数齐次方程组,参数变分法则将其推广到受迫(非齐次)方程组。

Define $e^{At} = \sum_{k=0}^\infty \frac{(At)^k}{k!}$. This series converges for every matrix $A$ and satisfies $\frac{d}{dt}e^{At} = A e^{At}$ with $e^{A\cdot 0} = I$. Hence $e^{At}$ is the fundamental matrix normalized at $t = 0$, and the solution of $\mathbf{x}' = A\mathbf{x}$, $\mathbf{x}(0) = \mathbf{x}_0$ is $\mathbf{x}(t) = e^{At}\mathbf{x}_0$.

Variation of parameters for systems
$$ \mathbf{x}' = A\mathbf{x} + \mathbf{g}(t) \;\Longrightarrow\; \mathbf{x}(t) = e^{At}\mathbf{x}_0 + \int_0^t e^{A(t-s)}\,\mathbf{g}(s)\,ds. $$

When $A$ is diagonalizable, $A = P D P^{-1}$ with $D = \operatorname{diag}(\lambda_i)$, the exponential is $e^{At} = P\,e^{Dt}\,P^{-1}$ where $e^{Dt} = \operatorname{diag}(e^{\lambda_i t})$. This recovers the eigenvalue method: each diagonal entry is one of the scalar modes $e^{\lambda_i t}$.

Worked Example 7.1: a forced system by variation of parameters例题 7.1:参数变分法求解受迫方程组

Solve $\mathbf{x}' = \begin{pmatrix} 0 & 1 \\ 0 & 0 \end{pmatrix}\mathbf{x} + \binom{0}{1}$ with $\mathbf{x}(0) = \mathbf{0}$.

Here $A^2 = 0$, so $e^{At} = I + At = \begin{pmatrix} 1 & t \\ 0 & 1 \end{pmatrix}$. With $\mathbf{x}_0 = \mathbf{0}$,

$$ \mathbf{x}(t) = \int_0^t e^{A(t-s)}\binom{0}{1}\,ds = \int_0^t \begin{pmatrix} 1 & t-s \\ 0 & 1 \end{pmatrix}\binom{0}{1}\,ds = \int_0^t \binom{t-s}{1}\,ds = \binom{t^2/2}{t}. $$

This matches the elementary solution: the second component integrates the forcing to $t$, and the first integrates that to $t^2/2$.

Worked Example 7.2: computing $e^{At}$ by diagonalization例题 7.2:对角化法计算 $e^{At}$

Compute the matrix exponential for $A = \begin{pmatrix} 1 & 1 \\ 4 & 1 \end{pmatrix}$, the saddle from Section 3.

We found eigenvalues $\lambda = 3, -1$ with eigenvectors $\binom{1}{2}$ and $\binom{1}{-2}$. Set

$$ P = \begin{pmatrix} 1 & 1 \\ 2 & -2 \end{pmatrix}, \quad D = \begin{pmatrix} 3 & 0 \\ 0 & -1 \end{pmatrix}, \quad P^{-1} = \frac{1}{-4}\begin{pmatrix} -2 & -1 \\ -2 & 1 \end{pmatrix} = \begin{pmatrix} 1/2 & 1/4 \\ 1/2 & -1/4 \end{pmatrix}. $$

Then $e^{At} = P\,e^{Dt}\,P^{-1}$ with $e^{Dt} = \operatorname{diag}(e^{3t}, e^{-t})$. Multiplying,

$$ e^{At} = \begin{pmatrix} 1 & 1 \\ 2 & -2 \end{pmatrix} \begin{pmatrix} e^{3t} & 0 \\ 0 & e^{-t} \end{pmatrix} \begin{pmatrix} 1/2 & 1/4 \\ 1/2 & -1/4 \end{pmatrix} = \begin{pmatrix} \tfrac12(e^{3t}+e^{-t}) & \tfrac14(e^{3t}-e^{-t}) \\[4pt] e^{3t}-e^{-t} & \tfrac12(e^{3t}+e^{-t}) \end{pmatrix}. $$

Check: at $t=0$ this is $\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} = I$, as required of any matrix exponential. Applying it to $\mathbf{x}_0 = \binom{2}{0}$ reproduces $e^{3t}\binom{1}{2} + e^{-t}\binom{1}{-2}$ from Worked Example 2.2.

Worked Example 7.3: a forced system with a constant input例题 7.3:常数输入的受迫方程组

Solve $\mathbf{x}' = \begin{pmatrix} -2 & 0 \\ 0 & -3 \end{pmatrix}\mathbf{x} + \binom{4}{6}$ with $\mathbf{x}(0) = \mathbf{0}$.

Because $A$ is diagonal, the system decouples: $x_1' = -2x_1 + 4$ and $x_2' = -3x_2 + 6$. Each is a scalar linear ODE. The equilibrium (particular) solution is found by setting derivatives to zero: $x_1^* = 2$, $x_2^* = 2$.

Using variation of parameters with $e^{At} = \operatorname{diag}(e^{-2t}, e^{-3t})$,

$$ \mathbf{x}(t) = \int_0^t e^{A(t-s)}\binom{4}{6}\,ds = \binom{4\int_0^t e^{-2(t-s)}\,ds}{6\int_0^t e^{-3(t-s)}\,ds} = \binom{2(1 - e^{-2t})}{2(1 - e^{-3t})}. $$

As $t\to\infty$ the transient $e^{-2t}, e^{-3t}$ decay and $\mathbf{x}(t) \to \binom{2}{2}$, the equilibrium. This decomposition into a decaying homogeneous transient plus a steady particular state is the structural meaning of the variation of parameters formula.

Common error.常见错误。 The identity $e^{(A+B)t} = e^{At}e^{Bt}$ holds only when $A$ and $B$ commute, that is $AB = BA$. For general matrices it is false, and students who split a matrix into a sum and exponentiate each piece independently get a wrong answer. A safe route is always $e^{At} = P\,e^{Dt}\,P^{-1}$ for diagonalizable $A$, or the defining power series otherwise. A related slip is writing $\frac{d}{dt}e^{At} = e^{At}A$ and then, in the variation of parameters integral, pulling $A$ to the wrong side; since $A e^{At} = e^{At}A$ (a matrix commutes with its own exponential) this particular case is harmless, but the habit of assuming commutation causes real errors elsewhere. 等式 $e^{(A+B)t}=e^{At}e^{Bt}$ 仅在 $A$ 与 $B$ 可交换(即 $AB=BA$)时成立,对一般矩阵是错误的。安全做法始终是对可对角化的 $A$ 使用 $e^{At}=P\,e^{Dt}\,P^{-1}$,或直接使用定义幂级数。另一相关错误是将 $\frac{d}{dt}e^{At}$ 写成 $te^{At}$ 而非 $Ae^{At}$。
Going deeper: the matrix exponential solves the system深入探讨:矩阵指数求解方程组

We verify directly from the series that $\Phi(t) = e^{At}$ satisfies $\Phi' = A\Phi$ and $\Phi(0) = I$, so that $\mathbf{x}(t) = e^{At}\mathbf{x}_0$ solves the IVP.

First, $\Phi(0) = \sum_{k\ge 0}\frac{(A\cdot 0)^k}{k!} = I$ since only the $k=0$ term survives. The series $\sum_k \frac{(At)^k}{k!}$ converges absolutely for every $t$ because, in any submultiplicative matrix norm, $\big\|\frac{(At)^k}{k!}\big\| \le \frac{(\|A\|\,|t|)^k}{k!}$, whose sum is $e^{\|A\|\,|t|}$. Absolute convergence licenses term-by-term differentiation.

$$ \frac{d}{dt}e^{At} = \frac{d}{dt}\sum_{k=0}^\infty \frac{A^k t^k}{k!} = \sum_{k=1}^\infty \frac{A^k t^{k-1}}{(k-1)!} = A\sum_{j=0}^\infty \frac{A^j t^j}{j!} = A\,e^{At}, $$

where we shifted the index $j = k-1$ and factored one $A$ out the front. Therefore with $\mathbf{x}(t) = e^{At}\mathbf{x}_0$ we get $\mathbf{x}' = A e^{At}\mathbf{x}_0 = A\mathbf{x}$ and $\mathbf{x}(0) = \mathbf{x}_0$. By the uniqueness theorem of Section 1 this is the only solution. Finally, for the forced equation, differentiating $\mathbf{x}(t) = e^{At}\mathbf{x}_0 + \int_0^t e^{A(t-s)}\mathbf{g}(s)\,ds$ with the Leibniz rule gives $\mathbf{x}' = A e^{At}\mathbf{x}_0 + e^{A\cdot 0}\mathbf{g}(t) + \int_0^t A e^{A(t-s)}\mathbf{g}(s)\,ds = A\mathbf{x} + \mathbf{g}(t)$, confirming the variation of parameters formula.

If $A$ is diagonalizable as $A = PDP^{-1}$, then $e^{At}$ equals:若 $A$ 可对角化为 $A=PDP^{-1}$,则 $e^{At}$ 等于:
7.1
$P^{-1} e^{Dt} P$
$P\, e^{Dt}\, P^{-1}$ with $e^{Dt} = \operatorname{diag}(e^{\lambda_i t})$
$e^{D}\, P\, t$
$P D P^{-1} t$
Correct. Each power $A^k = P D^k P^{-1}$, so summing the exponential series gives $e^{At} = P\,e^{Dt}\,P^{-1}$ with $e^{Dt}$ diagonal.正确。每个幂次 $A^k=PD^kP^{-1}$,求和指数级数得 $e^{At}=P\,e^{Dt}\,P^{-1}$,其中 $e^{Dt}$ 为对角矩阵。
Substitute $A^k = PD^kP^{-1}$ into the series $\sum (At)^k/k!$; the $P$ and $P^{-1}$ factor out as $P\,e^{Dt}\,P^{-1}$.将 $A^k=PD^kP^{-1}$ 代入级数 $\sum(At)^k/k!$;$P$ 和 $P^{-1}$ 提取到外面,得 $P\,e^{Dt}\,P^{-1}$。

Flashcards闪卡

0 / 12 flipped
Reduce $y^{(n)} = f$ to a system: what are the new variables?将 $y^{(n)}=f$ 化为方程组:新变量是什么?
Set $x_1 = y,\ x_2 = y',\ \dots,\ x_n = y^{(n-1)}$. Then $x_i' = x_{i+1}$ and $x_n' = f$.令 $x_1=y,\;x_2=y',\;\dots,\;x_n=y^{(n-1)}$,则 $x_i'=x_{i+1}$,$x_n'=f$。
What solution form does the eigenvalue method seek for $\mathbf{x}' = A\mathbf{x}$?特征值法对 $\mathbf{x}'=A\mathbf{x}$ 寻求什么形式的解?
$\mathbf{x} = e^{\lambda t}\mathbf{v}$, which reduces the ODE to $A\mathbf{v} = \lambda\mathbf{v}$.$\mathbf{x}=e^{\lambda t}\mathbf{v}$,将微分方程化为 $A\mathbf{v}=\lambda\mathbf{v}$。
General solution for $n$ real distinct eigenvalues$n$ 个实不同特征值的通解
$\mathbf{x}(t) = \sum_{i=1}^n c_i e^{\lambda_i t}\mathbf{v}_i$, a basis of the solution space.$\mathbf{x}(t)=\sum_{i=1}^n c_i e^{\lambda_i t}\mathbf{v}_i$,构成解空间的基。
Two real solutions from a complex eigenpair $\alpha \pm i\beta$ with $\mathbf{v} = \mathbf{a} + i\mathbf{b}$复特征对 $\alpha\pm i\beta$($\mathbf{v}=\mathbf{a}+i\mathbf{b}$)对应的两个实数解
$e^{\alpha t}(\mathbf{a}\cos\beta t - \mathbf{b}\sin\beta t)$ and $e^{\alpha t}(\mathbf{a}\sin\beta t + \mathbf{b}\cos\beta t)$.$e^{\alpha t}(\mathbf{a}\cos\beta t-\mathbf{b}\sin\beta t)$ 和 $e^{\alpha t}(\mathbf{a}\sin\beta t+\mathbf{b}\cos\beta t)$。
Defective double eigenvalue: how do you get the second solution?亏损二重特征值:如何求第二个解?
Solve $(A - \lambda I)\mathbf{w} = \mathbf{v}$; then $\mathbf{x}_2 = e^{\lambda t}(t\mathbf{v} + \mathbf{w})$.求解 $(A-\lambda I)\mathbf{w}=\mathbf{v}$;则 $\mathbf{x}_2=e^{\lambda t}(t\mathbf{v}+\mathbf{w})$。
Wronskian of solutions: Abel's theorem解的朗斯基行列式:阿贝尔定理
$W(t) = W(t_0)\exp\!\big(\int_{t_0}^t \operatorname{tr} A\,ds\big)$, so $W$ is everywhere zero or never zero.$W(t)=W(t_0)\exp\!\bigl(\int_{t_0}^t\operatorname{tr}A\,ds\bigr)$,故 $W$ 处处为零或处处非零。
Stability test for $\mathbf{x}' = A\mathbf{x}$ in the plane平面方程组 $\mathbf{x}'=A\mathbf{x}$ 的稳定性判别
Asymptotically stable iff $\operatorname{tr} A < 0$ and $\det A > 0$.渐近稳定当且仅当 $\operatorname{tr}A<0$ 且 $\det A>0$。
Sign of $\det A$ that forces a saddle迫使鞍点出现的 $\det A$ 符号
$\det A < 0$: eigenvalues are real with opposite signs, so the origin is a saddle (unstable).$\det A<0$:特征值为实数且异号,原点为鞍点(不稳定)。
Phase portrait for purely imaginary eigenvalues $\pm i\beta$纯虚特征值 $\pm i\beta$ 的相图
A center: closed elliptical orbits, neutrally stable, no growth or decay.中心:封闭椭圆轨道,中性稳定,无增长或衰减。
What is the matrix exponential and what does it solve?什么是矩阵指数?它求解什么问题?
$e^{At} = \sum_{k\ge 0}(At)^k/k!$; it is the fundamental matrix with $e^{A\cdot 0}=I$, and $\mathbf{x}(t) = e^{At}\mathbf{x}_0$.$e^{At}=\sum_{k\ge 0}(At)^k/k!$;它是满足 $e^{A\cdot 0}=I$ 的基解矩阵,$\mathbf{x}(t)=e^{At}\mathbf{x}_0$。
Variation of parameters for $\mathbf{x}' = A\mathbf{x} + \mathbf{g}$$\mathbf{x}'=A\mathbf{x}+\mathbf{g}$ 的参数变分公式
$\mathbf{x}(t) = e^{At}\mathbf{x}_0 + \int_0^t e^{A(t-s)}\mathbf{g}(s)\,ds$.$\mathbf{x}(t)=e^{At}\mathbf{x}_0+\int_0^t e^{A(t-s)}\mathbf{g}(s)\,ds$。
For diagonalizable $A = PDP^{-1}$, what is $e^{At}$?对可对角化的 $A=PDP^{-1}$,$e^{At}$ 是什么?
$e^{At} = P\,e^{Dt}\,P^{-1}$ with $e^{Dt} = \operatorname{diag}(e^{\lambda_i t})$.$e^{At}=P\,e^{Dt}\,P^{-1}$,其中 $e^{Dt}=\operatorname{diag}(e^{\lambda_i t})$。

Unit Quiz单元测验

Rewriting $y'' - 5y' + 6y = 0$ as $\mathbf{x}' = A\mathbf{x}$ with $x_1 = y$, $x_2 = y'$, the matrix $A$ is:将 $y''-5y'+6y=0$ 改写为 $\mathbf{x}'=A\mathbf{x}$,令 $x_1=y$,$x_2=y'$,矩阵 $A$ 为:
1
$\begin{pmatrix} 0 & 1 \\ 5 & -6 \end{pmatrix}$
$\begin{pmatrix} 0 & 1 \\ 6 & 5 \end{pmatrix}$
$\begin{pmatrix} 0 & 1 \\ -6 & 5 \end{pmatrix}$
$\begin{pmatrix} 1 & 0 \\ -6 & 5 \end{pmatrix}$
Correct. $x_1' = x_2$ and $x_2' = y'' = 5y' - 6y = -6x_1 + 5x_2$, giving the companion matrix with bottom row $(-6,\,5)$.正确。$x_1'=x_2$,$x_2'=y''=5y'-6y=-6x_1+5x_2$,伴随矩阵底行为 $(-6,\,5)$。
Solve for $y'' = 5y' - 6y$, so the bottom row is $(-6,\,5)$ and the top row is $(0,\,1)$.对 $y''$ 求解:$y''=5y'-6y$,底行为 $(-6,\,5)$,顶行为 $(0,\,1)$。
The general solution of $\mathbf{x}' = A\mathbf{x}$ with eigenpairs $(\lambda_1, \mathbf{v}_1)$ and $(\lambda_2, \mathbf{v}_2)$, distinct reals, is:方程组 $\mathbf{x}'=A\mathbf{x}$ 有特征对 $(\lambda_1,\mathbf{v}_1)$ 和 $(\lambda_2,\mathbf{v}_2)$(实不同),通解为:
2
$c_1 e^{\lambda_1 t}\mathbf{v}_1 + c_2 e^{\lambda_2 t}\mathbf{v}_2$
$c_1 e^{\lambda_1 t}\mathbf{v}_2 + c_2 e^{\lambda_2 t}\mathbf{v}_1$
$(c_1 + c_2 t)e^{\lambda_1 t}\mathbf{v}_1$
$e^{\lambda_1 t}\cos(\lambda_2 t)\mathbf{v}_1$
Correct. Each eigenpair contributes $e^{\lambda t}\mathbf{v}$, and distinct real eigenvalues give independent solutions that superpose.正确。每个特征对贡献 $e^{\lambda t}\mathbf{v}$,实不同特征值给出线性无关的解,叠加即为通解。
Pair each eigenvalue with its own eigenvector: $c_1 e^{\lambda_1 t}\mathbf{v}_1 + c_2 e^{\lambda_2 t}\mathbf{v}_2$.每个特征值配对其自身的特征向量:$c_1e^{\lambda_1 t}\mathbf{v}_1+c_2e^{\lambda_2 t}\mathbf{v}_2$。
A real system has eigenvalues $-2 \pm 5i$. The origin is:某实方程组的特征值为 $-2\pm 5i$,原点是:
3
an unstable spiral不稳定螺旋点
a saddle鞍点
a center中心
a stable spiral稳定螺旋点
Correct. The real part is $-2 < 0$ so amplitude decays, and the nonzero imaginary part forces rotation: a stable spiral.正确。实部 $-2<0$ 使振幅衰减,非零虚部产生旋转:稳定螺旋点。
Negative real part means decay (stable); nonzero imaginary part means rotation (spiral). Together: a stable spiral.实部为负意味着衰减(稳定);非零虚部意味着旋转(螺旋)。合在一起:稳定螺旋点。
A double eigenvalue $\lambda$ is defective (one eigenvector $\mathbf{v}$). The generalized eigenvector $\mathbf{w}$ solves:二重特征值 $\lambda$ 是亏损的(仅有一个特征向量 $\mathbf{v}$),广义特征向量 $\mathbf{w}$ 满足:
4
$(A - \lambda I)\mathbf{w} = \mathbf{0}$
$(A - \lambda I)\mathbf{w} = \mathbf{v}$
$A\mathbf{w} = \mathbf{v}$
$(A - \lambda I)^2\mathbf{w} = \mathbf{v}$
Correct. Plugging $e^{\lambda t}(t\mathbf{v} + \mathbf{w})$ into the system forces $(A - \lambda I)\mathbf{w} = \mathbf{v}$.正确。将 $e^{\lambda t}(t\mathbf{v}+\mathbf{w})$ 代入方程组,得到 $(A-\lambda I)\mathbf{w}=\mathbf{v}$。
The eigenvector itself solves the homogeneous equation; the generalized eigenvector solves $(A - \lambda I)\mathbf{w} = \mathbf{v}$.特征向量本身满足齐次方程;广义特征向量满足 $(A-\lambda I)\mathbf{w}=\mathbf{v}$。
The origin of $\mathbf{x}' = A\mathbf{x}$ is asymptotically stable if and only if:方程组 $\mathbf{x}'=A\mathbf{x}$ 的原点渐近稳定当且仅当:
5
$\det A < 0$
$\operatorname{tr} A > 0$ and $\det A > 0$$\operatorname{tr}A > 0$ 且 $\det A > 0$
$\operatorname{tr} A < 0$ and $\det A > 0$$\operatorname{tr}A < 0$ 且 $\det A > 0$
$\operatorname{tr} A = 0$
Correct. Both eigenvalues have negative real part exactly when the trace is negative and the determinant is positive (Routh-Hurwitz in two dimensions).正确。两个特征值均有负实部,等价于迹为负且行列式为正(二维 Routh-Hurwitz 判据)。
Stability requires both eigenvalues to have negative real part, which for a $2\times2$ matrix means $\operatorname{tr}A < 0$ and $\det A > 0$.稳定性要求两个特征值均有负实部,对 $2\times 2$ 矩阵等价于 $\operatorname{tr}A<0$ 且 $\det A>0$。
The matrix exponential solution of $\mathbf{x}' = A\mathbf{x} + \mathbf{g}(t)$, $\mathbf{x}(0) = \mathbf{x}_0$ is:方程组 $\mathbf{x}'=A\mathbf{x}+\mathbf{g}(t)$,$\mathbf{x}(0)=\mathbf{x}_0$ 的矩阵指数解为:
6
$e^{At}\mathbf{x}_0 + \int_0^t e^{A(t-s)}\mathbf{g}(s)\,ds$
$e^{At}\mathbf{x}_0 + \int_0^t e^{As}\mathbf{g}(s)\,ds$
$e^{At}\big(\mathbf{x}_0 + \mathbf{g}(t)\big)$
$e^{At}\mathbf{x}_0 + A^{-1}\mathbf{g}(t)$
Correct. Variation of parameters gives the convolution form with kernel $e^{A(t-s)}$ acting on the forcing.正确。参数变分法给出卷积形式,核函数为 $e^{A(t-s)}$ 作用于强迫项。
The correct kernel inside the integral is $e^{A(t-s)}$, not $e^{As}$; this is the convolution of the forcing with the matrix exponential.积分中正确的核函数是 $e^{A(t-s)}$,而非 $e^{As}$;这是强迫项与矩阵指数的卷积。

Readiness Checklist掌握度自查

Tap each item you can do without notes. 点击你无需笔记即可完成的项目。0 / 8 mastered