[Math] Is this the right equation for this 3D surface

3dsurfaces

Is $\frac{\sin \sqrt{x^2+y^2+z^2}}{\sqrt{x^2+y^2+z^2}}$ the right equation for this surface? I am confused what $z$ is doing in there (unless this is an implicit equation). I get something fairly similar looking if I omit it in Wolfram Alpha, though it's hard to compare.

Also, does it have a proper name?

3D Surface

Best Answer

Yes, but it is not the (four-dimensional) graph of the function $f:\mathbb{R}^3\to\mathbb{R}$ defined by $$f(x,y,z)=\frac{\sin(\sqrt{x^2+y^2+z^2})}{\sqrt{x^2+y^2+z^2}},$$ but rather a slice of it; that is, choose some value $z=c$, and this graph is the graph of the function $g:\mathbb{R}^2\to\mathbb{R}$ defined by $$g(x,y)=\frac{\sin(\sqrt{x^2+y^2+c^2})}{\sqrt{x^2+y^2+c^2}}.$$ Choosing different values of $c$ varies the graph; here is an animation of the graph of $g$ as $c$ goes from $0$ to $8$:

                               enter image description here

listofplots = {}; For[c = 0, c <= 40, c++, AppendTo[listofplots, 
  Plot3D[Sin[Sqrt[x^2 + y^2 + (c/5)^2]]/ Sqrt[x^2 + y^2 + (c/5)^2], 
    {x, -15, 15}, {y, -15, 15}, PlotPoints -> 40, PlotRange -> {-0.2, 0.2}]]]

Export["animation.gif", listofplots, "DisplayDurations" -> {0.25}]
Related Question