1’s and 2’s Complement of a Binary Number

  • 1’s Complement of a Binary Number is obtained by inverting the digits of the binary number.

Example: Find the 1’s complement of (10011)2.

Solution:

Given Binary Number is (10011)2

Now, to find its 1’s complement, we have to invert the digits of the given number.

Thus, 1’s complement of (10011)2 is (01100)2

  • 2’s Complement of a Binary Number is obtained by inverting the digits of the binary number and then by adding 1 to the least significant bit.

Example: Find the 2’s complement of (1011)2.

Solution:

Given Binary Number is (1011)2

To find the 2’s complement, first find its 1’s complement, i.e., (0100)2

Now, by adding 1 to the least significant bit, we get (0101)2

Hence, the 2’s complement of (1011)2 is (0101)2

Binary Number System

Binary Number System is a number system that is used to represent various numbers using only two symbols “0” and “1”. The word binary is derived from the word “bi” which means two. Hence, this number system is called Binary Number System. Thus, the binary number system is a system that has only two symbols.

There are generally various types of number systems and among them the four major ones are,

  • Binary Number System (Number system with Base 2)
  • Octal Number System (Number system with Base 8)
  • Decimal Number System (Number system with Base 10)
  • Hexadecimal Number System (Number system with Base 16)

Here, we are only going to learn about Binary Number System. This number system is very useful for explaining tasks to the computer. In the Binary Number System, we have two states “0” and “1” and these two states are represented by two states of a transistor. If the current passes through the transistor then the computer reads “1” and if the current is absent from the transistor then it read “0”. Thus, alternating the current the computer reads the binary number system. Each digit in the binary number system is called a “bit”. 

In this article, we will learn about the Binary Number System, the Conversion of the Binary Number System, the Binary Table, the Operation of Binary Numbers, Examples, and others in detail.

Table of Content

  • Binary Number System
  • Binary Number Table
  • Binary to Decimal Conversion
  • Decimal to Binary Conversion
  • Arithmetic Operations on Binary Numbers
  • 1’s and 2’s Complement of a Binary Number
  • Uses of Binary Number System
  • Binary Number System Example

Similar Reads

Binary Number System

Binary Number System is the number system in which we use two digits “0” and “1” to perform all the necessary operations. In the Binary Number System, we have a base of 2. The base of the Binary Number System is also called the radix of the number system....

Binary Number Table

Decimal Number Binary Number Decimal Number Binary Number 1 001 11 1011 2 010 12 1100 3 011 13 1101 4 100 14 1110 5 101 15 1111 6 110 16 10000 7 111 17 10001 8 1000 18 10010 9 1001 19 10011 10 1010 20 10100...

Binary to Decimal Conversion

A binary number is converted into a decimal number by multiplying each digit of the binary number by the power of either 1 or 0 to the corresponding power of 2. Let us consider that a binary number has n digits, B = an-1…a3a2a1a0. Now, the corresponding decimal number is given as...

Decimal to Binary Conversion

A decimal number is converted into a binary number by dividing the given decimal number by 2 continuously until we get the quotient as 1, and we write the numbers from downwards to upwards....

Arithmetic Operations on Binary Numbers

We can easily perform various operations on Binary Numbers. Various arithmetic operations on the Binary number include,...

1’s and 2’s Complement of a Binary Number

1’s Complement of a Binary Number is obtained by inverting the digits of the binary number....

Uses of Binary Number System

Binary Number Systems are used for various purposes and the most important use of the binary number system is,...

Binary Number System Example

Example 1: Convert Decimal Number (98)10 into Binary....

FAQs on Binary Number System

What is a Binary Number System?...