answersLogoWhite

0

To find the 2s complement, invert all the bits (to get the 1s complement) and add 1:

10001100 00111001 → 01110011 11000110 + 1 = 01110011 11000111

If you have an operator missing between the two numbers then if it is subtract:

10001100 - 00111001 = 10001100 + 11000111 = carry set & 01010011 & overflow set.

If not subtract but some other operator, please re-ask your question with the operator written out as a word.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Why 2's complement binary subtraction is preffered over 1's complement binary subtraction?

1


What is the binary complement 8 bit representation for negative 19?

8-bit 2s complement representation of -19 is 11101101 For 1s complement invert all the bits. For 2s complement add 1 to the 1s complement: With 8-bits: 19 � 0001 0011 1s � 1110 1100 2s � 1110 1100 + 1 = 1110 1101


What is the 2's complement value of -85?

87


Subtract the hexadecimal number 1234 from DA57 using twos complement addition method?

(1234)hex=(0001 0010 0011 0100)2 (DA57)hex=(1101 1010 0101 0111)2 Taking, (1234)hex=(0001 0010 0011 0100)2 =(1110 1101 1100 1011) -1s complement =(1110 1101 1100 1100) -2s complement Now ,add 2s complement of (1234)hex with (DA57)hex, we get 1110 1101 1100 1100 + 1101 1010 0101 0111 1 1100 1000 0010 0011 There is a Carry bit Since,carry is generated.so,no is negative Then take 2s complement of above no.Thus ,we get 0011 0111 1101 1101=(37DD)hex (1234)hex -(DA57)hex =37DD)hex


What is binary equivalent of -15 using 2's complement?

-15 is 11111111 and 2s com is 1111 0001


How do you detect overflow when adding two numbers in 2s complement form?

You can detect overflow if the result turns out to be negative (which is the same as checking to see if the sign bit is 1). For example if you tried to add 5 and 6 in to 4-bit 2s complement, you would get 0101 + 0110 = 1011, which is a negative number since the sign bit (the 1 on the left) is a 1. This is an overflow.


What is 2s complement?

Two's complement is a mathematical representation used to encode negative numbers in binary systems. In this format, the most significant bit (MSB) indicates the sign of the number, where '0' represents positive and '1' represents negative values. To find the two's complement of a binary number, you invert all bits (turning 0s into 1s and vice versa) and then add 1 to the least significant bit. This method simplifies binary arithmetic, allowing for straightforward addition and subtraction of signed numbers.


How do you get 4 when using four 2s in addition subtraction division or multiplication?

(2 + 2)*2/2 = 4


The 2's compliment of the number 1000 is?

To get the 2s complement, find the 1s complement (by inverting the bits) and add 1. Assuming that number is [4-bit] binary it would be 1000. If it is preceded by 0s, as in, for example, 0000 1000, then it would be 1111 1000.


Why we use 2s complement?

Two's complement is used for representing signed integers in binary because it simplifies arithmetic operations, especially addition and subtraction. It allows for a unified treatment of positive and negative numbers, eliminating the need for separate circuits for each operation. Additionally, it simplifies the process of determining the negative counterpart of a number and avoids issues like sign bit ambiguity. This representation also maximizes the range of values that can be represented for a given number of bits.


What is 2s complement of (-13)10?

To find the 2's complement of (-13) in binary, first, convert the positive value (13) to binary, which is 1101 in 4 bits. Then, invert the bits to get 0010, and finally, add 1 to this result, resulting in 0011. Thus, the 2’s complement representation of (-13) in 4-bit binary is 0011.


What is the Largest 8 bit negative number which can be represented using 2s complement?

The largest 8-bit negative number that can be represented using two's complement is -1. In two's complement representation, -1 is expressed as 11111111 in binary. This is because the most significant bit (MSB) indicates the sign, and in this case, it is set to 1, indicating a negative number. The range of 8-bit two's complement numbers is from -128 to 127.