exact solution for non linear first order ODEs
이전 댓글 표시
I wan to solve system of nonlinear first order odes to get the exact solution.
I am typing the code below in MATLAB which is giving this error. Can anyone please help to find where i am doing mistake (either typing or something else)
syms y1(x) y2(x) y3(x)
Dy1=diff(y1(x));
Dy2=diff(y2(x));
Dy3=diff(y3(x));
Eqn1=Dy1==-1000*((power(y1(x),3)*power(y2(x),6))-power(cos(x),3)*power(sin(x),6))-sin(x);
Eqn2=Dy2==-1000*((power(y2(x),5)*power(y3(x),4))-power(sin(x),9))+cos(x);
Eqn3=Dy3==-1000*((power(y1(x),2)*power(y3(x),3))-power(cos(x),2)*power(sin(x),3))+cos(x);
[Y1,Y2,Y3]=dsolve(Eqn1,Eqn2,Eqn3,y1(0)==1,y2(0)==0,y3(0)==0);
Warning: Unable to find symbolic solution.
> In dsolve (line 209)
Can someone please help me how to write non linear equation in command window to find the exact solutions for system of equations.
댓글 수: 2
John D'Errico
2021년 6월 16일
편집: John D'Errico
2021년 6월 16일
There is no assurance that an exact solution exists for nonlinear systems of differential equations (or any nonlinear equation in general.) DSOLVE has stated that it cannot find one. Just wanting magic to happen is not sufficient.
Hira Soomro
2021년 6월 16일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!