2.14.18 Klein Gordon uxx+uyy+u2=0

problem number 120

Added December 27, 2018.

Special case Klein Gordon (nonlinear). Solve for u(x,y) uxx+uyy+u2=0

Mathematica

ClearAll["Global`*"]; 
pde =  Laplacian[u[x, y], {x, y}] + u[x, y]^2 == 0; 
sol =  AbsoluteTiming[TimeConstrained[DSolve[pde, u[x, y], {x, y}], 60*10]];
 

Failed

Maple

restart; 
pde := diff(u(x,y),x$2)+diff(u(x,y),y$2)+u(x,y)^2=0; 
cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,u(x,y))),output='realtime'));
 

u(x,y)=6(c12+c22)WeierstrassP(c1x+c2y+2c3,0,c4)

____________________________________________________________________________________