How to find general solution of second order differential equation
1 view (last 30 days)
Show older comments
This is the first time I am using Matlab to solve differential equations and I have a question. I have the following second order differential equation:
y’’ + 0.2*y’ + 20000000*y = sin(2*pi*t)
How do I find the general solution of this equation?
0 Comments
Answers (2)
madhan ravi
on 21 Jun 2020
syms y(t)
ode = diff(y,2) + 0.3*diff(y) +...
2e7*y == sin(2*pi*t);
dsolve(ode)
13 Comments
madhan ravi
on 22 Jun 2020
Edited: madhan ravi
on 22 Jun 2020
Well, first your question was how to find a general question. And in each question you keep adding an additional question in each question. Make some effort!! Experiment with rewrite(...) . You need to take differential equations class asap! Watch Cleve Moler’s videos!
See Also
Categories
Find more on Calculus in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!