01. 微分方程

2024-06-14 17:18
文章标签 01 微分方程

本文主要是介绍01. 微分方程,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一阶微分方程

  1. 可分离变量 d y d x = φ ( x ) φ ( y ) \frac{\mathrm dy}{\mathrm dx}=\varphi(x)\varphi(y) dxdy=φ(x)φ(y)
    分离变量,两边同时积分即可。

  2. 齐次 d y d x = φ ( y x ) \frac{\mathrm dy}{\mathrm dx}=\varphi(\frac{y}{x}) dxdy=φ(xy)
    先令 u = y x u=\frac{y}{x} u=xy,代入原方程得 u + x d u d x = φ ( u ) u+x\frac{\mathrm du}{\mathrm dx}=\varphi(u) u+xdxdu=φ(u),分离变量,再两边同时积分即可。

  3. 线性微分 d y d x + P ( x ) ⋅ y = Q ( x ) \frac{\mathrm dy}{\mathrm dx}+P(x)\cdot y=Q(x) dxdy+P(x)y=Q(x)
    通解 y = [ ∫ Q ( x ) e ∫ P ( x ) d x d x + C ] e − ∫ P ( x ) d x y=\left[\int{Q(x)\mathrm e^{\int{P(x)\mathrm dx}}\mathrm dx}+C\right]\mathrm e^{-\int{P(x)\mathrm dx}} y=[Q(x)eP(x)dxdx+C]eP(x)dx

二阶微分方程

  1. 可降阶缺 y: f ( x , y ′ , y ′ ′ ) = 0 f(x,y',y'')=0 f(x,y,y)=0
    y ′ = d y d x = p y'=\frac{\mathrm dy}{\mathrm dx}=p y=dxdy=p,则 y ′ ′ = d p d x y''=\frac{\mathrm dp}{\mathrm dx} y=dxdp,代入原方程求解。

  2. 可降阶缺 x: f ( y , y ′ , y ′ ′ ) = 0 f(y,y',y'')=0 f(y,y,y)=0
    y ′ = p y'=p y=p,则 y ′ ′ = d p d x = p d p d y y''=\frac{\mathrm dp}{\mathrm dx}=p\frac{\mathrm dp}{\mathrm dy} y=dxdp=pdydp,代入原方程求解。

  3. 常系数齐次线性 y ′ ′ + p y ′ + q = 0 y''+py'+q=0 y+py+q=0
    1)求特征方程 λ 2 + p λ + q = 0 \lambda^2+p\lambda+q=0 λ2+pλ+q=0 对应的特征根 λ 1 \lambda_1 λ1 λ 2 \lambda_2 λ2
    2)根据特征根的值求得齐次通解

    Δ = p 2 − 4 q \Delta=p^2-4q Δ=p24q λ 1 \lambda_1 λ1 λ 2 \lambda_2 λ2 的关系通解 y y y
    > 0 >0 >0 λ 1 ≠ λ 2 \lambda_1\neq\lambda_2 λ1=λ2 y = C 1 e λ 1 x + C 2 e λ 2 x y=C_1\mathrm{e}^{\lambda_1x}+C_2\mathrm{e}^{\lambda_2x} y=C1eλ1x+C2eλ2x
    < 0 <0 <0共轭复根
    λ 1 , λ 2 = α ± i β \lambda_1,\lambda_2=\alpha\pm\mathrm i\beta λ1,λ2=α±iβ
    y = C 1 cos ⁡ ( β x ) e α x + C 2 sin ⁡ ( β x ) e α x y=C_1\cos{(\beta x)}\mathrm{e}^{\alpha x}+C_2\sin{(\beta x)}\mathrm{e}^{\alpha x} y=C1cos(βx)eαx+C2sin(βx)eαx
    = 0 =0 =0 λ 1 = λ 2 \lambda_1=\lambda_2 λ1=λ2 y = C 1 e λ 1 x + C 2 ⋅ x ⋅ e λ 2 x y=C_1\mathrm{e}^{\lambda_1x}+C_2\cdot x\cdot\mathrm{e}^{\lambda_2x} y=C1eλ1x+C2xeλ2x
  4. 常系数非齐次线性 y ′ ′ + p y ′ + q = φ m ( x ) ⋅ e ρ x y''+py'+q = \varphi_m(x)\cdot\mathrm{e}^{\rho x} y+py+q=φm(x)eρx ρ \rho ρ 为复数
    1)解对应的齐次方程 y ′ ′ + p y ′ + q = 0 y''+py'+q=0 y+py+q=0,得齐次通解 y ‾ \overline y y
    2)假定非齐次特解 y ∗ = x k ⋅ Q m ( x ) ⋅ e ρ x y^*=x^k\cdot Q_m(x)\cdot\mathrm e^{\rho x} y=xkQm(x)eρx
      其中, k k k ρ \rho ρ 是特征方程的二重根、单根、不是它的根分别取 2 2 2 1 1 1 0 0 0
      其中, Q m ( x ) Q_m(x) Qm(x) φ m ( x ) \varphi_m(x) φm(x) 的同次多项式;
      此时,特解 y ∗ y^* y 中的系数并未确定,通过步骤 3 代入求得;
    3)求 y ∗ y^* y 的一阶导 y ∗ ′ y^*{'} y 以及二阶导 y ∗ ′ ′ y^*{''} y,并代入原方程,比较系数,解得非齐次特解 y ∗ y^* y
    4)根据解的结构得:非齐次通解 y y y = 齐次通解 y ‾ \overline y y + 非齐次特解 y ∗ y^* y

