Skip to content

Instantly share code, notes, and snippets.

@ccjmne
Last active March 14, 2024 23:47
Show Gist options
  • Save ccjmne/c0965a75f61d78e1e63810ac41a9cba1 to your computer and use it in GitHub Desktop.
Save ccjmne/c0965a75f61d78e1e63810ac41a9cba1 to your computer and use it in GitHub Desktop.
Double factorial joke
Recipe:
=======
let x be a positive integer
let a be: 2x!! - 2x
let b be: 2x!! - 4x
For a most tasteful joke, let x be 5, 6, or 7.
Contemplate the reality that the following two statements are true:
a - b / 2 = x!!
(a - b) / 2 = x
... and the more uncanny one that the double factorial operator is eerily reminiscent of a rather enthusiastic punctuating mark
... and allow yourself to overlook that it is here denoted as two separate bangs.
The joke is to claim, quite excitedly, that:
a - b / 2 = x!!
Examples:
=========
20 - 10 / 2 = 5!!
84 - 72 / 2 = 6!!
196 - 182 / 2 = 7!!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment