Solve the IVP
$$u_{xx} + y u_{xy} = 0 \text{ for } u(0,y)=y^3$$
Is the solution unique?
My attempt:
Let $u_x = v$. Substituting on equation:
$$v_x + y v_y = 0$$
We solve this using the characteristics method: $x=x(s), \; y=y(s),\; w(s)=v(x,y)$
$$\Rightarrow \frac{dx}{ds}=1, \; \frac{dy}{ds}=y, \; \frac{dw}{ds}=0$$
Doing all the calculation,
$$v(x,y) = f(y e^{-x})$$ where $f: R \rightarrow R$ is an arbitrary function. Now,
$$u_x = v \Rightarrow u(x,y) = \int_?^x f(y e^{-\eta}) d \eta + C(y) $$
My doubt is:
- What are the integration limits? Usually, I use 0 to $x$ but I don't know why.
- Using the initial conditions: $$u(0,y) = \int_?^0 f(y e^{-\eta}) d \eta + C(y) = y^3 $$. If I use the limits that I am used to, we must have $C(y)=y^3$ and $f$ still arbitrary (and integrable). But I don't know if it is rigorous. In this case, the solution won't be unique (there are many for any $f$ integrable)
Thanks in advance!