I'm not very experienced in using Fourier transforms to solve PDEs, in fact, I'm trying to learn right now. Here is my issue. I'm trying to understand an example found in some lecture notes. Suppose we have the wave equation in one spatial dimension and one time dimension: \begin{align} &\partial_t^2 u(t, x) - v^2 \partial_x^2 u(t, x) && x \in \mathbb{R}\\ &\text{some initial conditions + boundary conditions} \end{align} and suppose we want to solve it using a Fourier transform in two dimensions: \begin{align} &u(t, x) = \frac{1}{2 \pi} \int_{-\infty}^{\infty} \int_{-\infty}^{\infty} dk_t dk_x \hat{u}(k_t, k_x) e^{-i(k_t t + k_x x)} \\[7pt] &\partial_t^2 u(t, x) = \frac{1}{2 \pi} \int_{-\infty}^\infty \int_{-\infty}^\infty dk_t dk_x \hat{u}(k_t, k_x) \partial_t^2 e^{-i(k_t t+ k_x x)} = \frac{1}{2 \pi} \int_{-\infty}^\infty \int_{-\infty}^\infty -dk_t dk_x \hat{u}(k_t, k_x) k_t^2 e^{-i(k_t t + k_x x)} \\[7pt] &\partial_x^2 u(t, x) = \frac{1}{2 \pi} \int_{-\infty}^\infty \int_{-\infty}^\infty dk_t dk_x \hat{u}(k_t, k_x) \partial_x^2 e^{-i(k_t t+ k_x x)} = \frac{1}{2 \pi} \int_{-\infty}^\infty \int_{-\infty}^\infty -dk_t dk_x \hat{u}(k_t, k_x) k_x^2 e^{-i(k_t t + k_x x)} \end{align} Hence, the PDE becomes: \begin{align} \frac{1}{2 \pi} \int_{-\infty}^{\infty} \int_{-\infty}^{\infty} dk_t dk_x \left[ -k_t^2 + v^2 k_x^2 \right] \hat{u}(k_t, k_x) = 0 \Longleftrightarrow \left[ -k_t^2 + v^2 k_x^2 \right] \hat{u}(k_t, k_x) =^\mathbf{*} 0 \end{align}
Now, we have to find a function $\hat{u}(k_t, k_x)$ which results in zero when multiplied to the factor $[-k_t^2 + v^2 k_x^2]$: \begin{align} \hat{u}(k_t, k_x) = \frac{0}{-k_t^2 + v^2 k_x^2} = 0 && \text{iff} && -k_t^2 + v^2 k_x^2 \neq 0 \Longleftrightarrow k_t \neq \mp vk_x \end{align} The solution I found from the notes is the following one $$ \hat{u}(k_t, k_x) = A(k_x) \delta (vk_x + k_t) + B(k_x) \delta (vk_x - k_t) $$ Where $A(k_x)$ and $B(k_x)$ are some arbitrary functions, I suppose. This arises three main questions:
- I can see that if the Dirac delta is interpreted as having a null value everywhere except in $\mp vk_x$, where it is infinite, intuitively the solution has some sense. But mathematically, the Delta, being a distribution, is not point-wise defined. Even if we want to allow an abuse of interpretation and use the definition for which the delta is zero everywhere except in one point, where it is infinite, mathematically I cannot see how the infinite value would help in this case. Therefore: how is it possible to derive such a solution more rigorously?
- The solutuion consists of a linear combination of deltas, where the coefficients are functions of $k_x$. Since we are working with a two dimensional Fourier transformation, there is no asymmetry in the variables, meaning that $k_x$ and $k_t$ should be treated equally. On the other hand, if we were to use a one dimensional Fourier transformation, the transformed variable would have a different meaning with respect to the natural one. Therefore, the second question: why are the coefficients of the linear combination both functions of $k_x$? Is it possible to write an equivalent solution using coefficients which are functions of $k_t$?
- Seeing that the solution $\hat{u}(k_t, k_x)$ is a member of some distributional space (i.e. the dual of rapidly decreasing function, or the dual of compact support functions), how should the equal sign marked with the symbol "*" be interpreted? Is it a "almost everywhere" equal, or a equal in a "distributional sense" or something else entirely? And why?
P.S. Please mind that the notes I'm referring to are hand written, therefore they might contain some typos (even if I don't see any). Anyway, thank you in advance for your help!