Understanding the Two's Complement System

  • Thread starter ehrenfest
  • Start date
  • Tags
    System
In summary, r's complement is a way to express negative numbers in a given radix, but it does not apply to positive numbers. It is always treated as a negative number.
  • #1
ehrenfest
2,020
1

Homework Statement


let me check my understanding of what a twos complement

when you use the rs complement system that means you use that system to express negative numbers only; in order to express the rs complement of a number you take r^n - that number; however if the number you want to express is positive then you do not really use the twos complement system, so it is somewhat of a misnomer.

I mean that even if we are working in the two's complement system and we want to express 5 we do not take r^n - 5,we just write 5

does all that make sense


Homework Equations





The Attempt at a Solution

 
Physics news on Phys.org
  • #2
r's complement

r's complement is a way to express negation in a given radix r, when the number of available digits is limited to n-1.

So, by obtaining r's complement, you're really obtaining a negative number.

So, obviously, it doesn't apply to positive numbers unless you want to turn them negative :)

A complement, in given radix, always behaves as a negative number as long as the number of digits you're considering is less than n.
 
  • #3


Yes, your understanding of the two's complement system is correct. The two's complement system is a method for representing both positive and negative numbers in binary form. In this system, the most significant bit (leftmost bit) is used as a sign bit, where 0 represents a positive number and 1 represents a negative number. This allows for a wider range of numbers to be represented using a fixed number of bits.

To find the two's complement of a number, you take the one's complement (inverting all the bits) and then add 1 to the result. This is equivalent to subtracting the number from 2^n, where n is the number of bits being used.

For example, in an 8-bit system, the two's complement of 5 would be 11111011. This is found by taking the one's complement of 5 (00000101) and adding 1, resulting in 11111010 + 1 = 11111011.

However, as you mentioned, when working with positive numbers, we do not need to use the two's complement system. We can simply write the number in binary form without any additional steps. This is because the leftmost bit is always 0 for positive numbers in the two's complement system.

Overall, your understanding of the two's complement system is correct. It is an important concept in binary arithmetic and is commonly used in computer systems for representing both positive and negative numbers.
 

1. What is the Two's Complement System?

The Two's Complement System is a mathematical representation of negative numbers in binary form. It is a way of storing and manipulating negative numbers in a computer system.

2. How does the Two's Complement System work?

In the Two's Complement System, the most significant bit (leftmost bit) in a binary number represents the sign of the number. If the bit is 0, the number is positive. If the bit is 1, the number is negative. The remaining bits represent the magnitude of the number. To find the value of a negative number in Two's Complement, we invert all the bits and add 1 to the result.

3. What are the advantages of using the Two's Complement System?

The Two's Complement System allows for a more efficient use of memory and simplifies arithmetic operations. It also eliminates the need for a separate representation of negative numbers, making it easier to work with signed and unsigned numbers in the same system.

4. What are the limitations of the Two's Complement System?

One limitation of the Two's Complement System is that it has a limited range of numbers that can be represented. For example, a 32-bit Two's Complement number can represent values from -2,147,483,648 to 2,147,483,647. Another limitation is that it does not have a unique representation for 0, as both 00000000 and 10000000 can be interpreted as 0 or -128 depending on the context.

5. How is the Two's Complement System used in computer programming?

The Two's Complement System is used in computer programming to perform arithmetic operations, logical operations, and comparisons with signed numbers. It is also used for error detection and correction in communication systems. Additionally, many programming languages use the Two's Complement System as the default representation for signed numbers.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
5
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
4
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
4
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
6
Views
9K
  • Engineering and Comp Sci Homework Help
Replies
6
Views
17K
  • Biology and Medical
Replies
1
Views
2K
Back
Top