notorious9000
- 11
- 0
Find (-5) to Sign / magnitude notation & Two's Complement in 8 digits
Last edited:
The discussion revolves around converting the number -5 into Sign/Magnitude and Two's Complement notation using 8 bits. Participants explore the steps involved in these conversions, including the binary representation of positive numbers and the process for negative numbers.
Participants express uncertainty about the correctness of the Sign/Magnitude representation for -5 and do not reach a consensus on the Two's Complement conversion process for this specific number.
There are missing assumptions regarding the representation of numbers in binary and the specific steps for converting -5 into Two's Complement. The discussion does not clarify how many bits are needed for padding in the Two's Complement process.
notorious9000 said:Find (-5) to Sign / magnitude notation & Two's Complement in 8 digits
xcvxcvvc said:What have you tried so far? Do you know how to convert 5 into binary? That's your first step.
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.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 ?