How to solve differential equation of series general solution
8 ビュー (過去 30 日間)
古いコメントを表示
How do we solve differential equation of series general solution?
For example, I tried to solve this differential equation into series solution, but as you can see in the result, it is not showing like y = C1 x^(1/4)(1 - (1/14)x + (1/616)x^2 + ...) + C2 x^(-1/2) (1 - (1/2)x + (1/40)x^2 + ...) and this is the series general solution that I want to make for the result.
How can make the result in the photo to the form like how I typed right before? Could you please type the command for the solution clearly? Thank you :)

1 件のコメント
John D'Errico
2023 年 3 月 14 日
Please do not paste in a picture of your code. Then we need to type in the code by hand. Had you simply pasted in text, then we could more easily help you. Is there a good reason why you want to make it more difficult to get help?
回答 (1 件)
John D'Errico
2023 年 3 月 14 日
Assuming I typed in that line correctly...
syms y(x)
S = dsolve(8*x^2*diff(y,2)+10*x*diff(y)+(x-1)*y==0,'ExpansionPoint',0, 'Order',8)
There were TWO independent solutions found. You have TWO unknown conditions, which are typically supplied as boundary or initial conditions. But consider what this does?
syms C1 C2
C1*S(1) + C2*S(2)
5 件のコメント
John D'Errico
2023 年 3 月 14 日
編集済み: John D'Errico
2023 年 3 月 14 日
I believe there is no specific tool to do exactly that.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
