24

So my question is this: $$V=\frac{4}{3}\pi r^3$$ And, $$\frac{dV}{dr}=4\pi r^2=SA$$ Is this a coincidence or are there some mathematical hoodoos that I'm unaware of?

P.S. are there any more tags that I should use?

Ben Grossmann
  • 225,327

3 Answers3

41

Start with a sphere of radius $r$. Now let the radius of the sphere grow by some tiny amount $\Delta r$. How much has the volume changed? By the definition of the derivative, it has changed by approximately $$ \Delta r \cdot V'(r) $$ However, the added volume is basically a thin shell, and its volume is approximately equal to its surface area (the inner one, for convenience), multiplied by its thickness. This is $$ \Delta r\cdot SA(r) $$ Thus we have $$ \Delta r \cdot V'(r)\approx \Delta r\cdot SA(r)\\ V'(r)\approx SA(r) $$

Rigorous analysis of this setup will allow you to conclude that the approximation error above is small enough as $\Delta r$ becomes smaller, and thus that $V'(r)$ and $SA(r)$ are indeed equal.

Arthur
  • 199,419
  • 15
    As you can see, nothing here uses the fact that we have a sphere. This argument is equally valid for any family of objects parametrised by a single parameter $r$, such as a cube, or a rectangular prism of constant width and height (and length $r$), or in other dimensions like coupling area to circumference, and so on. As long as things are continuous and differentiable, this approach tells you that the derivative of the volume is the surface area. – Arthur Jan 30 '19 at 11:40
  • 7
    Just to add some keywords: What you describe is essentially the measure-theoretic version of Fubini's theorem, also knwon as Cavalieri's principle. – MaoWao Jan 30 '19 at 12:07
  • 1
    @Arthur what you say in the comment is not exact. Think about a cube: the volume is $V=l^2\times l=A\times l$, where $l$ is the length of a side. $l^2$ is therefore the area of a single face, not the total surface area as it happens with a sphere. – DrManhattan Jan 30 '19 at 14:25
  • 3
    @Arthur. Sorry, I accidentally deleted my previous comment. Yes, I gave the example of a $r \times r \times 2r$ cuboid. But actually example of a cube of $r\times r \times r$ also does not work, because increasing $r$ puts a layer over the cube of thickness $\Delta r/2$. It only really works if $r$ is like a radius, so a $2r\times 2r \times 2r$ cube. – Jaap Scherphuis Jan 30 '19 at 14:30
  • 4
    @AlessandroZunino You're right. I didn't think that one entirely through. The thickness must increase with $r$ everywhere. – Arthur Jan 30 '19 at 14:33
  • @Arthur This is not true if the parameter of the sphere (or circle) is the diameter $d$ nor of the cube (or square) if the parameter is the side $s$. But it is true for the sphere (or circle) if the parameter is the radius $r$ and of the cube (or square) if the parameter is the half-side $h$. So it seems that given a shape, there may be a parameter which works, though not always the one you first think of. – Henry Jan 30 '19 at 18:24
  • @Arthur There is no such thing as the derivative of a quantity. "Derivative" applies to a function of a parameter. In many contexts, we can talk loosely of the derivative of a quantity with the function being implicitly understood. For instance, when someone says "velocity is the derivative of the position", it's clear that they mean that velocity is the derivative of the function relating time to position. – Acccumulation Jan 30 '19 at 18:46
  • Your statement is true with the correct choice of parameter, and function relating that parameter to the volume, but in this case that function cannot be taken as obvious, and thus we must specify a function and parameter. If we take the "radius" of a square to be half the side length, then the volume is $(2r)^3$ or $8r^3$. The area of a face is $(2r)^2$, and thus the surface area of all six faces together is $24r^2$, which is indeed the derivative of the volume. – Acccumulation Jan 30 '19 at 18:46
  • @MaoWao, comments aren't indexed or searchable so you may want to suggest that as an edit. – Wildcard Jan 30 '19 at 20:09
  • Why is the volume of the shell close to the surface area multiplied by thickness? For comparison, if we look at the surfaces $x^3+y^3+z^3=r^3$ this technique doesn't work; it seems like the reason it works in this case is that the tangent plane of a sphere at a point is perpendicular to the radius at that point... can this be made formal? – alphacapture Jan 31 '19 at 21:48
  • @alphacapture The requirement is that the thickness of the shell between $r$ and $r+\Delta r$ is $\Delta r$ everywhere. That's it. – Arthur Jan 31 '19 at 21:52
6

How do you obtain the volume of a sphere? You just calculate a volume integral on the sphere

$$V=\int_{\mathbb{R}^3}\chi(x,y,z)\;d\mathbf{x}$$

where $\chi$ is a function that equals $1$ inside the sphere and $0$ outside. Of course is comfortable to switch to spherical coordinates. The determinat of the Jacobian is $|J|=r^2\sin\theta$, s0

