How to solve a boundary value problem (differential equations) which contains dependent variable values at the boundary??? The equation is like a integro-differential equation.
1 次查看(过去 30 天)
显示 更早的评论
(-iy+y'''')=(A+Bx)y'''(0)+(C+Dx)y''(0)
- Here A,B,C and D are constants.
- y'''(0) are the dependent variable 3rd order derivative at x=0.
- Like wise y''(0) is the 2nd oder derivative of y at x=0
- BCs y(0)=0, y'(0)=1, y''(1)=0 and y'''(1)=0
0 个评论
采纳的回答
Torsten
2017-4-12
编辑:Torsten
2017-4-12
Try "dsolve" on the problem
(-iy+y'''')=(A+Bx)*C2+(C+Dx)*C1
with boundary conditions
y(0)=0, y'(0)=1, y''(1)=0, y'''(1)=0, y''(0)=C1, y'''(0)=C2.
Best wishes
Torsten.
7 个评论
Torsten
2017-4-12
Since there is no integral involved in the differential equation, I don't see an obvious relation to integro-differential equations. But I might be wrong.
Best wishes
Torsten.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!