Tagged Questions
27
votes
10answers
7k views
Why is two's complement used to represent negative numbers?
I'm just curious if there's a reason why in order to represent -1 in binary, two's complement is used: flipping the bits and adding 1?
-1 is represented by 11111111 (two's complement) rather than (to ...
5
votes
5answers
2k views
Convert 2 bytes to a number
I have a control that has a byte array in it.
Every now and then there are two bytes that tell me some info about number of future items in the array.
So as an example I could have:
...
...
Item ...
5
votes
10answers
3k views
2's complement example, why not carry?
I'm watching some great lectures from David Malan (here) that is going over binary. He talked about signed/unsigned, 1's compliment, and 2's complement representations. There was an addition done of 4 ...
2
votes
7answers
176 views
Why does -INT_MIN = INT_MIN in a signed, two's complement representation?
I still haven't found a reason why the lowest signed negative number doesn't have an equivalent signed positive number?
I mean in a 3 digit binary number for simplicity
100 is -4? but we can't have a ...
2
votes
1answer
577 views
How to convert a negative integer into two's complement binary form? (Java)
I need to convert numbers, positive and negative, into binary format - so, 2 into "00000010", and -2 into "11111110", for example. I don't need more than 12 bits or so, so if the string is longer than ...
1
vote
2answers
1k views
Adding and subtracting two's complement
Using six-bit one's and two's complement representation I am trying to solve the following problem:
12 - 7
Now, i take 12 in binary and 7 in binary first.
12 = 001100 - 6 bit
7 = 000111 - 6 bit
...
0
votes
1answer
109 views
Converting hex to binary and one and two's complement in 16 bits
I am trying to convert FFAD (hex) to a decimal value and then do one and two's complement on it. FFAD is represented as a 16 bit integer.
When I convert FFAD to base 2 I get 1111111110101101.
My ...
0
votes
3answers
122 views
Subtraction of 2 negative integer (two's complement) never overflowing
I came across this in a computer architecture textbook:
Subtracting a strictly negative integer from another strictly negative integer (in two's complement) will never overflow.
The textbook ...
0
votes
2answers
74 views
Two's Complement Addition issues
I'm working on Two's complement addition. Basically I need to show the addition of -27 to +31, with both numbers in binary using 6 bits.
My problem is with carry operations. Maybe I'm not doing it ...
0
votes
0answers
22 views
Utility to display binary in various integer representations
I have a binary data file which contains two-byte integers, however the encoding of these integers (little-endian, big-endian, two's compliment, one's compliment, sign-and-magnitude, et cetera) is ...
0
votes
1answer
65 views
How to properly pad binary numbers (with and without radix)
So I've just got a quick question on padding with 0's. The examples I made are below, just assumed that length doesn't matter and there is no sign bit.
a) 1000 = 00000001000
b) 110.101 = ...
0
votes
1answer
257 views
Excess-N to 2's complement
Could someone please explain how to do this? It's not homework.
Could someone please explain to me how to do this?
Show that if N is chosen to be equal to 2^(m-1) where m is the number of bits
in ...
0
votes
1answer
300 views
1's and 2's complement systems
I'm trying to understand the differences between these two systems and their impact on C programming.
From what I've learned from Wikipedia:
both systems are used to represent negative numbers
...
0
votes
1answer
863 views
Binary Multiplication, 2's complement
I am trying to learn Binary Multiplication, 2's complement negative numbers.
-10
x 3
I know there is a simple way of doing this. Like sign extension and initial partial product.
-10 0110 ...
0
votes
4answers
525 views
Convert NSData to primitive variable with ieee-754 or twos-complement?
I am new programmer in Obj-C and cocoa. Im a trying to write a framework which will be used to read a binary files (Flexible Image Transport System or FITS binary files, usually used by astronomers). ...