例题

  1. 求微分方程 d y d x = 1 + sin ⁡ y \frac{\mathrm dy}{\mathrm dx}=1+\sin y dxdy=1+siny 的通解。
    1)同除 1 + sin ⁡ y 1+\sin y 1+siny,同乘 d x dx dx,得 d y 1 + sin ⁡ y = d x \frac{\mathrm dy}{1+\sin y}=\mathrm dx 1+sinydy=dx
    2)同时积分 ∫ 1 1 + sin ⁡ y d y = ∫ d x \int{\frac{1}{1+\sin y}\mathrm dy}=\int{\mathrm dx} 1+siny1dy=dx
    3)解得 tan ⁡ ( y 2 − π 4 ) = x + C \tan{\left(\frac{y}{2}-\frac{\pi}{4}\right)}=x+C tan(2y4π)=x+C tan ⁡ x − sec ⁡ x = x + C \tan x-\sec x =x+C tanxsecx=x+C C C C 为任意常数;

注1:同除 1 + sin ⁡ y 1+\sin y 1+siny 时,你已默认 1 + sin ⁡ y ≠ 0 1+\sin y\neq 0 1+siny=0 了,回避了 1 + sin ⁡ y = 0 1+\sin y=0 1+siny=0 的情况,从而丢掉了部分解。当 1 + sin ⁡ y = 0 1+\sin y=0 1+siny=0 时,有 y = 2 k π − π 2 y=2k\pi-\frac{\pi}{2} y=2kπ2π,其中 y = 0 , ± 1 , ± 2 , … y=0, \pm1, \pm2, \dots y=0,±1,±2,

注2: ∫ 1 1 + sin ⁡ x d x \int{\frac{1}{1+\sin x}\mathrm dx} 1+sinx1dx 的解法:

1)诱导公式与二倍角:
∫ 1 1 + sin ⁡ x d x = ∫ 1 1 + cos ⁡ ( x − π 2 ) d x 诱导公式: sin ⁡ x = cos ⁡ ( x − π 2 ) = ∫ 1 2 cos ⁡ 2 ( x 2 − π 4 ) d x 二倍角变形: cos ⁡ x = 2 cos ⁡ 2 ( x 2 ) − 1 = ∫ 1 cos ⁡ 2 ( x 2 − π 4 ) d ( x 2 ) = ∫ 1 cos ⁡ 2 ( x 2 − π 4 ) d ( x 2 − π 4 ) = ∫ sec ⁡ 2 ( x 2 − π 4 ) d ( x 2 − π 4 ) = tan ⁡ ( x 2 − π 4 ) + C \begin{array}{lll} \int{\frac{1}{1+\sin x}\mathrm dx} &=& \int{\frac{1}{1+\cos\left(x-\frac{\pi}{2}\right)}\mathrm dx} & \text{诱导公式:}\sin x=\cos(x-\frac{\pi}{2}) \\ &=& \int{\frac{1}{2\cos^2\left(\frac{x}{2}-\frac{\pi}{4}\right)}\mathrm dx} & \text{二倍角变形:}\cos{x}=2\cos^2(\frac{x}{2}) - 1 \\ &=& \int{\frac{1}{\cos^2\left(\frac{x}{2}-\frac{\pi}{4}\right)}\mathrm d\left(\frac{x}{2}\right)} & \\ &=& \int{\frac{1}{\cos^2\left(\frac{x}{2}-\frac{\pi}{4}\right)}\mathrm d\left(\frac{x}{2}-\frac{\pi}{4}\right)} & \\ &=& \int{\sec^2{\left(\frac{x}{2}-\frac{\pi}{4}\right)}\mathrm d\left(\frac{x}{2}-\frac{\pi}{4}\right)} & \\ &=& \tan{\left(\frac{x}{2}-\frac{\pi}{4}\right)}+\mathrm C \end{array} 1+sinx1dx======1+cos(x2π)1dx2cos2(2x4π)1dxcos2(2x4π)1d(2x)cos2(2x4π)1d(2x4π)sec2(2x4π)d(2x4π)tan(2x4π)+C诱导公式:sinx=cos(x2π)二倍角变形:cosx=2cos2(2x)1

