How to solve y''+y'-y=x+1 using y(0)=1 and y'(0)=0. Plot the solution.

10 次查看(过去 30 天)
How to solve y''+y'-y=x+1 using y(0)=1 and y'(0)=0. Plot the solution.
  4 个评论
Walter Roberson
Walter Roberson 2021-9-9
syms y(x)
Dy=diff(y);
ode=diff(y,x,2)+diff(y,x,1)-y==x+1;
cond1 = y(0)==1;
cond2=Dy(0)==0;
conds=[cond1 cond2];
sol=dsolve(ode,conds);
sol1=simplify(sol);
sol1
sol1 = 
Looks okay.
As a matter of style, since you compute Dy already, it does not make sense to use diff(y,x,1) in the ode:
ode=diff(y,x,2)+Dy-y==x+1;

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2021-9-9
The below is deliberately different than your question (because your question looks like homework to me.)
syms y(x)
dy = diff(y)
dy(x) = 
d2y = diff(dy)
d2y(x) = 
eqn = 5*d2y + 7*dy - 9*y == x^2 - 11*x + 13
eqn(x) = 
ic = [y(0) == 2, dy(0) == 1]
ic = 
sol = dsolve([eqn, ic])
sol = 
fplot(sol, [0 10])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by