Question: how to insert initial conditions (laplace)

Hi, i have a dgl i want to transform:

y''-7y'+10y = (sin(2x))/x

The laplace command works, but how can i insert initial conditions ? The help page says:

 laplace(expr, t, s)
Parameters
     expr - expression, equation, or set of expressions and/or equations to be transformed
     t    - variable expr is transformed with respect to t
     s    - parameter of transform
     opt  - option to run this under (optional)
 

But this opt  add doesn't even  appear in the calling sequence above. I tried this with no luck:

restart:with(inttrans):alias(Y=laplace(y(x),x,s));

laplace(diff(y(x),x$2)-7*diff(y(x),x)+10*y(x)=sin(2*x)/x,x,s,{y(0)=-1,D(y)(0)=3});

 

What can i do ?

 

 

Please Wait...