2)平方差:
∫ 1 1 + sin ⁡ x d x = ∫ 1 − sin ⁡ x ( 1 − sin ⁡ x ) ( 1 + sin ⁡ x ) d x = ∫ 1 − sin ⁡ x 1 − sin ⁡ 2 x d x = ∫ 1 − sin ⁡ x cos ⁡ 2 x d x = ∫ 1 cos ⁡ 2 x d x − ∫ sin ⁡ x cos ⁡ 2 x d x = ∫ d x cos ⁡ 2 x + ∫ d ( cos ⁡ x ) cos ⁡ 2 x = tan ⁡ x + ( − 1 cos ⁡ x ) + C = tan ⁡ x − sec ⁡ x + C \begin{array}{lll} \int{\frac{1}{1+\sin x}\mathrm dx} &=& \int{\frac{1-\sin x}{\left(1-\sin x\right)\left(1+\sin x\right)}\mathrm dx} & \\ &=& \int{\frac{1-\sin x}{1-\sin^2 x}\mathrm dx} & \\ &=& \int{\frac{1-\sin x}{\cos^2 x}\mathrm dx} & \\ &=& \int{\frac{1}{\cos^2 x}\mathrm dx}-\int{\frac{\sin x}{\cos^2 x}\mathrm dx} & \\ &=& \int{\frac{\mathrm dx}{\cos^2 x}}+\int{\frac{\mathrm d(\cos x)}{\cos^2 x}} & \\ &=& \tan x + (-\frac{1}{\cos x})+C & \\ &=& \tan x - \sec x + C \end{array} 1+sinx1dx=======(1sinx)(1+sinx)1sinxdx1sin2x1sinxdxcos2x1sinxdxcos2x1dxcos2xsinxdxcos2xdx+cos2xd(cosx)tanx+(cosx1)+Ctanxsecx+C

3)万能公式:
t = tan ⁡ ( x 2 ) t=\tan{\left(\frac{x}{2}\right)} t=tan(2x),则 x = 2 arctan ⁡ t x=2\arctan{t} x=2arctant sin ⁡ x = 2 t 1 + t 2 \sin x=\frac{2t}{1+t^2} sinx=1+t22t
∫ 1 1 + sin ⁡ x d x = ∫ 1 1 + 2 t 1 + t 2 d ( 2 arctan ⁡ t ) = ∫ 2 1 1 + t 2 1 + 2 t 1 + t 2 d t = 2 ∫ ( 1 1 + t 2 ) ( 1 + t 2 + 2 t 1 + t 2 ) d t = 2 ∫ 1 ( 1 + t ) 2 d t = − 2 × 1 1 + t + C = − 2 × 1 1 + tan ⁡ ( x 2 ) + C \begin{array}{lll} \int{\frac{1}{1+\sin x}\mathrm dx} &=& \int{\frac{1}{1+\frac{2t}{1+t^2}} \mathrm d(2\arctan t)} & \\ &=& \int{\frac{2\frac{1}{1+t^2}}{1+\frac{2t}{1+t^2}} \mathrm dt} & \\ &=& 2\int{\frac{(\frac{1}{1+t^2})}{(\frac{1+t^2+2t}{1+t^2})} \mathrm dt} & \\ &=& 2\int{\frac{1}{\left(1+t\right)^2} \mathrm dt} & \\ &=& -2\times\frac{1}{1+t}+C & \\ &=& -2\times\frac{1}{1+\tan(\frac{x}{2})}+C & \\ \end{array} 1+sinx1dx======1+1+t22t1d(2arctant)1+1+t22t21+t21dt2(1+t21+t2+2t)(1+t21)dt2(1+t)21dt2×1+t1+C2×1+tan(2x)1+C

