Ask Lemmy
A Fediverse community for open-ended, thought provoking questions
Rules: (interactive)
1) Be nice and; have fun
Doxxing, trolling, sealioning, racism, toxicity and dog-whistling are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them
2) All posts must end with a '?'
This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?
3) No spam
Please do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.
4) NSFW is okay, within reason
Just remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com.
NSFW comments should be restricted to posts tagged [NSFW].
5) This is not a support community.
It is not a place for 'how do I?', type questions.
If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.
6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online
Reminder: The terms of service apply here too.
Partnered Communities:
Logo design credit goes to: tubbadu
view the rest of the comments
The most efficient base is the number e
On diesel? With its time management? Efficient how!?
With decimal you have 10 digits 0-9 and each digit place represents a 10^n*digit, binary is 0-1 digits with each digits place represents 2^n*digit. Binary requires fewer digits to memorize than decimal, but more places to represent the same value compared to decimal. If you are trying to find the most efficient base for balancing the number of digits to memorize vs the number of places a value requires to represent you get a graph like this showing the minimum approaching e (~2.718):
https://www.wolframalpha.com/input/?i=beta%2Flog%28beta%29+from+1.5+to+5
And the derivative approaching e:
https://www.wolframalpha.com/input/?i=derivative+beta%2Flog%28beta%29
That comes into play when you're doing something like picking a base for computer architecture. Almost all computers theses days are binary, but some were base 3 trinary for a bit. But you don't need to pick an integer value and can pick pi or e as a base too. Here's a better write up with an explanation of radix and bases:
https://web.archive.org/web/20160324100419/http://www.americanscientist.org/issues/pub/2001/11/third-base/2