Show older comments
我想问一下下面这个非线性微分方程有没有精确解,以及我根据Matlab的帮助文档,只得到了一组隐式解,有没有办法得到一组精确解?

syms y(x) a
eqn = diff(y,x,2)==-a.*(1-(y.^2)./2)
Dy = diff(y,x)
cond = [y(0)==0,Dy(1)==0]
s = dsolve(eqn,cond,'Implicit',true)
运行后的结果
a*y(x)^3 - 6*a*y(x) == 0
Answers (1)
>> s = dsolve(eqn,cond)
警告: Unable to find symbolic solution.
没有精确解。
这没什么奇怪的,一个一般的微分方程大概率没有精确解。
1 Comment
SDFG ASDF
on 26 Apr 2022
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!