[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

Why does hexadecimal exist but not a numeral system utilizing

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 13
Thread images: 1

File: 1489779263359.jpg (328KB, 689x808px) Image search: [Google]
1489779263359.jpg
328KB, 689x808px
Why does hexadecimal exist but not a numeral system utilizing all 26 letters?

Why did someone go, "yea lets just stop at F" ?
>>
>>61826051
Because people smart enough to invent hexadecimal know to avoid /g/.
>>
>>61826051
There is a numeral system utilizing all 26 letters
>>
>>61826051
>a numeral system utilizing all 26 letters?
I don't think you understand the point of hexidecimal.

>Why did someone go, "yea lets just stop at F" ?
Hex can represent 16 numbers using only one digit. Zero through nine give you 10 numbers. You need symbols to represent the last 6 numbers. Someone decided to use A through F.
>>
There are easy tricks to convert hex to binary.
>>
>>61826138
But why not represent 37 numbers using only one digit?
>>
>>61826330
Because binary is important to computers. Have fun converting between base 37 and base 2
>>
>>61826330
>But why not represent 37 numbers using only one digit?
There hasn't been a need for it. Computers are base 2 (binary). Hex is useful for dealing with large binary numbers (at least when talking about computers/memory).

Binary = 1 digit represents 2 numbers (2^1)
Octal = 1 digit represents 8 numbers (2^3)
Hexidecimal = 1 digit represents 16 numbers (2^4)

1 digit representing 37 numbers isn't really useful for computers/memory.
>>
>>61826051
>https://en.wikipedia.org/wiki/List_of_numeral_systems
>ctrl + f
>Hexavigesimal
>ctrl + f
>Hexatrigesimal
>Why does hexadecimal exist but not a numeral system utilizing all 26 letters?
hexavigesimal would really only be useful in certain crytography applications, non of them actually practically useful.

hexatrigesimal, base 36 encoding is never used but does exist and is 0-9+a-f
>Why did someone go, "yea lets just stop at F" ?
because two characters of this format make a byte.
>>
Because it's intended as a shorthand for binary. 16 possibilities = exactly 4 bits. You can break up a byte into two hexadecimal characters. If one were to use 0-9 and A-Z, one would have 36 options. Doesn't work well for representing binary data. Maybe if you wanted to represent some two digit block of data in base 6, but otherwise, it's worthless.

There is, however, Base64, which uses 0-9, a-z, A-Z, +, and /, allowing a 3 byte piece of binary data to be encoded in 4 ascii characters. It is less useful when you want to represent individual bytes, since half of all base64 characters cross a byte boundary.
>>
>>61826051
radix 36
def to_radix36(integer):
chars = '0123456789abcdefghijklmnopqrstuvwxyz'
encoded = ''

while integer > 0:
remainder = integer%36
integer = integer/36
encoded = chars[remainder] + encoded
return encoded


ok there its a thing now. Its a thing with no practical use whatsover except making you go away.

so please, go away
>>
https://en.wikipedia.org/wiki/Base36#Uses_in_practice

It's always been a thing.

OP, play Nine Hours, Nine Persons, Nine Doors
>>
>>61826051
>26 letters
My language has 44 letters
ABClets on suicide watch
Thread posts: 13
Thread images: 1


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.