I need to solve the following PDE, given the boundary conditions and initial condition, using Laplace Transforms:
$$ \begin{aligned} \displaystyle K_1\frac{\partial^2u}{\partial x^2}+K_2u&=\frac{\partial u}{\partial t} \\ u(0,t)&=u_0 \\ u(\infty,t)&=0 \\ u(x,0)&=0 \end{aligned} $$
So far, I've taken the Laplace transform of the PDE to get the following result:
$$K_1\frac{\partial ^2U}{\partial x^2}+K_2U=sU$$
Solving the above ODE results in the following:
$$U(x,s)=C_1\exp\left(\sqrt{\frac{k_2+s}{k_1}}x\right)+C_2\exp\left(-\sqrt{\frac{k_2+s}{k_1}}x\right)$$
By taking the Laplace transform of the two boundary conditions, I get the following:
$$U(0,s)=\frac{u_0}{s}$$
$$U(\infty,s)=0$$
Using the second boundary condition, I can calculate that $C_2=0$, and that the PDE in terms of $x$ and $s$ is:
$$U(x,s)=\frac{u_0}{s}\exp\left(\sqrt{\frac{K_2+s}{K_1}}x\right)$$
Now, I have to take the inverse Laplace transform, but I'm having problems at this step. I have the result which is:
$$ u(x,t)=\frac{2u_0}{\sqrt{\pi}}\int_{\frac{x}{2\sqrt{K_1t}}}^{\infty} \exp\left(-\lambda^2-\frac{K_2x^2}{4K_1\lambda^2}\right) \ d\lambda $$
It's suggested that I use one of the shifting theorems to obtain this solution, but I'm not sure how. Thanks!