Advertisement
Guest User

Adding Binary Numbers confusion

a guest
Jan 10th, 2016
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. Addition of two Binary numbers.
  2.  
  3. Video Shows:
  4.  
  5. 0010
  6. 1111
  7. -------
  8. 0010
  9.  
  10.  
  11. But based on what I'm reading about how to add binary, adding two "1"'s gives you a "10" (you put a "0" and carry the 1)
  12. Using the methods I'm finding online for adding binary numbers, I get this:
  13.  
  14. 11 <-carries
  15.  
  16. 0010
  17. 1111
  18. -------
  19. 10001
  20.  
  21.  
  22. I also added the numbers in this online calculator:
  23. http://www.calculator.net/binary-calculator.html?number1=0010&c2op=%2B&number2=1111&calctype=op&x=44&y=10
  24.  
  25.  
  26. The above page also outlines the method of adding binary numbers:
  27.  
  28. Binary Addition -The addition of binaries is similar to the decimal system. The only different is to carry over when the result is 2.
  29.  
  30. 0 + 0 = 0
  31. 0 + 1 = 1
  32. 1 + 0 = 1
  33. 1 + 1 = 0, carry 1 = 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement