Equation with sign function

asked 2017-06-15 09:20:44 +0200

soking gravatar image

updated 2017-06-15 12:50:59 +0200

Hi all,

I have the following piece of code

f(x) = 2*unit_step(x)
u = function('u')(x)
eqn = diff(u,x) + u == f(x)
v = desolve(eqn, u,ics=[0,0])
solve(v,x)

which gives me [x == 0, sgn(x) == -1] as solutions to the last equation. Could you help me find a way for Sage not to stop at sgn(x) == -1?

Thanks

edit retag flag offensive close merge delete