结果看着很奇怪,但我们可以求导验证:
[ − 2 1 + tan ⁡ ( x 2 ) + C ] ′ = 0 × [ 1 + tan ⁡ ( x 2 ) ] − ( − 2 ) × [ sec ⁡ 2 ( x 2 ) ] × 1 2 [ 1 + tan ⁡ ( x 2 ) ] 2 = sec ⁡ 2 ( x 2 ) [ 1 + tan ⁡ ( x 2 ) ] 2 令 u = x 2 = sec ⁡ 2 u [ 1 + tan ⁡ u ] 2 = ( 1 cos ⁡ 2 u ) [ 1 + sin ⁡ u cos ⁡ u ] 2 = ( 1 cos ⁡ 2 u ) [ cos ⁡ u + sin ⁡ u ] 2 cos ⁡ 2 u = 1 ( sin ⁡ u + cos ⁡ u ) 2 = 1 sin ⁡ 2 u + cos ⁡ 2 u + 2 sin ⁡ u cos ⁡ u sin ⁡ 2 α + cos ⁡ 2 α = 1 = 1 1 + 2 sin ⁡ u cos ⁡ u 2 sin ⁡ α cos ⁡ α = sin ⁡ ( 2 α ) = 1 1 + sin ⁡ ( 2 u ) = 1 1 + sin ⁡ x \begin{array}{lll} \left[\frac{-2}{1+\tan(\frac{x}{2})}+C\right]' & =& \displaystyle\frac{0\times[1+\tan(\frac{x}{2})] - (-2)\times[\sec^2(\frac{x}{2})]\times\frac{1}{2}}{\left[1+\tan(\frac{x}{2})\right]^2} & \\ &=& \displaystyle\frac{\sec^2(\frac{x}{2})}{\left[1+\tan(\frac{x}{2})\right]^2} & \text{令}u=\frac{x}{2} \\ &=& \displaystyle\frac{\sec^2u}{\left[1+\tan u\right]^2} & \\ &=& \displaystyle\frac{(\frac{1}{\cos^2u})}{\left[1+\frac{\sin u}{\cos u}\right]^2} & \\ &=& \displaystyle\frac{(\frac{1}{\cos^2u})}{\frac{[\cos u+\sin u]^2}{\cos^2u}} & \\ &=& \displaystyle\frac{1}{\left(\sin u+\cos u\right)^2} & \\ &=& \displaystyle\frac{1}{\sin^2u+\cos^2u+2\sin u\cos u} & \sin^2\alpha+\cos^2\alpha=1 \\ &=& \displaystyle\frac{1}{1+2\sin u\cos u} & 2\sin\alpha\cos\alpha=\sin(2\alpha) \\ &=& \displaystyle\frac{1}{1+\sin(2u)} & \\ &=& \displaystyle\frac{1}{1+\sin x} \end{array} [1+tan(2x)2+C]==========[1+tan(2x)]20×[1+tan(2x)](2)×[sec2(2x)]×21[1+tan(2x)]2sec2(2x)[1+tanu]2sec2u[1+cosusinu]2(cos2u1)cos2u[cosu+sinu]2(cos2u1)(sinu+cosu)21sin2u+cos2u+2sinucosu11+2sinucosu11+sin(2u)11+sinx1u=2xsin2α+cos2α=12sinαcosα=sin(2α)

  1. 求微分方程 y ′ + y tan ⁡ x = cos ⁡ x y'+y\tan x=\cos x y+ytanx=cosx 的通解。
    不难看出 P ( x ) = tan ⁡ x P(x)=\tan x P(x)=tanx Q ( x ) = cos ⁡ x Q(x)=\cos x Q(x)=cosx,直接代入公式,有:
    y = [ ∫ Q ( x ) ⋅ e ∫ P ( x ) d x d x + C ] e − ∫ P ( x ) d x = [ ∫ cos ⁡ x ⋅ e ∫ tan ⁡ x d x d x + C ] e − ∫ tan ⁡ x d x = [ ∫ cos ⁡ x ⋅ e − ln ⁡ ∣ cos ⁡ x ∣ d x + C ] e ∣ ln ⁡ cos ⁡ x ∣ = [ ∫ cos ⁡ x ⋅ ∣ cos ⁡ x ∣ − 1 d x ] ⋅ ∣ cos ⁡ x ∣ = ( x + C ) cos ⁡ x C 为任意常数 \begin{array}{lll} y &= \left[\int{Q(x)\cdot\mathrm e^{\int{P(x)\mathrm dx}} \mathrm dx} + C\right] \mathrm e^{-\int{P(x)\mathrm dx}} & \\ &= \left[\int{\cos x \cdot \mathrm e^{\int{\tan x\mathrm dx}} \mathrm dx} + C\right] \mathrm e^{-\int{\tan x\mathrm dx}} & \\ &= \left[\int{\cos x\cdot \mathrm e^{-\ln{|\cos x|}} \mathrm dx} + C\right] \mathrm e^{|\ln{\cos x}|} & \\ &= \left[\int{\cos x\cdot |\cos x|^{-1}} \mathrm dx\right]\cdot |\cos x| & \\ &= (x+C)\cos x & C \text{为任意常数} \end{array} y=[Q(x)eP(x)dxdx+C]eP(x)dx=[cosxetanxdxdx+C]etanxdx=[cosxelncosxdx+C]elncosx=[cosxcosx1dx]cosx=(x+C)cosxC为任意常数

