|
本帖最后由 hbghlyj 于 2023-4-15 00:55 编辑 In[]:= AsymptoticDSolveValue[(x^2-1)y''[x]-8x y'[x]+20y[x]==6x^2,y[x],{x,0,8}]
Out[]= $\displaystyle-\frac{x^4}{2}+\left(1+10 x^2+5 x^4\right) c_1+\left(x+2x^3+\frac{x^5}{5}\right) c_2$
A linear ordinary differential equation can be approximated by a Taylor series expansion $y(x)=\sum_{i} a_{i}\left(x-x_{0}\right)^{i}$ near an ordinary point $x_0$ for the equation. This example shows how to obtain such an approximation using AsymptoticDSolveValue . |
|