跳到主要内容

東京大学 新領域創成科学研究科 人間環境学専攻 2020年8月実施 微分方程

Author

思齐塾, 祭音Myyura

Description

(1) 次の連立微分方程式を解くことを考える。

dydx=Ay+f(x)(1)\frac{dy}{dx} = Ay + f(x) \tag{1}

ここで、

y=[y1(x)y2(x)],A=[3214],f(x)=[exe2x]y = \begin{bmatrix} y_1(x) \\ y_2(x) \end{bmatrix}, A = \begin{bmatrix} 3 & 2 \\ 1 & 4 \end{bmatrix}, f(x) = \begin{bmatrix} e^x \\ e^{2x} \end{bmatrix}

とする。

  1. P1APP^{-1}AP が対角行列となるような、行列 PP を求めよ。またその逆行列 P1P^{-1} を求めよ。

  2. z=[z1(x)z2(x)]=P1yz = \begin{bmatrix} z_1(x) \\ z_2(x) \end{bmatrix} = P^{-1}y とおき、式 (1) を zz に関する連立微分方程式に変換する。 この zz に関する連立微分方程式の一般解を求めよ。

なお、非同次方程式 dgdx=p(x)g+q(x)\frac{dg}{dx} = p(x)g + q(x) の一般解 g=g(x)g = g(x) は、 q(x)=0q(x) = 0 とおいた同次方程式の一般解 g=g0(x)g = g_0(x) を用いて式 (2) のように表されることを用いてもよい。

g(x)=g0(x)q(x)g0(x)dx+Cg0(x)(2)g(x) = g_0(x) \int \frac{q(x)}{g_0(x)} dx + Cg_0(x) \tag{2}

ここで、 CC は任意の定数である。

题目描述

考虑非齐次线性微分方程组

dydx=Ay+f(x),(1)\frac{dy}{dx}=Ay+f(x), \tag{1}

其中

y=[y1(x)y2(x)],A=[3214],f(x)=[exe2x].y=\begin{bmatrix}y_1(x)\\y_2(x)\end{bmatrix}, \qquad A=\begin{bmatrix}3&2\\1&4\end{bmatrix}, \qquad f(x)=\begin{bmatrix}e^x\\e^{2x}\end{bmatrix}.
  1. 求一个可逆矩阵 PP,使 P1APP^{-1}AP 为对角矩阵,并求出 P1P^{-1}

  2. z=[z1(x)z2(x)]=P1y.z=\begin{bmatrix}z_1(x)\\z_2(x)\end{bmatrix}=P^{-1}y.

    将式 (1) 化为关于 zz 的微分方程组,并求该方程组的一般解。

可以使用以下一阶非齐次线性方程公式:若

dgdx=p(x)g+q(x),\frac{dg}{dx}=p(x)g+q(x),

且把 q(x)q(x) 置为 00 后所得齐次方程的通解记为 g0(x)g_0(x),则非齐次方程可写为

g(x)=g0(x)q(x)g0(x)dx+Cg0(x),(2)g(x)=g_0(x)\int\frac{q(x)}{g_0(x)}\,dx+Cg_0(x), \tag{2}

其中 CC 为任意常数。

Kai

  1. To find matrix PP such that P1APP^{-1}AP is a diagonal matrix, we first need to find the eigenvalues of matrix AA .
A=[3214]A = \begin{bmatrix} 3 & 2 \\ 1 & 4 \end{bmatrix}

The characteristic equation is given by det(AλI)=0\det(A - \lambda I) = 0 , where II is the identity matrix.

3λ214λ=(3λ)(4λ)2=λ27λ+122=λ27λ+10=(λ2)(λ5)=0\begin{vmatrix} 3 - \lambda & 2 \\ 1 & 4 - \lambda \end{vmatrix} = (3 - \lambda)(4 - \lambda) - 2 = \lambda^2 - 7\lambda + 12 - 2 = \lambda^2 - 7\lambda + 10 = (\lambda - 2)(\lambda - 5) = 0

So, the eigenvalues are λ1=2\lambda_1 = 2 and λ2=5\lambda_2 = 5 .

Now, we find the eigenvectors corresponding to each eigenvalue. For λ1=2\lambda_1 = 2 :

(A2I)v1=0[1212][xy]=[00]x+2y=0(A - 2I)v_1 = 0 \Rightarrow \begin{bmatrix} 1 & 2 \\ 1 & 2 \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix} \Rightarrow x + 2y = 0

Let y=1y = 1 , then x=2x = -2 . So, the eigenvector v1=[21]v_1 = \begin{bmatrix} -2 \\ 1 \end{bmatrix} .

For λ2=5\lambda_2 = 5 :

(A5I)v2=0[2211][xy]=[00]xy=0(A - 5I)v_2 = 0 \Rightarrow \begin{bmatrix} -2 & 2 \\ 1 & -1 \end{bmatrix} \begin{bmatrix} x \\ y \end{bmatrix} = \begin{bmatrix} 0 \\ 0 \end{bmatrix} \Rightarrow x - y = 0

