Last Time | Next Time |
Assume that this "crazy society" uses our ten digits 0-9, then uses A, B, C, D, E, and F as the symbols for the next six "digits" (10-15):
In this case we use powers of 16: 1=160, 16=161, 256=162, 4096=163,....
What society would be so crazy as to use a system with base 16? Ours, of course!
We use "hexadecimal" numbers in almost every web page on the net. Colors are given by "RGB" -- Red/Green/Blue -- and the relative quantities of each. Web pages use 256 (162) gradations of each, represented by a two-digit base-16 number. You will see one in this page (buried in "the source"): the color "#FFF8DC" means FF red, F8 green, and DC blue. What numbers are those?