I really need help understanding twos complement. I have been set with the task of converting some negative numbers into binary using 8 bit Two's complete but I have literally no idea what I have to do. Can someone help, if someone could explain it in the simplest way that would be really helpful. Thanks again
8 bitTwo's complement in the simplest way possible please
74 views Asked by user3565724 At
2
The simplest way is : from right to left start copying all digits untill you get a 1, copy it too, then invert all the rest, so 1111 1011, you start copying the 1, you reached the first one, so next start inverting the rest: 0000 0101 witch is -5. another example: 1111 1000 -> 0000 1000 that is -8 I hope it helps. more info: Two's complement