How to solve symbolic ODE system
Hi everyone,
I'm trying to solve this EDO system, finding the solution for x(t) and p(t) with {k1,k2,b} symbolic variables and m=535:
System Equations:
m*x''(t)=-k1*(x(t)-p(t))-b*(x'(t)-p'(t))
k2*p(t)=k1*(x(t)-p(t))+b*(x'(t)-p'(t))
Initial Conditions would be:
x(0)=0
p(0)=0
x'(0)=6.3
Already tried with Wolfram Alpha and Matlab, both giving solutions with terms "Root[#1^3+ (k1 m + k2 m) #1^2 + b^2 k2 m #1 + b^2 k1 k2 m^2&, 1]" in which I don't understand what is represented. Examples attached in following pictures:
Matlab:

