Negatives and Complements
What are complements ? Complements are way to store negative numbers and manipulate them in binary. Why complements ? Representing negative numbers in binary was a real hassle ! That’s were complements help to store signed numbers as binary. But it was not always like that. 1. Sign-Magnitude First idea of representing signs: 0 = + and 1 = -, followed by the number in binary ! 00000101 = 5 10000101 = -5 ...