For me, the only part of binary and base eight that every stuck was the basic definition. I always hated those parts of math classes where they'd make us do calculations in base eight.
What is the purpose of base eight?
Dawn ,'Never Leave Me'
[NAFDA] Spike-centric discussion. Lusty, lewd (only occasionally crude), risque (and frisque), bawdy (Oh, lawdy!), flirty ('cuz we're purty), raunchy talk inside. Caveat lector.
For me, the only part of binary and base eight that every stuck was the basic definition. I always hated those parts of math classes where they'd make us do calculations in base eight.
What is the purpose of base eight?
instead of having a units place, tens place, hundreds, etc. you have a units place, twos place, fours, etc.
Okay, so, in binary, the number 111 means that there is one 4, one 2, and one 1, so it would equal 7?
Somehow it does seem easier to grasp bases larger than ten than those smaller than ten, I think because we keep wanting to say, okay, so what does 18 stand for? Base 16 helped me, what with the 1-9,A-F.
So far the egg explanation is the only one I vaguely understand.
Brains are weird. Because I swear I don't understand that one, and I have programmed in binary myself.
Here's a simple page on binary, but it may be in me-speak and not Steph-speak, and therefore not so helpful.
Say you have 143. 143 in regular #s = 1*10^2 + 4*10^1 + 3*10^0or 1 x 10^2 + 4*10 + 3
Now say you have 110 in binary. That = 1*2^2 + 1*2^1 + 0*1^0or 2^2 + 2^1 + 0*1
Well, I thought I had a rudementary english major's grasp on binary until I saw this post!
Tep, is this the kind of explanation you are needing? Cuz there's more where it came from at [link]
Computers don't use the ten digits of the decimal system for counting and arithmetic. Their CPU and memory are made up of millions of tiny switches that can be either ON or OFF. Two digits, 0 and 1, can be used to stand for the two states of ON and OFF. So we can see that computers could work with a number system based on two digits.
I believe it explains both the whys and hows of binary, um, stuff.
the number 111 means that there is one 4, one 2, and one 1, so it would equal 7?
You've got it!
Base eight and base sixteen make great shorthand for binary. Useful for computer programming and granting permissions on UNIX machines. Also, the role-playing game Taveller could express a character or starship as a hexidecimal number for reasons I'll never really understand.
Teppy, exactly.
Okay, so, in binary, the number 111 means that there is one 4, one 2, and one 1, so it would equal 7?
Yep!