Binary Addition: 11 + 11 - What's the Rule?

  • Thread starter Thread starter kolleamm
  • Start date Start date
  • Tags Tags
    Binary
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 5K views
kolleamm
Messages
476
Reaction score
44
This one confused me a little bit. You have to carry the one and put it into the next 1 + 1, what would be the rule in this situation?

Not sure if this ever happens in decimal addition.
 
Physics news on Phys.org
In decimal, what's 55+55? 5+5=10, so write zero and carry the one. 5+5+1=11, so write one and carry the 1.

Same in binary, except 1+1=10. So to do 11+11 note that 1+1=10 so write zero and carry the one. 1+1+1=11, so write one and carry the one.

I find it helpful when working with bases other than ten to explicitly write out long addition/multiplication/division like I'm back in primary school. The same mindless drills work (we call them algorithms because it sounds better), just with different representations of the numbers.
 
  • Like
Likes   Reactions: FactChecker
The addition "facts" in binary addition are pretty simple, as there are only two digits.
0 + 0 = 0 - no carry
0 + 1 = 1 - no carry
1 + 0 = 1 - no carry
1 + 1 = 10 - carry to the next position on the left
(All numbers shown are binary (base-2) numbers.)