Question: Mellin Transformation

Hi,
Consider the following DEQ:

x*y'+2y=1

Maple can solve this without problems with dsolve. But I want to use the Mellin Transformation for this, similar to the more common laplace transformation. The last step, the transformation back to the x-domain, does not work. Any idea why?

restart:with(inttrans);
mellin(x*diff(y(x),x)+2*y(x)=1,x,s);
solve(%,mellin(y(x),x,s));
invmellin(%,s,x);

 

Thanks

Please Wait...