Originally posted by FeastboyHere is how binary works.
Wouldn't 10 + 10 = 01 in binary?
Our base 10 #'s 1 2 3 4 5 in binary would be:
1 10 11 100 101
base 10 gives you 10 digits to work with (0-9)
after 9 comes 10 (you are using existing numbers from the system)
with binary, you have 2 numbers to work with. (0 and 1)
Thus, you need to start using your numbers after 1, you get 10, next is 11, and next is 100 and on to 101, 110, 111, 1000)
You can find info about binary all over the web, and you can even find converters that will do the math for you.
10 + 10 = 100
same as
2 + 2 = 4
P-