注:当 cos ⁡ x < 0 \cos x<0 cosx<0 时,
[ ∫ cos ⁡ x ⋅ ∣ cos ⁡ x ∣ − 1 d x ] ⋅ ∣ cos ⁡ x ∣ = [ − ∫ d x + C ] ⋅ ( − cos ⁡ x ) = ( x + C ) cos ⁡ x \begin{array}{ll} \left[\int{\cos x\cdot |\cos x|^{-1}} \mathrm dx\right]\cdot |\cos x| &= [-\int{dx}+C]\cdot(-\cos x) \\ &= (x+C)\cos x \end{array} [cosxcosx1dx]cosx=[dx+C](cosx)=(x+C)cosx

  1. 求微分方程 y ′ ′ + y ′ − 2 y = ( 2 x + 1 ) e x − 2 y''+y'-2y=(2x+1)\mathrm e^{x}-2 y+y2y=(2x+1)ex2 的通解。
    1)由特征方程 λ 2 + λ − 2 = 0 \lambda^2+\lambda-2=0 λ2+λ2=0,解得特征根 λ 1 = − 2 , λ 2 = 1 \lambda_1=-2, \lambda_2=1 λ1=2,λ2=1
    2)解得对应的齐次通解 y ‾ = C 1 e − 2 x + C 2 e x \overline y=C_1\mathrm e^{-2x}+C_2\mathrm e^{x} y=C1e2x+C2ex,其中 C 1 , C 2 C_1, C_2 C1,C2 为任意常数;
    3)根据原方程右边,假设非齐次特解
    y ∗ = x 1 ( a x + b ) e x + x 0 ( c ) e 0 = ( a x 2 + b x ) e x + c \begin{array}{ll} y^* &= x^1(ax+b)\mathrm e^{x}+x^0(c)\mathrm e^{0} \\ &= (ax^2+bx)\mathrm e^{x}+c \end{array} y=x1(ax+b)ex+x0(c)e0=(ax2+bx)ex+c

    4)求出 y ∗ y^* y 的一阶导以及二阶导:
    y ∗ ′ = ( 2 a x + b ) e x + ( a x 2 + b x ) e x y ∗ ′ ′ = 2 a x e x + ( 2 a x + b ) e x + ( 2 a x + b ) e x + ( a x 2 + b x ) e x = 2 a x e x + 2 ( 2 a x + b ) e x + ( a x 2 + b x ) e x \begin{array}{ll} y^*{'} &= (2ax+b)\mathrm e^x+(ax^2+bx)\mathrm e^x \\ \end{array} \\ \rule{}{} \\ \begin{array}{ll} y^*{''} &= 2ax\mathrm e^x+(2ax+b)\mathrm e^x+(2ax+b)\mathrm e^x+(ax^2+bx)\mathrm e^x \\ &= 2ax\mathrm e^x+2(2ax+b)\mathrm e^x+(ax^2+bx)\mathrm e^x \end{array} y=(2ax+b)ex+(ax2+bx)exy=2axex+(2ax+b)ex+(2ax+b)ex+(ax2+bx)ex=2axex+2(2ax+b)ex+(ax2+bx)ex

    5)将 y ∗ , y ∗ ′ , y ∗ ′ ′ y^*, y^*{'}, y^*{''} y,y,y 代入原方程:
    y ′ ′ + y ′ − 2 y = y ∗ ′ ′ + y ∗ ′ − 2 y ∗ = 2 a x e x + 2 ( 2 a x + b ) e x + ( a x 2 + b x ) e x ] + [ ( 2 a x + b ) e x + ( a x 2 + b x ) e x ] − 2 × [ ( a x 2 + b x ) e x + c ] = 2 a e x + 3 ( 2 a x + b ) e x − 2 c = [ ( 6 a x ) + ( 2 a + 3 b ) ] e x + ( − 2 c ) = ( 2 x + 1 ) e x − 2 \begin{array}{ll} y''+y'-2y &= y^*{''}+y^*{'}-2y^*\\ &= 2ax\mathrm e^x+2(2ax+b)\mathrm e^x+(ax^2+bx)\mathrm e^x] \\ & \quad\quad + \; [(2ax+b)\mathrm e^x+(ax^2+bx)\mathrm e^x] \\ & \quad\quad - \; 2\times[(ax^2+bx)\mathrm e^{x}+c] \\ &= 2a\mathrm e^x+3(2ax+b)\mathrm e^x-2c \\ &= \left[(6ax)+(2a+3b)\right]\mathrm e^x+(-2c) \\ &= (2x+1)\mathrm e^x-2 \end{array} y+y2y=y+y2y=2axex+2(2ax+b)ex+(ax2+bx)ex]+[(2ax+b)ex+(ax2+bx)ex]2×[(ax2+bx)ex+c]=2aex+3(2ax+b)ex2c=[(6ax)+(2a+3b)]ex+(2c)=(2x+1)ex2

    比较左右两端系数,得
    { 6 a = 2 2 a + 3 b = 1 − 2 c = − 2 ⇒ { a = 1 3 b = 1 9 c = 1 \begin{cases} 6a &= 2 \\ 2a+3b &= 1 \\ -2c &= -2 \end{cases} \Rightarrow \begin{cases} a &= \frac{1}{3} \\ b &= \frac{1}{9} \\ c &= 1 \end{cases} 6a2a+3b2c=2=1=2abc=31=91=1

    解得非齐次特解
    y ∗ = ( 1 3 x 2 + 1 9 x ) e x + 1 y^* = \left(\frac{1}{3}x^2+\frac{1}{9}x\right)\mathrm e^{x}+1 y=(31x2+91x)ex+1

    6)根据解的结构,可得非齐次通解,其中 C 1 , C 2 C_1, C_2 C1,C2 为任意常数:
    y = y ‾ + y ∗ = C 1 e − 2 x + C 2 e x + ( 1 3 x 2 + 1 9 x ) e x + 1 \begin{array}{ll} y &= \overline y + y^* \\ &= C_1\mathrm e^{-2x}+C_2\mathrm e^{x} + \left(\frac{1}{3}x^2+\frac{1}{9}x\right)\mathrm e^{x}+1 \\ \end{array} y=y+y=C1e2x+C2ex+(31x2+91x)ex+1

注:
根据方程右边:
( 2 x + 1 ) e x − 2 = ( 2 x + 1 ) e 1 x + ( − 2 ) e 0 x = φ 1 ( x ) e 1 x + φ 0 ( x ) e 0 x \begin{array}{ll} (2x+1)\mathrm e^x - 2 &= (2x+1)\mathrm e^{1x} + (-2)\mathrm e^{0x} \\ &= \varphi_1(x)\mathrm e^{1x} + \varphi_0(x)\mathrm e^{0x} \end{array} (2x+1)ex2=(2x+1)e1x+(2)e0x=φ1(x)e1x+φ0(x)e0x

故可设特解:
y ∗ = x k 1 Q 1 ( x ) e 1 x + x k 2 Q 0 ( x ) e 0 x = x 1 Q 1 ( x ) e 1 x + x 0 Q 0 ( x ) e 0 x 1 是单特征根, 0 不是特征根 , 所以 k 1 = 1 , k 2 = 0 (根据 e ρ x 中的 ρ 与 λ 1 , λ 2 判断) = x 1 ( a x + b ) e 1 x + x 0 ( c ) e 0 x Q 1 ( x ) 与 φ 1 ( x ) 是同次的、一次多项式,故可设为 a x + b 同理: Q 0 ( x ) 与 φ 0 ( x ) 是同次的、零次多项式,故可设为 c = ( a x 2 + b x ) e x + c \begin{array}{lll} y^* &= x^{k_1}Q_1(x)\mathrm e^{1x} + x^{k_2}Q_0(x)\mathrm e^{0x} & \\ &= x^{1}Q_1(x)\mathrm e^{1x} + x^{0}Q_0(x)\mathrm e^{0x} & 1\; \text{是单特征根,}0\;\text{不是特征根},\text{所以} \;k_1=1,k_2=0 \\ & & \text{(根据} \;e^{\rho x}\; \text{中的} \;\rho\; \text{与} \;\lambda_1,\lambda_2\; \text{判断)} \\ &= x^{1}(ax+b)\mathrm e^{1x} + x^{0}(c)\mathrm e^{0x} & Q_1(x)\text{与}\varphi_1(x)\text{是同次的、一次多项式,}\text{故可设为} \;ax+b \\ & & \text{同理:} Q_0(x)\text{与}\varphi_0(x)\text{是同次的、零次多项式,}\text{故可设为} \;c\\ &= (ax^2+bx)\mathrm e^x+c & \\ \end{array} y=xk1Q1(x)e1x+xk2Q0(x)e0x=x1Q1(x)e1x+x0Q0(x)e0x=x1(ax+b)e1x+x0(c)e0x=(ax2+bx)ex+c1是单特征根,0不是特征根,所以k1=1,k2=0(根据eρx中的ρλ1,λ2判断)Q1(x)φ1(x)是同次的、一次多项式,故可设为ax+b同理:Q0(x)φ0(x)是同次的、零次多项式,故可设为c

  1. 求微分方程 y ′ ′ − y = 4 x sin ⁡ x y''-y=4x\sin x yy=4xsinx 的通解。
    1)特征方程: λ 2 − 1 = 0 \lambda^2-1=0 λ21=0,特征根为 λ 1 = − 1 , λ 2 = 1 \lambda_1=-1, \lambda_2=1 λ1=1,λ2=1
    2)对应的齐次通解为: y ‾ = C 1 e x + C 2 e − x \overline y = C_1\mathrm e^x+C_2\mathrm e^{-x} y=C1ex+C2ex
    3)设另一微分方程 y ′ ′ − y = 4 x e i x y''-y=4x\mathrm e^{\mathrm ix} yy=4xeix 的特解 y 1 ∗ = ( a x + b ) e i x y_1^*=(ax+b)\mathrm e^{\mathrm ix} y1=(ax+b)eix,见注2;
    4)将 y 1 ∗ , y 1 ∗ ′ , y 1 ∗ ′ ′ y_1^*, y_1^*{'}, y_1^*{''} y1,y1,y1 代入步骤3)的方程解得 a = − 2 , b = − 2 i a=-2, b=-2\mathrm i a=2,b=2i
    5)得 y 1 ∗ = ( − 2 x − 2 i ) e i x = − 2 ( x + i ) ( cos ⁡ x + i sin ⁡ x ) y_1^*=(-2x-2\mathrm i)\mathrm e^{\mathrm ix}=-2(x+\mathrm i)(\cos x+\mathrm i\sin x) y1=(2x2i)eix=2(x+i)(cosx+isinx)
    6)取其虚部,得原方程的非齐次特解 y ∗ = − 2 ( cos ⁡ x + x sin ⁡ x ) y^*=-2(\cos x+x\sin x) y=2(cosx+xsinx)
    7)原方程的非齐次通解为: y = y ‾ + y ∗ = C 1 e x + C 2 e − x − 2 ( cos ⁡ x + x sin ⁡ x ) y=\overline y + y^* = C_1\mathrm e^x+C_2\mathrm e^{-x} - 2(\cos x+x\sin x) y=y+y=C1ex+C2ex2(cosx+xsinx)

