derive a parametric equation of a sphere (on the first octant) with a dent in the middle

Consider the function $\rho(\phi) = 1-d + d\tanh^2 c\phi$. This has a dent of depth $d$ at $\phi=0$. (There are many other possible functions $\rho(\phi)$. For example, something of the form $\rho(\phi) = (1-d+c^2\phi^2)/(1+c^2\phi^2)$ should also work well.) The parameter $c$ is roughly the inverse angular width of the dent. Consider $${\bf r} = \left(\begin{array}{ccc}x&y&z\end{array}\right)^T = \left(\begin{array}{ccc} \rho(\phi)\cos\theta\sin\phi & \rho(\phi)\sin\theta\sin\phi & \rho(\phi)\cos\phi\end{array}\right)^T.$$ We wish to rotate the dent into the first octant. This can be achieved by multiplying on the left by the matrix $R$, where $$R = R_z(\pi/4)R_x(\arccos1/\sqrt3) = \left( \begin{array}{ccc} \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{6}} & \frac{1}{\sqrt{3}} \\ -\frac{1}{\sqrt{2}} & \frac{1}{\sqrt{6}} & \frac{1}{\sqrt{3}} \\ 0 & -\sqrt{\frac{2}{3}} & \frac{1}{\sqrt{3}} \\ \end{array} \right).$$ A parametric plot for $c=5$ and $d$ varying between $0$ and $1-\sqrt3/2$ gives the following: enter image description here


I don't have the tools to draw my proposal, but I still think I can (hopefully) give you some pointers.

Try a function $r(u,v)$ that satisfies these constraints:

  • $\forall 0\le v\le 1$, $r(0,v) = 1$
  • $\forall 0\le u\le 1$, $r(u,0) = 1 = r(u,1)$
  • EDIT: my first proposition was "$\min_{u,v} r(u,v) = r(0.5,0.5)$", but I realized after reading @user26872's answer that the minimum should not be at $u=0.5=v$, but at $v=0.5$ and $u=\frac{2\arccos\left(\sqrt{\frac 23}\right)}{\pi}\approx 0.39$. Note that the difference in the arccos argument comes from the difference in parameterization.

The first two constraints enforce that $r(u,v)$ is $1$ on the boundary of octant. The third forces the deepest part of the dent to be on the "diagonal" axis (no clue how this is called in english, but basically the line with cartesian equation $x=y=z$).

Also if you want your dent to look as if a small sphere collided with the unit sphere, you probably need to have a "radial/cylindric symmetry" around your minima. With your $u,v$ parameterization it is kinda difficult to express this symmetry properly though...

Anyway try this? $$ r(u,v)=1-D\sin\left(\frac{u}{u_\text{min}}\frac{\pi}{2}\right)\sin\left(v\pi\right) $$ where $D$ should be a constant less than 1. (EDIT $u_\text{min}\approx 0.39$ is the value from earlier.) You have $r(u_\text{min},0.5)=1-D$. The problem with this version is that I think (?) it doesn't have the "radial symmetry".

Now for your question "can this be done without $r\left(\ .\right)$ being a surface"... Well no matter how you do this, your final shape cannot have a constant radius, so it will always make sense to define a function $r$ that will look like a surface. But your definition of the shape doesn't need to define $r$ first, so depending on what you want to do with the parametric equation there may be faster or simpler ways.

EDIT 2
Concerning the "radial symmetry" I mentioned, one possible way to express it would be to guarantee that $$ r(u,v) = f\left( \cos\left( u\frac\pi 2\right)\cos\left(v\frac\pi 2\right) +\cos\left( u\frac\pi 2\right)\sin\left(v\frac\pi 2\right) +\sin\left( u\frac\pi 2\right) \right) $$ where $f$ is a function from $\mathbb R$ to $\mathbb R^+$.

Or said in plain words, if $(u_1,v_1)$ and $(u_2,v_2)$ have the same value for that sum of cosine-sine thingy, we must have the same radius values, $r(u_1,v_1)=r(u_2,v_2)$. Actually what the sum thingy express, is that on the unperturbed sphere, parameters $(u_1,v_1)$ and $(u_2,v_2)$ corresponds to points on the same circle (on the sphere) around axis $x=y=z$.

But having perfect radial symmetry plus the previous constraints is not very nice, so you're usually better off having some approximation somewhere, especially if this is for a graphical application.


You have not been very precise on what you were exactly looking for, but this should serve as a good basis.

The idea is to use a Gaussian to make the dent. The number of dents in $\theta$ is denoted by $n_\theta$, and $n_\phi$ in $\phi$.

Then, introducing some parameters controlling depth ($d$), "sharpness" ($s$), you can use something like:

$$r(\theta,\phi)=1-d\exp\big(s(\sin(n_\theta \theta)^2+\sin(n_\phi \phi)^2)\big)$$

in the parametrization of the sphere $r(\cos(\theta)\sin(\phi),\sin(\theta)\sin(\phi),\cos(\theta))$.

The following Mathematica code provides an example and can be adapted to produce the following animations. The result is better when $n_\theta$ and $n_\phi$ are close.

d = .2; c = 4.; d = 0.03; s = 1.2; np = 8; nt = 5.;
r[theta_, 
   phi_] := (1 - d*Exp[-s*(-Sin[np*phi]^2 - Sin[nt*theta]^2)]);
ParametricPlot3D[
 r[theta, phi]*{Cos[theta] Sin[phi], Sin[theta] Sin[phi], 
   Cos[phi]}, {theta, 0, 2 Pi}, {phi, 0, Pi}, Boxed -> False, 
 Axes -> False, Mesh -> None, PlotPoints -> 25, 
 PlotLegends -> {"np=" <> ToString[np] <> ", nt=" <> ToString[2 nt]}]

Influence of depth $d$:

enter image description here