How would to find the solution and closed form expression.
Show older comments
i have the equation xdd+2xd+2x=0, i figured out how to find the solutions for the equation but am not sure how to go from there to the closed form expression.
syms x xd xdd r t a eqm
x = a*exp(r*t)
xd = diff(x)
xdd = diff(xd)
eqm = xdd + 2*xd + 2*x
solve(eqm,r)
1 Comment
Walter Roberson
on 6 Mar 2019
Something like
subs(x, r, solve(eqm,r))
Answers (0)
Categories
Find more on Multibody Modeling in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!