注1:欧拉公式 e i x = cos ⁡ x + i sin ⁡ x \mathrm e^{\mathrm ix}=\cos x+\mathrm i\sin x eix=cosx+isinx

注2:原微分方程右边含有 cos ⁡ x \cos x cosx sin ⁡ x \sin x sinx 的,可以使用欧拉公式将特解设为 y ∗ = x k Q m ( x ) e i x y^*=x^kQ_m(x)\mathrm e^{\mathrm ix} y=xkQm(x)eix,代入计算,结果根据题意取其实部或虚部即可。


另一微分方程:
y ′ ′ − 4 y = 4 x e i x = 4 x ( cos ⁡ x + i sin ⁡ x ) = 4 x cos ⁡ x + 4 i x sin ⁡ x \begin{array}{ll} y''-4y &= 4x\mathrm e^{\mathrm ix} \\ &= 4x(\cos x+\mathrm i\sin x) \\ &= 4x\cos x + 4\mathrm ix\sin x \\ \end{array} y4y=4xeix=4x(cosx+isinx)=4xcosx+4ixsinx

可以看到,该微分方程右边的虚数部分与原微分方程相同,所以最终特解应取其虚数部分。

注3:求导时,将虚数单位 i \mathrm i i 视作常数即可。

这篇关于01. 微分方程的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1061027