Let x=1x = 1 , then y=1y = 1 . So, the eigenvector v2=[11]v_2 = \begin{bmatrix} 1 \\ 1 \end{bmatrix} .

The matrix PP is formed by using the eigenvectors as columns:

P=[2111]P = \begin{bmatrix} -2 & 1 \\ 1 & 1 \end{bmatrix}

Now, we find the inverse of PP .

det(P)=(2)(1)(1)(1)=3\det(P) = (-2)(1) - (1)(1) = -3
P1=13[1112]=[1/31/31/32/3]P^{-1} = \frac{1}{-3} \begin{bmatrix} 1 & -1 \\ -1 & -2 \end{bmatrix} = \begin{bmatrix} -1/3 & 1/3 \\ 1/3 & 2/3 \end{bmatrix}
  1. Given z=[z1(x)z2(x)]=P1yz = \begin{bmatrix} z_1(x) \\ z_2(x) \end{bmatrix} = P^{-1}y , we have y=Pzy = Pz . Substitute this into the original equation:
d(Pz)dx=A(Pz)+f(x)\frac{d(Pz)}{dx} = A(Pz) + f(x)
Pdzdx=APz+f(x)P \frac{dz}{dx} = APz + f(x)

Multiply by P1P^{-1} on the left:

dzdx=P1APz+P1f(x)\frac{dz}{dx} = P^{-1}APz + P^{-1}f(x)

Since P1APP^{-1}AP is a diagonal matrix with eigenvalues on the diagonal, we have:

P1AP=[2005]P^{-1}AP = \begin{bmatrix} 2 & 0 \\ 0 & 5 \end{bmatrix}
P1f(x)=[1/31/31/32/3][exe2x]=[(ex+e2x)/3(ex+2e2x)/3]P^{-1}f(x) = \begin{bmatrix} -1/3 & 1/3 \\ 1/3 & 2/3 \end{bmatrix} \begin{bmatrix} e^x \\ e^{2x} \end{bmatrix} = \begin{bmatrix} (-e^x + e^{2x})/3 \\ (e^x + 2e^{2x})/3 \end{bmatrix}

So, the system of differential equations becomes:

dz1dx=2z1+ex+e2x3\frac{dz_1}{dx} = 2z_1 + \frac{-e^x + e^{2x}}{3}
dz2dx=5z2+ex+2e2x3\frac{dz_2}{dx} = 5z_2 + \frac{e^x + 2e^{2x}}{3}

These are first-order linear differential equations. We can solve each one separately using an integrating factor or the formula given in the problem. For z1(x)z_1(x) : dz1dx2z1=ex+e2x3\frac{dz_1}{dx} - 2z_1 = \frac{-e^x + e^{2x}}{3} Let g0(x)=e2xg_0(x) = e^{2x} , so z1(x)=e2xex+e2x3e2xdx+Ce2x=e2xex+e2x3e2xdx+Ce2x=e2xex+13dx+Ce2x=e2x(ex+x3)+Ce2x=ex+xe2x3+Ce2xz_1(x) = e^{2x} \int \frac{\frac{-e^x + e^{2x}}{3}}{e^{2x}} dx + Ce^{2x} = e^{2x} \int \frac{-e^x + e^{2x}}{3e^{2x}} dx + Ce^{2x} = e^{2x} \int \frac{-e^{-x} + 1}{3} dx + Ce^{2x} = e^{2x}(\frac{e^{-x} + x}{3}) + Ce^{2x} = \frac{e^x + xe^{2x}}{3} + Ce^{2x} For z2(x)z_2(x) : dz2dx5z2=ex+2e2x3\frac{dz_2}{dx} - 5z_2 = \frac{e^x + 2e^{2x}}{3} Let g0(x)=e5xg_0(x) = e^{5x} , so z2(x)=e5xex+2e2x3e5xdx+Ce5x=e5xex+2e2x3e5xdx+Ce5x=e5xe4x+2e3x3dx+Ce5x=e5x(e4x122e3x9)+Ce5x=ex122e2x9+Ce5xz_2(x) = e^{5x} \int \frac{\frac{e^x + 2e^{2x}}{3}}{e^{5x}} dx + Ce^{5x} = e^{5x} \int \frac{e^x + 2e^{2x}}{3e^{5x}} dx + Ce^{5x} = e^{5x} \int \frac{e^{-4x} + 2e^{-3x}}{3} dx + Ce^{5x} = e^{5x}(\frac{-e^{-4x}}{12} - \frac{2e^{-3x}}{9}) + Ce^{5x} = -\frac{e^x}{12} - \frac{2e^{2x}}{9} + Ce^{5x} Therefore,

z(x)=[ex+xe2x3+C1e2xex122e2x9+C2e5x],z(x) = \begin{bmatrix} \frac{e^x + xe^{2x}}{3} + C_1e^{2x} \\ -\frac{e^x}{12} - \frac{2e^{2x}}{9} + C_2e^{5x} \end{bmatrix},

where C1C_1 and C2C_2 are independent arbitrary constants.