answersLogoWhite

0

Wrong. You don't say whether you are using ones-complement notation or twos-complement notation, but in either case you'd be wrong. Your answer of 000110101110 is 430 decimal, but the correct answer is 435 or 436 depending on which notation you use.

Ones-complement notation:

000000111001 - 111010000101 = 000110110011

Decimal equivalent:

57 - (-378) = 57 + 378 = 435

Twos-complement notation:

000000111001 - 111010000101 = 000110110100

Decimal equivalent:

57 - (-379) = 57 + 379 = 436

Note that in ones-complement, converting the sign of any value simply inverts all the bits. So if we invert 111010000101 we get 000101111010 which is 378, thus the original signed value was -378. In twos complement we invert all the bits (as per ones-complement) and add 1, so 000101111010 + 1 is 000101111011 is 379, thus the original signed value was -379.

QED.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

Definition of addition and subtraction of binary?

definiton of addition and subtraction


What are similarities on subtraction and multiplication?

They are binary operations.


Addition and subtraction are example of what?

Binary arithmetic operations.


What is the result of the subtraction of binary number 1110101 from the binary number 1000011?

11101012 - 10000112 = 1100102


Addition and subtraction are examplesof what are best called?

Binary operations.


How many basic binary subtraction operations are possible?

1


Why full subtractors are called subtractors?

because they do binary subtraction


What is 1110-111 in binary?

1110-111 in binary = 999


What is the output of the following signed binary addition 10101011 10010011?

When decoded, that binary says: «“


1111 - 1010 using binary subtraction?

101


How do you add and subtract the binary number system?

You do it exactly like decimal subtraction, and when needed you borrow from the next higher place digit, however remember you borrow 2 everytime and not 10. Some people convert the two binary numbers into decimal, do the subtraction and then convert the result back to binary. Following is an example of binary subtraction. 1001 0110 ____ 0011 ____ I started explaining the borrowing process in words but it gets confusing. Please relate it to the borrowing process in decimal.


Binary equivalent of ( and ndash19)10 in signed magnitude system?

To convert the decimal number -19 into the signed magnitude binary system, first convert the absolute value, 19, to binary. The binary representation of 19 is 10011. In a signed magnitude system, the first bit indicates the sign (0 for positive, 1 for negative). Therefore, the signed magnitude representation of -19 in an 8-bit format is 10010011.