相关文章

hdu 2602 and poj 3624(01背包)

01背包的模板题。 hdu2602代码: #include<stdio.h>#include<string.h>const int MaxN = 1001;int max(int a, int b){return a > b ? a : b;}int w[MaxN];int v[MaxN];int dp[MaxN];int main(){int T;int N, V;s

集中式版本控制与分布式版本控制——Git 学习笔记01

什么是版本控制 如果你用 Microsoft Word 写过东西,那你八成会有这样的经历: 想删除一段文字,又怕将来这段文字有用,怎么办呢?有一个办法,先把当前文件“另存为”一个文件,然后继续改,改到某个程度,再“另存为”一个文件。就这样改着、存着……最后你的 Word 文档变成了这样: 过了几天,你想找回被删除的文字,但是已经记不清保存在哪个文件了,只能挨个去找。真麻烦,眼睛都花了。看

01 Docker概念和部署

目录 1.1 Docker 概述 1.1.1 Docker 的优势 1.1.2 镜像 1.1.3 容器 1.1.4 仓库 1.2 安装 Docker 1.2.1 配置和安装依赖环境 1.3镜像操作 1.3.1 搜索镜像 1.3.2 获取镜像 1.3.3 查看镜像 1.3.4 给镜像重命名 1.3.5 存储,载入镜像和删除镜像 1.4 Doecker容器操作 1.4

