CTS logo
hazy blue Catskill Mountains in distance

News:

PDF::Builder v3.028 Released, 31 December 2025
   Please also see the CPAN listing, the GitHub entry, and the latest changes list.


A Thought…

Another term which came up for mansplaining is “correctile dysfunction”, which seems more accurate to me.

   — HidariMak1, Non Sequitur comic letters

Benderama equation

Posted on 2022-May-19 at 11:50:00 (last update on 2022-Jun-11 at 22:13:00) by Phil

In the 2011 (Season 6) Futurama episode titled Benderama, Bender “borrowed” Professor Farnsworth’s Banach-Tarski Dupla-Shrinker to make copies of himself. It is stated that two copies will be made, each 60% the size of the original. A certain amount of unspecified “matter” (e.g., Zoidberg’s wedding album) is needed to feed the machine (which Bender has hidden within his Compartment of Mystery). When the Professor realizes that Bender is making copies, and each copy is also making copies, he announces that the entire Earth will be consumed in the process and the total mass of \(n\) generations of Benders will be:

$$M = \sum^\infty_{n=0} {2^n \cdot \left[{M_0} \over {2^n (n+1)}\right]}~~.$$

Now, there are a few issues here (besides the very existence of such a duplicator in the first place…). First of all, the “60%” figure is a bit ambiguous — is it 60% of the mass, 60% of the volume, or 60% of the height (also width and depth)? From the pictures (animation), it would appear that it’s 60% of the height (linear dimensions), meaning \(0.6^3 = 0.216\) of the volume, and (assuming constant density) the mass. Also, we only see two copies being made at a time — no limit on usage is mentioned, but it appears that the duplicator gives up after being used once (to produce two smaller copies). The Big Question: is this equation correct, and is it divergent (goes to infinity), as claimed?

Futurama was, in part, written by three PhD’s (including applied mathematician Ken Keeler, chemist Bill Odenkirk, and computer scientist Jeff Westbrook), not to mention a number of others with graduate STEM degrees, so I was disappointed to see that the formula (upon which the plot depends), appears to be wrong. This equation does not appear to account for the 60% scale factor (see this discussion, among others). If you pull out the \(M_0\) and cancel the two \(2^n\) terms, you get:

$$M = M_0 \sum^\infty_{n=0} {1 \over {n+1}}~~,$$

and indeed, the series is divergent (\(M\) goes to \(\infty\)). However, wouldn’t the correct formula be something closer to:

$$M = M_0 \sum^\infty_{n=0}~{2^n \cdot 0.6^{3n}}~~?$$

Each generation is 60% (linear dimensions) of the previous one, with 21.6% of the volume (and, presumably, mass). There are two copies, so \(2^n\) Bender copies at generation \(n\), each of mass \(M_0 \cdot 0.6^{3n}\). I think that’s the correct formula, but I am unable to prove that it converges or diverges!

So, I wrote a little Perl program to calculate the result for various scale values:

use strict; use warnings; my $scale = .7925; my $MAXn = 1000; my $term; my $sum; my $n; $sum = 0.0; print "1/(n+1)\n"; for ($n=0; $n<$MAXn; $n++) { $term = 1.0/($n+1); $sum += $term; print "+ $term = $sum\n"; } $sum = 0.0; print "2**n*($scale)**3n\n"; for ($n=0; $n<$MAXn; $n++) { $term = 2**$n * $scale**(3*$n); $sum += $term; print "+ $term = $sum\n"; }


My results are that it converges up to a $scale of about 0.792+, and diverges beyond that. Can anyone come up with a precise answer?

  • .1 converges to 1.002
  • .5 converges to 4/3
  • .6 converges to 1.76 (this is the scale stated in the show)
  • .75 converges to 6.4
  • .775 converges to 14.5
  • .78 converges to 19.65
  • .79 converges to 67.5
  • .792 converges to 156ish
  • .7925 may converge to 218.4ish
  • .793 may converge to 352ish
  • .795 diverges
  • .8 diverges
  • .9 diverges

So, it looks to me that (using the 60% scale factor), even an infinite number of ever-smaller Benders will only consume less than one additional Bender in mass… nothing to worry about (at least, the entire planet will not be consumed in the process).

There are some other, non-mathematical physics issues, such as what happens when the Benders shrink down to atomic size — what are they made of? Do their atoms keep shrinking? Beyond that, is there some absolute smallest-size limit, such as the Planck Length? Stay tuned, or just suspend your disbelief and enjoy the show!

Posting a response

If you wish to contribute to this discussion in a constructive manner, please email your comment to this discussion group.Include which discussion thread title you are responding to, and the nom de plume you would like to be listed under (we allow only one email address per user name, and vice versa). Due to the large amounts of spam received in the past, as well as abuse of posting privileges (e.g., attacking others), all posts must be received by email and will be individually vetted. If we deem it a useful, factual, and polite post, we will enter it. Anything ugly will result in your being permanently blacklisted. All decisions are made by the management of CTS and are final. We reserve the right to discard submissions without any feedback to you, and to fix errors in spelling and grammar in something we post. Please give a minimum of a few days for us to review and post your entry. Don’t be impatient and resubmit!

 

All content © copyright 2005 – 2026 by Catskill Technology Services, LLC.
All rights reserved.
Note that Third Party software (whether Open Source or proprietary) on this site remains under the copyright and license of its owners. Catskill Technology Services, LLC does not claim copyright over such software.

 

This page is https://www.catskilltech.com/utils/show.php?link=benderama-equation

Search Quotations database.

Last updated Sun, 17 May 2026 at 8:03 PM

Valid HTML 5

Wed, 15 Jul 2026 at 6:59 PM EDT