It is asked to solve the PDE
$$u_{xx} - 3u_{xt} - 4u_{tt} = 0$$ using a factorization, that consists in
$$\left( \frac{\partial}{\partial x} - 4 \frac{\partial}{\partial t} \right) \left( \frac{\partial}{\partial x} + \frac{\partial}{\partial t} \right) u = 0$$
My attempt:
I called
$$\left( \frac{\partial}{\partial x} + \frac{\partial}{\partial t} \right) = v$$ and solved $$ v_x - 4 v_t = 0$$ making the change of variables: $x' = x-4t, \; t' = -4x - t$. This change of variables leave us with the following "ODE": $$17 u_{x'} = 0 \Rightarrow u(x,t) = f(t') = f(-4x-t) = g(4x+t)$$ where g and f are arbitrary functions of one variable
For the second part, we have the PDE: $$u_x+u_t = g(4x+t)$$
I made the following change of variables: $x' = x+t, t' = x-t$, and this leave us with the following "ODE": $$2u_{x'} = g(4x+t)$$
The answer is $$ u(x,t) = c_1(4x+t)+c_2(x-t)$$
I understand that the last "ODE" give us the solution
$$u(x,t) = \int g(4x+t) dx' + c_2(x-t)$$ but why is the integral also a function of 4x+t? Where I commited a mistake?
Thanks in advance!
@Edit: Please, don't give me a solution using another technique that is not a factorization. I think my mistake, if there is one, consists on the variables that I am choosing.