Binary Arithmetic Operations (How To Do The Basics)

💡
Key learnings:
  • Binary Arithmetic Definition: Binary arithmetic uses only two numbers, 0 and 1, to perform operations like addition, subtraction, multiplication, and division.
  • Binary Addition: Adds two binary numbers from the rightmost bit, carrying over when the sum at a bit is 2.
  • Binary Subtraction: Involves borrowing from a more significant bit when subtracting a larger number from a smaller one at a specific bit.
  • Binary Multiplication: Multiplication in binary follows a simplified process, multiplying each bit separately without carries or borrows.
  • Binary Division: Uses both multiplication and subtraction techniques to determine the quotient and remainder.

The binary number system utilizes just two digits, 0 and 1. This simple system allows for the representation of any number using only these digits. It supports fundamental operations like binary addition, binary subtraction, binary multiplication, or binary division.

Binary arithmetic begins with the least significant bit, which is the rightmost bit. The upcoming sections will detail each operation step-by-step.

Binary Addition

Binary addition involves four straightforward steps, outlined as follows:

  • 0 + 0 = 0
  • 0 + 1 = 1
  • 1 + 0 = 1
  • 1 + 1 = 0 (carry 1 to the next significant bit)

An example will help us to understand the addition process. Let us take two binary numbers 10001001 and 10010101

Binary Arithmetic

The above example of binary arithmetic clearly explains the binary addition operation, the carried 1 is shown on the upper side of the operands.

Binary Subtraction

Here are too four simple steps to keep in memory

  • 0 – 0 = 0
  • 0 – 1 = 1, borrow 1 from the next more significant bit
  • 1 – 0 = 1
  • 1 – 1 = 0

A binary arithmetic example is given to understand the operation more clearly

Binary Subtraction

The operation shows the binary subtraction clearly.

Binary Multiplication

Contrary to what one might think, binary multiplication is simpler than it appears. Here are four easy steps to multiply the binary numbers 10001001 and 10010101:

  • 0×0=0
  • 1×0=0
  • 0×1=0
  • 1×1=1 (there is no carry or borrow for this)

The arithmetic of multiplying binary numbers is shown below:

Binary Multiplication

Binary Division

Binary division combines multiplication and subtraction. An illustrative example will help clarify this operation.

Binary Division

Here 101 is the quotient and 1 is the remainder.

Want To Learn Faster? 🎓
Get electrical articles delivered to your inbox every week.
No credit card required—it’s 100% free.

About Electrical4U

Electrical4U is dedicated to the teaching and sharing of all things related to electrical and electronics engineering.

Leave a Comment