| View previous topic :: View next topic |
| Author |
Message |
Kenjuudo The nonsense machine


Joined: Mar 08, 2009 Age: 31 Posts: 1712 Location: Area 51 - Extra Terrestial Research Department
|
Posted: Sun Jun 21, 2009 4:36 pm Post subject: Count using the binary number system |
|
|
Binary is the name of the base 2 number system. What it means, is that you only have 2 different symbols for expressing numbers, namely 0 and 1.
In the decimal (base 10) number system which we normally use, we have 10 different symbols: 0 through 9. The formula to convert any base to base 10 is summing all digit positions with this formula: (base^position)*digitvalue. The position always start at 0 on the far right side.
For example, the decimal number 8597 is equivalent to:
(10^3)*8 + (10^2)*5 + (10^1)*9 + (10^0)*7 = 1000*8 + 100*5 + 10*9 + 1*7 = 8597 decimal.
In binary, the number 110101 can with this method be converted to decimal like this:
(2^5)*1 + (2^4)*1 + (2^3)*0 + (2^2)*1 + (2^1)*0 + (2^0)*1 = 32*1 + 16*1 + 8*0 + 4*1 + 2*0 + 1*1 = 32 + 16 + 4 + 1 = 53 decimal.
So let's start and see how many nerds I can attract with this...
1 _________________ When superficiality takes control of your reality, you are already forgotten in the sea of normality. |
|
| Back to top |
|
richie Ye Olde Bookwyrme


Joined: Jan 10, 2007 Age: 51 Posts: 20185 Location: Lake Whoop-Dee-Doo, Pennsylvania
|
|
| Back to top |
|
Kenjuudo The nonsense machine


Joined: Mar 08, 2009 Age: 31 Posts: 1712 Location: Area 51 - Extra Terrestial Research Department
|
Posted: Sun Jun 21, 2009 4:54 pm Post subject: |
|
|
Ah ok... That sucks.  _________________ When superficiality takes control of your reality, you are already forgotten in the sea of normality. |
|
| Back to top |
|
Halewijn Emu Egg


Joined: Jun 17, 2009 Posts: 8
|
Posted: Sun Jun 21, 2009 6:51 pm Post subject: |
|
|
old joke:
there are 10 kinds of people. those who can count in binary and those who cannot.
most likely available on a t-shirt on thinkgeek.  |
|
| Back to top |
|
Woodpecker I am not a jigsaw ! I am a free man !


Joined: Oct 19, 2008 Age: 36 Posts: 1504 Location: Europe
|
Posted: Sun Jun 21, 2009 10:47 pm Post subject: |
|
|
Binary is all very well, but why not do it in hexidecimal ?
0
1
2
3
4
5
6
7
8
9
A
B
C
D
E
F _________________ Health is a state of physical, mental and social wellbeing and not merely the absence of disease or infirmity I am not a jigsaw, I am a free man ! |
|
| Back to top |
|
LostInEmulation Penguin


Joined: Feb 11, 2008 Posts: 1878 Location: Germany
|
Posted: Mon Jun 29, 2009 4:31 am Post subject: |
|
|
To continue the thread:
101
110
111
1000 _________________ I am not a native speaker. Please contact me if I made grammatical mistakes in the posting above.
Tekneluru mi'aru mi aji, il'sidekhir'ra min kia. Mi'ki'vasu kynha'het kirki. |
|
| Back to top |
|
Keith Guarding my post here


Joined: Aug 13, 2008 Age: 26 Posts: 2405 Location: East Sussex, UK
|
Posted: Mon Jun 29, 2009 6:28 am Post subject: |
|
|
| What happened to the last binary thread? |
|
| Back to top |
|
|