Ploting some ode's solution.

15 次查看(过去 30 天)
Yeachan Choi
Yeachan Choi 2022-5-25
编辑: Torsten 2022-5-26
hello. I want to plot some graph that ode(ordinary differential equation)'s solution(I will make this solution to polynomial from exponential with Taylor Series) . How can I plot that? How can I code it?
y''-5y'+4y = 0

回答(1 个)

Torsten
Torsten 2022-5-25
编辑:Torsten 2022-5-25
The general solution is
y(t) = C1*exp(4*t) + C2*exp(t)
for arbitrary constants C1 and C2.
Look up "dsolve" and the examples provided under
  9 个评论
Torsten
Torsten 2022-5-26
编辑:Torsten 2022-5-26
I give up.
All solutions to the equation
y''-5y'+4y = 0
are given by
y(t) = C1*exp(4*t) + C2*exp(t)
for constants C1 and C2.
There are no polynomial solutions, except for the case that C1 = C2 = 0.
So I can't understand what you mean "you want to make the solution a polynomial function".
Of course, you can do
syms C1 C2 t
f = C1*exp(4*t) + C2*exp(t);
taylor(f,t,'Order',8)
but why ?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by