Added June 2, 2019.
Problem 3.3(a) nonlinear pde’s by Lokenath Debnath, 3rd edition.
Solve for \(u(x,y)\) \[ u_x=0 \]
Mathematica ✓
ClearAll["Global`*"]; pde = D[u[x, y], x] ==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde ,u[x, y], {x, y}], 60*10]];
\[\{\{u(x,y)\to c_1(y)\}\}\]
Maple ✓
restart; pde := diff(u(x,y),x)=0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,u(x,y))),output='realtime'));
\[u \left (x , y\right ) = \mathit {\_F1} \left (y \right )\]
____________________________________________________________________________________