Solve the wave equation with special boundary condition

partial differential equationswave equation

The equation is $$u_{tt} – u_{xx} = 0, x>0, t>0$$
$$u(x,0)=f(x); u_t(x,0)=0$$
$$u_x(0,t)=ku_t(0,t)$$
and the third condition is hard to deal with, as it isn't three standard type of boundary condition (Dirichlet, Neumann and Robin).

It is trivial to solve it in the region $x\geqslant t$, because it is just the case of d'Lambert formula and doesn't involve the boundary condition. Is there some hint to solve it in $x\leqslant t$?

Best Answer

The problem can be solved with the ansatz $$ u(x,t)=F(x-t)+G(x+t)+H(-x+t). \tag{1} $$ For convenience, the domain of all functions on the RHS of $(1)$ is $\mathbb{R}$, but they have support on $[0,\infty)$. It's also convenient to extend the domain of $f$ by defining $f(x)=0$ for $x<0$.

Now, let's use the initial and boundary conditions to the determine $F, G$ and $H$: \begin{align} u(x,0)=f(x) &\implies F(x)+G(x)+H(-x)=f(x), \tag{2.1} \\ u_t(x,0)=0 &\implies -F'(x)+G'(x)+H'(-x)=0, \tag{2.2} \\ u_x(0,t)=ku_t(0,t) &\implies F'(-t)+G'(t)-H'(t)=k[-F'(-t)+G'(t)+H'(t)]. \tag{2.3} \end{align} Since, by construction, $F$ and $G$ have support on $[0,\infty)$, the terms $H(-x)$, $H'(-x)$ and $F'(-t)$ are equal to zero in the domain $x>0, t>0$. After eliminating them, we can solve the system $(2)$, obtaining \begin{align} F(x)&=\frac{1}{2}f(x), \tag{3.1} \\ G(x)&=\frac{1}{2}f(x), \tag{3.2} \\ H(t)&=\frac{1}{2}\left(\frac{1-k}{1+k}\right)f(t) \qquad(k\neq -1). \tag{3.3} \end{align} Plugging $(3)$ into $(1)$, we finally get $$ u(x,t)=\frac{1}{2}f(x-t)+\frac{1}{2}f(x+t)+\frac{1}{2}\left(\frac{1-k}{1+k}\right)f(-x+t). \tag{4} $$