Converting Numbers to Sign/Magnitude and Two's Complement Notation in 8 Digits

  • Thread starter Thread starter notorious9000
  • Start date Start date
  • Tags Tags
    Notation
AI Thread Summary
To convert -5 into Sign/Magnitude notation in 8 digits, the binary representation of 5 is 0101, so -5 is represented as 1101. For Two's Complement, the process begins with the positive binary representation, which is 00000101 for 8 digits. To find the Two's Complement, invert the bits to get 11111010 and then add 1, resulting in 11111011. This method applies similarly to other numbers, demonstrating the conversion process for both representations. Understanding these conversions is essential for working with binary numbers in computing.
notorious9000
Messages
11
Reaction score
0
Find (-5) to Sign / magnitude notation & Two's Complement in 8 digits
 
Last edited:
Physics news on Phys.org
notorious9000 said:
Find (-5) to Sign / magnitude notation & Two's Complement in 8 digits

What have you tried so far? Do you know how to convert 5 into binary? That's your first step.
 
xcvxcvvc said:
What have you tried so far? Do you know how to convert 5 into binary? That's your first step.

umm...
ex) for 4 digits
negative = 1000
positive = 0000

I guess 5 is a easy small number to make to binary

3210
-----
0101

is this right ?
so for Sign/Magnitude
1101 = -5

is this right ?

if this is right. how to convert this to Two's complement ?
 
notorious9000 said:
umm...
ex) for 4 digits
negative = 1000
positive = 0000

I guess 5 is a easy small number to make to binary

3210
-----
0101

is this right ?
so for Sign/Magnitude
1101 = -5

is this right ?

if this is right. how to convert this to Two's complement ?
Yeah. The way I learned to take two's complement is if you have a positive number, it is simply that number with a 0 in front to denote positivity. If the number is negative, you take the positive binary representation, invert all of its binary digits, and add one. Remember, if the number is positive, if you can pad the the 2's complement with as many 0s in front as you want. Oppositely, if the number is negative, you can pad the 2's complement with as many 1s in front as you want.

Example: represent 23 and -23 in 2's complement

2's complement of 23:
step 1: find the binary representation of 23
23 base 10 = 10111 base 2
step 2: add at least one 0 in front to denote positivity. However, infinitely many is ok
answer = 010111 or 000010111, etc.

2's complement of -23:
step 1 find the binary representation of 23:
23 base 10 = 10111 base 2
step 2: pad the number with 0s (you need enough. 1 usually does it). Note, after we take the one's complement (inverting each bit), these 0s will become 1s. Remember, you can pad a negative number with infinitely many 1s.
00010111
step 3: invert each bit:
11101000
step 4: add 1 to the least significant bit:
11101001
 
Back
Top