this post was submitted on 03 Aug 2023
4 points (83.3% liked)
Strange Planet by Nathan W. Pyle
7068 readers
1 users here now
A community dedicated to Strange Planet comics by Nathan W. Pyle.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
A truly logic system would be entirely designed around a base-12 number system. But we were born with an imperfect set of 10 fingers and that doomed us.
Those aliens have 6 fingers. It's an absolutely ironic twist that their discussion on measuring systems is super illogical for them, and yet logical is the verbiage they use.
Base 10 is the most easy to scale, you just move the coma and add 0s. Base 12 doesn't allow that easily
You can just assign digits to ten and eleven?
Yep. In computer science you sometimes need to calculate with hexadecimal numbers where 10-15 are the letters A-F. You just use another factor for scaling "easily".
In hexadecimal 10 is 16 in decimal. So if you do C * 10 it's C0 but that is 192 in decimal (12 * 16, remember the base is 16).
Whats cool though is that (all hexadecimal):
10 / 2 = 8
10 is 2 to the power of 4 which means 10 is divisible by 2 4 times.
Similarly (and arguably even cooler) with a base 12 system 10 is divisible by 2 AND 3!
10 / 3 = 4
10 / 2 = 6