Taken from Mathematica help pages
Solve for \(u(x,y)\)
Mathematica ✓
ClearAll["Global`*"]; sol = AbsoluteTiming[TimeConstrained[DSolve[3*D[u[x, y], x] + 5*D[u[x, y], y] == x, u[x, y], {x, y}], 60*10]];
Maple ✓
restart; interface(showassumed=0); pde :=3*diff(u(x, y), x) + 5*diff(u(x, y), y) = x; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,u(x,y))),output='realtime'));
Hand solution
Solve
Solution
Let \(u=u\left ( y\left ( x\right ) ,x\right ) \). Then
Solving (3) gives
From (4)
Let \(C_{1}=F\left ( C_{2}\right ) \) where \(F\) is arbutrary function. This gives
___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________