I'm given the PDE $$2u_{xx} -6u_{xy} -8u_{yy}=0$$
Substituting $\xi = y-x$, $\eta=y+4x$, I turn it into:
$$u_{\xi \eta} =0$$
Now I have the initial conditions:
$$u(x,0)=5x^2$$ $$u_y (x,0) =0$$
I don't know how to use the initial conditions. Should I express $x$ in terms of the new variables? We haven't done this at all in class (using initial conditions) but it is required on the exam.
Here's my attempt:
$$u_{\xi \eta}=0 \Rightarrow u(\xi,\eta)=f(\xi)+g(\eta) \Rightarrow u(x,y)=f(y-x)+g(y+4x)$$ $$u_{y}(x,y)=\frac{\partial}{\partial y}f(y-x)+ \frac{\partial}{\partial y} g(y+4x)$$
Now for the initial conditions:
$$u(x,0)=f(-x)+g(4x)=5x^2$$ $$u_y (x,0)=f_y(-x)+g_y(4x)=0$$
Integrating the second one gives:
$$-f(-x)+\frac{1}{4}g(4x)=C$$
So now we have a system:
$$ \begin{cases} f(-x)+g(4x)=5x^2 \\ -f(-x)+\frac{1}{4}g(4x)=C \end{cases}$$
This produces the solutions
$$\begin{cases} f(-x)=x^2 - \frac{4}{5}C \\ g(4x)=4x^2 +\frac{4}{5}C \end{cases}$$
Which is equivalent to
$$\begin{cases} f(x)=x^2 - \frac{4}{5}C \\ g(x)=\frac{1}{4}x^2 +\frac{4}{5}C \end{cases}$$
Adding $f(y-x)+g(y+4x) = (y-x)^2 + \frac{1}{4}(y+4x)^2 = 5x^2 + \frac{5}{4}y^2 = u(x,y)$
Is this correct?