4.43.24 y(x)2y(x)+3y(x)+10y(x)=0

ODE
y(x)2y(x)+3y(x)+10y(x)=0 ODE Classification

[[_3rd_order, _missing_x]]

Book solution method
TO DO

Mathematica
cpu = 0.00936375 (sec), leaf count = 87

{{y(x)c1exRoot[#132#12+3#1+10&,1]+c2exRoot[#132#12+3#1+10&,2]+c3exRoot[#132#12+3#1+10&,3]}}

Maple
cpu = 0.026 (sec), leaf count = 170

{y(x)=_C1e((154+32649)232154+3264935)x3154+326493+_C2e((154+32649)23+4154+3264935)x6154+326493sin(3((154+32649)23+5)x6154+326493)+_C3e((154+32649)23+4154+3264935)x6154+326493cos(3((154+32649)23+5)x6154+326493)} Mathematica raw input

DSolve[10*y[x] + 3*y'[x] - 2*y''[x] + y'''[x] == 0,y[x],x]

Mathematica raw output

{{y[x] -> E^(x*Root[10 + 3*#1 - 2*#1^2 + #1^3 & , 1, 0])*C[1] + E^(x*Root[10 + 3
*#1 - 2*#1^2 + #1^3 & , 2, 0])*C[2] + E^(x*Root[10 + 3*#1 - 2*#1^2 + #1^3 & , 3,
 0])*C[3]}}

Maple raw input

dsolve(diff(diff(diff(y(x),x),x),x)-2*diff(diff(y(x),x),x)+3*diff(y(x),x)+10*y(x) = 0, y(x),'implicit')

Maple raw output

y(x) = _C1*exp(-1/3*((154+3*2649^(1/2))^(2/3)-2*(154+3*2649^(1/2))^(1/3)-5)/(154
+3*2649^(1/2))^(1/3)*x)+_C2*exp(1/6/(154+3*2649^(1/2))^(1/3)*((154+3*2649^(1/2))
^(2/3)+4*(154+3*2649^(1/2))^(1/3)-5)*x)*sin(1/6/(154+3*2649^(1/2))^(1/3)*3^(1/2)
*((154+3*2649^(1/2))^(2/3)+5)*x)+_C3*exp(1/6/(154+3*2649^(1/2))^(1/3)*((154+3*26
49^(1/2))^(2/3)+4*(154+3*2649^(1/2))^(1/3)-5)*x)*cos(1/6/(154+3*2649^(1/2))^(1/3
)*3^(1/2)*((154+3*2649^(1/2))^(2/3)+5)*x)