Jul. 3, 2024
Monus is an fun operator, its symbol is a dot above a minus; ∸. Monus is truncated subtraction, or in clearer terms, subtraction where the result stops at zero, eg. if you perform 5 ∸ 10, you get 0 instead of -5. But 5 – 3 will result in 2 as normal.
The Wikipedia article for Monus describes a few methods to perform the operation which involve conditionals or abstract functions like Max(x, 0) but my preferred method is the simple (x+|x|)/2
More…
May. 25, 2024
While trying to solve the opposing face for what I’ve dubbed as “Butterfly” configured dice, I had a bit of an epiphany and realised all my recent dice problems could be brute forced by exploiting zero to a power, that 00 equals 1 but 0¹ ᵒʳ ᵍʳᵉᵃᵗᵉʳ equals 0 allows us to essentially conditionally select what result we get from an input. The trick gives us an If statement without the notation, we can cheat around my self imposed no-ifs rule.
More…
May. 22, 2024
Revisiting my post about solving the opposing face of various dice configurations I pondered how a “left handed” turned dice might work. Say rather than placing five and six at the top and bottom of the dice, what if the medieval maker placed one and two in their place, then spiralling around the outside, three, four, five, six? Can we leverage our previous monster of an equation to solve it?
More…
Feb. 9, 2024
On common six sided dice, all opposing faces add to seven (this configuration is called “sevens”). Knowing this, you can always find the value of the opposing face with the simple equation; 7 – x = y, where x is the known face and y is the opposing.
More…
Dec. 24, 2023
A friend asked me, are there any number pairs which share the same percentage difference in increasing to, and decreasing back to each other? eg. 100 to 150 is a 50% increase, but 150 to 100 is a 33.33% decrease (one third). Are there any which are equal in increasing and decreasing change, so X to Y is an A% increase and Y to X is a B% decrease, where A=B?
More…
Dec. 12, 2023
Let’s take Gödel Numbering and make it ridiculous by attempting to create a single character numbering system.
The Fundamental Theorem of Arithmetic states that every natural number greater than 1 can be written as a product of prime numbers, and that up to rearrangement of the factors, this product is unique.
Here we go one step further and perform the same trick on the exponents, so it’s primes all the way down (or up) while also denoting zeroes and doing the same for them too. It’s a little tricky to explain.
More…