Added June 20, 2019 From https://en.wikipedia.org/wiki/Chaplygin%27s_equation
Solve for \(u(\theta ,v)\)
Here \(c\) is the speed of sound.
Mathematica ✗
ClearAll["Global`*"]; pde = D[u[theta, v], {theta, 2}] + v^2/(1-v^2/c^2)* D[u[theta,v],{v,2}]+v*D[u[theta,v],v]==0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, u[theta, v], {theta, v}, Assumptions->c>0], 60*10]];
Failed
Maple ✓
restart; pde := diff(u(theta,v),theta$2)+ v^2/(1-v^2/c^2)* diff(u(theta,v),v$2)+v*diff(u(theta,v),v)=0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,u(theta,v),'build') assuming c>0),output='realtime'));