滚雪球学MyBatis(01):教程导读

MyBatis简介 前言 欢迎回到我们的MyBatis系列教程。在上期的内容中,我们详细介绍了MyBatis的基本概念、特点以及它与其他ORM框架(如Hibernate)的对比。我们还探讨了MyBatis在数据访问层中的优势,并解释了为什么选择MyBatis作为我们的持久化框架。在阅读了上期的内容后,相信大家对MyBatis有了初步的了解。 在本期内容中,我们将深入探讨MyBatis的基本配

python+selenium2轻量级框架设计-01框架结构

接下来会介绍一个比较简单的框架结构,先看一下分类 config文件夹里放的是配置文件 framework文件夹里面放的是公共类,常用类,还有读配置文件类、日志类、截图类、发送邮件、生成测试报告、操作读取数据库、读取Excel等,后面几篇会一一介绍 logs文件夹存放生成的日志文件 pageobject存放页面类包括元素的定位等 screenshots文件放的是生成的截图 test_

python+selenium2学习笔记POM设计模式-01模式简介

Page Object模式是Selenium中的一种测试设计模式,主要是将每一个页面设计为一个Class,其中包含页面中需要测试的元素(按钮,输入框,标题 等),这样在Selenium测试页面中可以通过调用页面类来获取页面元素,这样巧妙的避免了当页面元素id或者位置变化时,需要改测试页面代码的情况。 当页面元素id变化时,只需要更改测试页Class中页面的属性即可。 Page Object模式是

数据库学习01——mysql怎么创建数据库和表

第一步:创建数据库 使用 create database 语句,后跟要创建的数据库名称: CREATE DATABASE dbname; 例如,要创建名为 my_db 的数据库,请输入: CREATE DATABASE my_db ; 使用 show databases; 语句检查数据库是否已创建: 第二步:创建表 使用 create table 语句,后跟要创建的表名和列定

【DL--01】深度学习 揭开DL的神秘面纱

什么是深度学习 深度学习=深度神经网络+机器学习 人工智能 > 机器学习 > 表示学习 > 深度学习 神经元模型 输入信号、加权求和、加偏置、激活函数、输出 全连接层 输入信号、输入层、隐层(多个神经元)、输出层(多个输出,每个对应一个分类)、目标函数(交叉熵) 待求的参数:连接矩阵W、偏置b 训练方法:随机梯度下降,BP算法(后向传播) Python中深度学习实现:Ke

三文带你轻松上手鸿蒙的AI语音01-实时语音识别

三文带你轻松上手鸿蒙的AI语音01-实时语音识别 前言 HarmonyOSNext中集成了强大的AI功能。Core Speech Kit(基础语音服务)是它提供的众多AI功能中的一种。 Core Speech Kit(基础语音服务)集成了语音类基础AI能力,包括文本转语音(TextToSpeech)及语音识别(SpeechRecognizer)能 力,便于用户与设备进行互动,实现将实时输入

NYOJ 252 01串

OJ题目:http://acm.nyist.net/JudgeOnline/problem.php?pid=252 描述 ACM的zyc在研究01串,他知道某一01串的长度,但他想知道不含有“11”子串的这种长度的01串共有多少个,他希望你能帮帮他。 注:01串的长度为2时,有3种:00,01,10。 输入 第一行有一个整数n(0<n<=100),表示有n组测试数据; 随后有n行