Solving telegrapher's partial differential equation

689 Views Asked by At

Using the method of separation of variables and writing $u(x,t)=M(x)N(t)$, we can solve the equation $$u_{tt}-\gamma^2 u_{xx} + 2\alpha u_t=0$$ $$0<x<l$$ $$t\ge0, \alpha>0 \text{ (}{\alpha} \text{ is small}) $$ $$u(x,0)=f(x), u_t(x,0)=g(x)$$ $$u(0,t)=u(l,t)=0$$

When we separate the variables, we get two ODEs: $$N''(t)+2\alpha N'(t) +\lambda N(t)=0\text{ [eq. (1)]}$$ $$M''(x)+\frac{-\lambda}{\gamma^2}M(x)=0$$

Here I consider the case when $\lambda > 0$. If I'm correct then what we get for solutions of the above ODEs is $$M_n(x)=\underbrace{\sqrt{\frac{2}{l}}}_{\text{normalization condition}}\sin\left(\frac{n\pi x}{l} \right)$$

$$N_n(t) = e^{-t} \left[a_n \cos\left(\sqrt{\alpha^2-\left(\frac{n\pi\alpha}{l}\right)^2}t\right)+b_n\sin\left(\sqrt{\alpha^2-\left(\frac{n\pi\alpha}{l}\right)^2}t\right)+a_0\right]$$

Thus $$u(x,t)=e^{-t} \sum\limits_{n=1}^\infty{ \left[a_n \cos\left(\sqrt{\alpha^2-\left(\frac{n\pi\alpha}{l}\right)^2}t\right)+b_n\sin\left(\sqrt{\alpha^2-\left(\frac{n\pi\alpha}{l}\right)^2}t\right)+a_0\right]\sqrt{\frac{2}{l}}\sin\left(\frac{n\pi x}{l} \right)}$$

Now the part I find might be indicative of some errors I made. In this part we find the Fourier coefficients $a_n$ and $b_n$.

After applying the initial conditions, we get that $$a_n = \sqrt{\frac{l}{2}} f(x) \sin\left(\frac{n\pi x}{l}\right)$$

$$b_n = \frac{\left(g(x)+\sum\limits_{n=1}^\infty a_n\sqrt{\frac{l}{2}}\sin\left(\frac{n\pi x}{l}\right)\right)}{\sqrt{\alpha^2 - \left(\frac{m\pi\alpha}{2}\right)^2}\sqrt{\frac{l}{2}}}$$

The expressions for $a_n$ and $b_n$ seem too tedious. I feel like I've made an error some where, or maybe more than just one error. I would appreciate it very much if I could be given a hint of where I might be mistaken.

I also think that $a_0$ should be solved for as well, but that's an easy step.

1

There are 1 best solutions below

2
On BEST ANSWER

You've made a couple mistakes here. The first is in the $M$ equation, which should read $M'' = -(\lambda/\gamma^2) M$. This means that your solutions for $\lambda$ are off by a factor involving $\gamma$.

Next, your general solution for $N$ is off. You should double check the algebra you used to find the general solutions. Be careful with how $\lambda$ and $\alpha$ relate to each other.

After that you're missing integrals in your computation of $a_n$ and $b_n$. These are numbers, not functions. You are right, though, that they can be computed in terms of the initial data once you've sorted out the correct form of $M$ and $N$.