Question: differential equation - where is my error

I seem to have an error or maybe two when I use dsolve and I've traced it back to my defining functions.  I know I'm probably not defining something the right way.

a:=m*(diff(x(t), t,t))+beta*(diff(x(t), t))+m*9.8*(f'(x)/(1+(f'(x)^2)))

                             

f:=x->sin(x)

                         

de:=a=0

                    

m:=0.01;beta:=0.01;

                           m := 0.01
                          beta := 0.01
with(Physics):
ic:=x(0)=0,D(x)(0)=.5;

                         

sol:=dsolve({de,ic},x(t),numeric)

                        Error, (in dsolve/numeric) x(t) and x cannot both appear in the given ODE

 

differential_test.mw

Please Wait...