$$ V=\int_0^Rr^2dr\int_0^\pi \sin\theta d\theta\int_0^{2\pi}d\varphi $$

calculating the two rightmost integral you obtain

$$ V=\int_0^R4\pi r^2dr =\int_0^R \frac{dV}{dr}dr \tag{1}$$

How do you calculate the surface area of a sphere? Through a surface integral

$$SA=\int_{\mathbb{R}^3}\sigma(x,y,z)\;d\mathbf{x}$$

where $\sigma(x,y,z)=\chi(x,y,z)\delta (r-R)$. In spherical coordinates:

$$ SA=\int_0^\pi r^2\sin\theta d\theta\int_0^{2\pi}d\varphi = 4\pi r^2 \tag{2}$$

So, confronting equation $(1)$ and $(2)$ is possible to prove that

$$SA=\frac{dV}{dr}$$

This, of course, means that

$dV=SAdr$

i.e., the infinitesimal increment of the Volume $dV$ is obtained through the product of the surface area $SA$ and the infinitesimal increment of the radius $dr$.

  • The integral $V=\int_{\mathbb{R}^3}\sigma(x,y,z);d\mathbf{x}$ where $\sigma$ is $1$ only on the surface of a sphere does not and should not give you a surface area: it should give you $0$, because any 2D surface in $\mathbb R^3$ has measure $0$. And if you do exactly the same thing for surface area as you did for volume, you would write down $$V=\int_R^Rr^2dr\int_0^\pi \sin\theta d\theta\int_0^{2\pi}d\varphi$$ and the $\int_R^R$ would make things cancel to $0$. The integral you actually did write down is correct, but it is not justified through the integral of $\sigma(x,y,z)$. – Misha Lavrov Jan 30 '19 at 16:06
  • @MishaLavrov I disagree. I did not wanted to get the things too much complicated introducing generalized functions, but just write down $\sigma(x,y,z)=\chi(x,y,z)\delta (r-R)$ and see that everything will work exactly as I wrote. – DrManhattan Jan 30 '19 at 16:09
  • Only if you have a "function" $\delta$ such that $\int_0^\infty \delta(r-R),dr = 1$, in which case $\sigma$ is not a real function either, and certainly does not have value $1$ on the surface of the sphere. (But other than the having-value-$1$ thing, I agree that integrating $\sigma(x,y,z)=\chi(x,y,z)\delta (r-R)$ over $\mathbb R^3$ will give you the surface area.) – Misha Lavrov Jan 30 '19 at 16:11
  • @MishaLavrov it is actually true that any 2D surface has measure zero on $\mathbb R^3$, because these are parametrized by proper functions. Dirac's delta is generalized function (or a distribution) that in this context is just a tool to explain something else, but you are very correct saying that it has not value $1$ on the surface of the sphere, is the integral over $r$ that has value $1$. I'll correct this. – DrManhattan Jan 30 '19 at 16:19
  • @MishaLavrov I admit this is not the most formal way to define surface integrals, but I just did not wanted to get things too much complicated. – DrManhattan Jan 30 '19 at 16:25
0

I think I have something but I'm not sure what.

The volume of an object is the integral $\int 1 d\tau$ where $\tau$ is the volume element and the boundaries are the boundary of the surface.

The divergence of $\vec{r}/3$ is 1 in any co-ordinate system. So the above integral can be expressed as the volume integral of a divergence. Where $\vec{r}$ is the position vector.

By Gauss' Law $\int \nabla\cdot (\vec{r}/3) d\tau=\int \frac{\vec{r}}{3}\cdot \hat{n} dA$

Where $\hat{n}dA$ is the vector form of the infinitesimal surface area.

For a figure of constant radius, $\hat{n}=\hat{r}$, so the integrand on the right becomes (r/3).

I'm not sure what comes next, but there does seem to be a tie in there between the entire volume and only considering geometric features of the boundary.

TurlocTheRed
  • 5,683
  • The problem is, if the volume is not a sphere, $\hat r \cdot \hat n$ is not constant. So this only applies to spheres (or their $n$-dimensional equivalents for any $n$). For general shapes, there is no proportionality between change of volume and area. – Paul Sinclair Jan 30 '19 at 17:36
  • I think the particular relationship i mention doesn't apply, but I think something similar does apply in general, the part before I introduce a figure of constant radius.

    Consider a solid in 3D with equation $f(x,y,z)=0$. The gradient of f is normal to the surface. Divide by its magnitude to get the normal and let $\vec{r}=x\hat{i}+y\hat{j}+z\hat{k}$

    We get $d\tau=\frac{x\partial f/\partial x + y \partial f/ \partial y + z \partial f/\partial z}{3 norm} dA$

    – TurlocTheRed Jan 30 '19 at 19:10
  • That is true, but it doesn't give you the $\dfrac {dV}{dr} = A$ formula the OP is asking for, – Paul Sinclair Jan 31 '19 at 00:06