The twos-complement tag has no wiki summary.
0
votes
5answers
67 views
Printing to output: integer as sum of powers of 2
I had an exam, and I've been struggling ever since.
You have an array of integers(ex. 13, 6, 21, 4), and I need to make an output that looks like:
13 = 2^3 + 2^2 + 2^0
6 = 2^2 + 2^1
21 = 2^4 + 2^2 + ...
2
votes
1answer
52 views
Significance of the number -947483647
I'm migrating some code from a compiler with 32-bit integers to 64-bit. I found some old code that assumes the highest possible integer is 2147483647 and the lowest possible is -947483647.
I ...
2
votes
1answer
105 views
Detect one's or two's complement architecture in C++?
What is the most reliable way to detect whether the architecture uses one's or two's complement representation in C++?
2
votes
4answers
89 views
+50
Detection of Negative Binary
Today in class my Computing teacher was explaining to us (or attempting to explain) how to write a negative binary number using Two's Complement. My question is this:
How does the end user determine ...
0
votes
1answer
49 views
Signed integer to two's complement hexadecimal
I have written a function in Python to take a signed integer, convert it using two's Complement then return the hexadecimal value. I know there is a hex() function, but I want to be able to specify ...
1
vote
4answers
68 views
chars to 2´s complement in C
I have two char´s that I want my program to interpert as one 2´s complement value. For example if I have:
char i = 0xFF;
char j = 0xF0;
int k = ((i<<8) | j);
Then I want C to interpert k as ...
-3
votes
1answer
37 views
Truncation in Two's Complement? [closed]
I'm struggling to understand how truncation works when converting from unsigned to Two's Complement. Can someone please explain? (my textook uses the example of truncating a 4 bit value to a 3 bit ...
-2
votes
0answers
13 views
Looking for pseudo code(or any code) of adding O1(ones complement), T2(Two's complement), natural binary code
Exacly as in the subject, maybe some of you are in possesion of that kind of pseudo code of adding O1, T2 or NBC numbers. I know that people who really like to neg others will vote down, but I am in ...
0
votes
3answers
74 views
bitwise shift operator under different platforms (windows, mac os, android)
I am debuging a function hashKey. The problem is that it generates different result for the same input under different platforms, windows/win ce, mac os, android. Here is the code:
unsigned long ...
4
votes
1answer
109 views
How to convert from ones-complement to twos-complement
I am having some problems with negative values in C#
Am I correct that C# uses ones-complement for its negative values?
A piece of hardware that I communicate with expects twos-complement values.
...
0
votes
1answer
50 views
Understanding Two's Complement Addition
I've built a four bit adder/subtractor utilizing 4, 1 bit full adders and the input and output are twos complement numbers.
If X=0111 and Y=1000 their sum is obviously 1111.
In decimal this is ...
2
votes
2answers
257 views
Java two's complement binary to integer [duplicate]
I know that converting a decimal to binary with Integer.toBinaryString(355) = 0000000101100011 and
Integer.toBinaryString(-355) = 1111111010011101 (where I ...
0
votes
1answer
105 views
C# convert one's complement bits to a two's complement long?
In C#, how can I convert a 64 bit ones complement number (represented as a long or ulong) to a signed two's complement long?
For reference, I'm trying to implement ULP-based double comparison using ...
0
votes
4answers
88 views
Two's complement; 0FFFh positive, 0FFFFh negative?
From the book, Art of Assembly, I copy this quote:
In the two’s complement system, the H.O. bit of a number is a sign bit. If the H.O. bit is zero, the number is positive; if the H.O. bit is one, ...
-2
votes
1answer
139 views
Why does -~x equal x+1? [closed]
In Obfuscated C Code Contest 2006. Please explain sykes2.c,
there is a statement "-~i == i+1 because of twos-complement".
Can someone explain why this is the case?
0
votes
2answers
97 views
How to represent a negative number with a fraction in 2's complement?
So I want to represent the number -12.5. So 12.5 equals to:
001100.100
If I don't calculate the fraction then it's simple, -12 is:
110100
But what is -12.5? is it 110100.100? How can I calculate ...
0
votes
1answer
55 views
How can I check a negative solution of a twos complement subtraction equation?
Hey guys I'm still trying to get the hang of twos complement arithmetic and I can get the correct answer, since I'm working on practice problems with solutions.
When I take the answer that's in ...
1
vote
1answer
58 views
Does the sign-bit change when using one's or two's complement?
I've been struggling with what seems like simple concepts, but I seem to keep combining and mixing up binary conversions.
If you are given a number in binary and apply 1's complement, you invert all ...
0
votes
3answers
127 views
Are negative numbers that are left shifted *always* filled in with “1” instead of “0”?
I'm independently studying bit-shifting by porting some C++ functions to .NET's BigInteger. I noticed that when I shifted BigInteger the void was filled in with ones.
I believe this has to do with ...
-4
votes
1answer
97 views
two's compliment, and binary numbers example [closed]
So let me get this straight, just started learning about two's compliment etc,
anyway I got a binary number 10101011 which is 171
I was told to find the 8 bit one's and two's compliment of this ...
11
votes
5answers
210 views
How does C know what type to expect?
If all values are nothing more than one or more bytes, and no byte can contain metadata, how does the system keep track of what sort of number a byte represents? Looking into Two's Complement and ...
5
votes
3answers
249 views
Read / Write Haskell Integer in two's complement representation
I need to read and write Integers in a way that is compatible with what Java does with it's BigInteger class:
Returns a byte array containing the two's-complement representation of
this ...
7
votes
2answers
288 views
Adding two signed or unsigned integers
It has been a long time since I last programmed at the bits and bytes level and wanted to confirm something I seem to remember from those days:
Say I have two integers of equal length (1, 2, 4, 8 ...
1
vote
2answers
147 views
Why we need to add 1 while doing 2's complement
The 2's complement of a number which is represented by N bits is 2^N-number.
For example: if number is 7 (0111) and i'm representing it using 4 bits then, 2's complement of it would be (2^N-number) ...
0
votes
2answers
115 views
Trouble with a Two's Complement Function
Trying to implement a function to return the two's complement of a string of bits. I've tried two varieties and get odd results.
Version 1 (does the inversion but not the "+1"):
string ...
0
votes
1answer
233 views
Bitwise operations and shifts
Im having some trouble understanding how and why this code works the way it does. My partner in this assignment finished this part and I cant get ahold of him to find out how and why this works. I've ...
3
votes
2answers
117 views
14-bit left-justified two's complement to a signed short
I have two bytes containing a 14-bit left-justified two's complement value, and I need to convert it to a signed short value (ranging from -8192 to +8191, I guess?)
What would be the fastest way to ...
4
votes
2answers
89 views
Is two's complementary representation universally platform-independent?
it's idiomatic to initialize a block of memory to zero by
memset(p, 0, size_of_p);
when we want to initialize it to minus one, we can:
memset(p, -1, size_of_p);
no matter what type p is, because ...
0
votes
0answers
57 views
Making a 4bit two's comeplement circuit
I am trying to make a circuit in Digital works to do a 4bit two's complement.
I kind of know the logic being that, you put inputs through a not gate to invert them, but adding the one is what I am ...
1
vote
2answers
453 views
How to make the 2-complement of a number without using adder
In two-complement to invert the sign of a number you usually just negate every bit and add 1.
For example:
011 (3)
100 + 1 = 101 (-3)
In VHDL is:
a <= std_logic_vector(unsigned(not(a)) + 1);
...
-1
votes
2answers
1k views
Binary Subtraction with 2's Complement
I need help subtracting with binary using 2's representation and using 5 bits for each number:
1) -9 -7 = ? Is there overflow?
-9 = 01001 (2's complement = 10111) and -7 = 00111 (2's complement = ...
0
votes
2answers
290 views
Computing the absolute value of an n-bit 2's complement number
The method takes in an n-bit 2's complement number whose absolute value we're trying to find, and the number of bits that the number will be. Here are some examples:
abs(0x00001234, 16); // => ...
3
votes
4answers
213 views
Explain Use of “:” operator in c++ in the code snippet “int i:2;” [duplicate]
Possible Duplicate:
What does this C++ code mean?
In the following C++ code
# include <stdio.h>
int main()
{
struct clap
{
int i:2;
int j:2;
int k:3;
}x={1,2,3};
...
3
votes
2answers
341 views
Why are signed and unsigned multiplication different instructions on x86(-64)?
I thought the whole point of 2's complement was that operations could be implemented the same way for signed and unsigned numbers. Wikipedia even specifically lists multiply as one of the operations ...
0
votes
0answers
149 views
decimal, floating point, binary, two's complement, bases [closed]
I don't think I understand exactly what decimal, floating point, binary, two's complement and bases are and how to convert between these things. Can you explain what the difference is and whether a ...
1
vote
2answers
134 views
How do I make BigInteger see the binary representation of this Hex string correctly?
The problem
I have a byte[] that is converted to a hex string, and then that string is parsed like this BigInteger.Parse(thatString,NumberSyles.Hexnumber).
This seems wasteful since BigInteger is ...
0
votes
4answers
69 views
Why does BitConverter shrink my already allocated array? (I'm trying to prevent a two's complement issue)
I am allocating an array that is intentionally bigger than the result of BitConverter.GetBytes. My goal is to leave the last byte empty so that I can prevent this number from being seen as the two's ...
0
votes
2answers
428 views
two's complement
As far as I know, the two's complement algo is:
1.Represent the decimal in binary.
2.Inverse all bits.
3.Add 1 to the last bit.
For the number 3, which its representation is: ...
-1
votes
5answers
448 views
Converting from int to binary string to int using 2's complement
There is a binary string 10001110 which I know is using 2's complement. I know it will be 8 bits.
It is given to me in the form of an unsigned int which equals 142.
I then need to convert this back ...
0
votes
4answers
458 views
2s complement conversion In C [duplicate]
Possible Duplicate:
Converting from int to binary string to int using 2’s complement
Say I have unsigned int num=15;. If I know that it is an 8-bit binary no (so in this case 00001111) and ...
7
votes
6answers
912 views
How are integers internally represented at a bit level in Java?
I am trying to understand how Java stores integer internally. I know all java primitive integers are signed, (except short?). That means one less bit available in a byte for the number.
My question ...
1
vote
2answers
384 views
Convert 2's complement byte to unsigned positive value in Java
I have an 8 bit byte array in Java. The byte array consists of the high and low bytes of a 16 bit number that it's receiving from an external sensor.
For example, the byte array might be the ...
1
vote
3answers
459 views
Understanding Hex number to Decimal in two compliment - Java
I am trying to understand this answer here.
How do both these 0xf2 and 0xfffffff2 values represent -14? Can you elaborate with the conversion process?
I know what is Two's complement, though.
0
votes
1answer
123 views
Converting from 8 bit to 16 bit
I was wondering how do you convert from an 8 bit 2's complement to a 16 bit 2's complement signed number?
1100 0110 is an example
3
votes
2answers
907 views
Calculate two's complement checksum of hexadecimal string
I have a string "0AAE0000463130004144430000" and I need to calculate the two's complement checksum of the hex bytes that make up the string.
The formula for the example string above is
Sum the ...
1
vote
7answers
213 views
Why is ~b=-6 if b=5?
I can't get the 2-completement calculation to work.
I know C compiles ~b that whould invert all bits to -6 if b=5. But why?
int b=101, inverting all bits is 010 then for 2 completement's notation I ...
1
vote
2answers
835 views
2's complement to signed binary converter using logic gates?
I need to create a 2's complement to signed binary converter using gate circuits. What logic gates can I use?
1
vote
3answers
2k views
Performing arithmetic operations in binary using only bitwise operators [duplicate]
Possible Duplicate:
How can I multiply and divide using only bit shifting and adding?
I have to write functions to perform binary subtraction, multiplication, and division without using ...
0
votes
4answers
284 views
Two's Complement Explanation
How does two's complement work? For example:
5: 00000101
-5 (two's complement): 11111011
How can one tell if the latter is supposed to be 251 or -5?
1
vote
1answer
81 views
finding out bit pattern for 4 bit # [closed]
a. Fill in the bit pattern for the following 4-bit numbers. If there are multiple bit patterns for a number, write them all. If no bit pattern exists, write "N/A" in the box.
Unsigned, ...


