Adding signs
Let’s now add the concept of signs
Simplest way: Add a sign bit. This is called sign magnitude.
- Example: 93 is 0101 1101. Then -93 is: 1101 1101
- Advantage: Very easy to take the negation of a number.
- Disadvantage: hard to do additions. Need something better!