I see many methods to calculate the Gaussian curvature of parametric surfaces in SE.But how to calculate the Gaussian curvature of any point of the following explicit function:
f[x_, y_] := x^2 + y^2
I see many methods to calculate the Gaussian curvature of parametric surfaces in SE.But how to calculate the Gaussian curvature of any point of the following explicit function:
f[x_, y_] := x^2 + y^2
GaussianCurvature[]from here, try this:GaussianCurvature[{x, y, x^2 + y^2}, {x, y}]– J. M.'s missing motivation Jan 29 '20 at 08:44gccolor[{x, y, (x^4 - 6 x^2 y^2 + y^4)/(x^2 + y^2)^2 BesselJ[4, 17 Sqrt[x^2 + y^2]]} /. {x -> u, y -> v}, {u, -1, 1 }, {v, -1, 1}]– A little mouse on the pampas Jan 29 '20 at 09:23