Digital Circuits - Number Systems (2024)

Digital Circuits - Number Systems (1)

  • Digital Circuits Tutorial
  • Home
  • Number Systems
  • Base Conversions
  • Binary Numbers Representation
  • Signed Binary Arithmetic
  • Codes
  • Boolean Algebra
  • Canonical and Standard Forms
  • K-Map Method
  • Quine-McCluskey Tabular Method
  • Logic Gates
  • Two-Level Logic Realization
  • Combinational Circuits
  • Arithmetic Circuits
  • Decoders
  • Encoders
  • Multiplexers
  • De-Multiplexers
  • Programmable Logic Devices
  • Threshold Logic
  • Sequential Circuits
  • Latches
  • Flip-Flops
  • Conversion of Flip-Flops
  • Shift Registers
  • Application of Shift Registers
  • Counters
  • Finite State Machines
  • Algorithmic State Machine Charts
  • Digital Circuits Resources
  • Digital Circuits - Quick Guide
  • Digital Circuits - Useful Resources
  • Digital Circuits - Discussion
  • Selected Reading
  • UPSC IAS Exams Notes
  • Developer's Best Practices
  • Questions and Answers
  • Effective Resume Writing
  • HR Interview Questions
  • Computer Glossary
  • Who is Who

'; var adpushup = adpushup || {}; adpushup.que = adpushup.que || []; adpushup.que.push(function() { adpushup.triggerAd(ad_id); });

If base or radix of a number system is ‘r’, then the numbers present in that number system are ranging from zero to r-1. The total numbers present in that number system is ‘r’. So, we will get various number systems, by choosing the values of radix as greater than or equal to two.

In this chapter, let us discuss about the popular number systems and how to represent a number in the respective number system. The following number systems are the most commonly used.

  • Decimal Number system
  • Binary Number system
  • Octal Number system
  • Hexadecimal Number system

Decimal Number System

The base or radix of Decimal number system is 10. So, the numbers ranging from 0 to 9 are used in this number system. The part of the number that lies to the left of the decimal point is known as integer part. Similarly, the part of the number that lies to the right of the decimal point is known as fractional part.

In this number system, the successive positions to the left of the decimal point having weights of 100, 101, 102, 103 and so on. Similarly, the successive positions to the right of the decimal point having weights of 10-1, 10-2, 10-3 and so on. That means, each position has specific weight, which is power of base 10

Example

Consider the decimal number 1358.246. Integer part of this number is 1358 and fractional part of this number is 0.246. The digits 8, 5, 3 and 1 have weights of 100, 101, 102 and 103 respectively. Similarly, the digits 2, 4 and 6 have weights of 10-1, 10-2 and 10-3 respectively.

Mathematically, we can write it as

1358.246 = (1 × 103) + (3 × 102) + (5 × 101) + (8 × 100) + (2 × 10-1) +

(4 × 10-2) + (6 × 10-3)

After simplifying the right hand side terms, we will get the decimal number, which is on left hand side.

Binary Number System

All digital circuits and systems use this binary number system. The base or radix of this number system is 2. So, the numbers 0 and 1 are used in this number system.

The part of the number, which lies to the left of the binary point is known as integer part. Similarly, the part of the number, which lies to the right of the binary point is known as fractional part.

In this number system, the successive positions to the left of the binary point having weights of 20, 21, 22, 23 and so on. Similarly, the successive positions to the right of the binary point having weights of 2-1, 2-2, 2-3 and so on. That means, each position has specific weight, which is power of base 2.

Example

Consider the binary number 1101.011. Integer part of this number is 1101 and fractional part of this number is 0.011. The digits 1, 0, 1 and 1 of integer part have weights of 20, 21, 22, 23 respectively. Similarly, the digits 0, 1 and 1 of fractional part have weights of 2-1, 2-2, 2-3 respectively.

Mathematically, we can write it as

1101.011 = (1 × 23) + (1 × 22) + (0 × 21) + (1 × 20) + (0 × 2-1) +

(1 × 2-2) + (1 × 2-3)

After simplifying the right hand side terms, we will get a decimal number, which is an equivalent of binary number on left hand side.

Octal Number System

The base or radix of octal number system is 8. So, the numbers ranging from 0 to 7 are used in this number system. The part of the number that lies to the left of the octal point is known as integer part. Similarly, the part of the number that lies to the right of the octal point is known as fractional part.

In this number system, the successive positions to the left of the octal point having weights of 80, 81, 82, 83 and so on. Similarly, the successive positions to the right of the octal point having weights of 8-1, 8-2, 8-3 and so on. That means, each position has specific weight, which is power of base 8.

Example

Consider the octal number 1457.236. Integer part of this number is 1457 and fractional part of this number is 0.236. The digits 7, 5, 4 and 1 have weights of 80, 81, 82 and 83 respectively. Similarly, the digits 2, 3 and 6 have weights of 8-1, 8-2, 8-3 respectively.

Mathematically, we can write it as

1457.236 = (1 × 83) + (4 × 82) + (5 × 81) + (7 × 80) + (2 × 8-1) +

(3 × 8-2) + (6 × 8-3)

After simplifying the right hand side terms, we will get a decimal number, which is an equivalent of octal number on left hand side.

Hexadecimal Number System

The base or radix of Hexa-decimal number system is 16. So, the numbers ranging from 0 to 9 and the letters from A to F are used in this number system. The decimal equivalent of Hexa-decimal digits from A to F are 10 to 15.

The part of the number, which lies to the left of the hexadecimal point is known as integer part. Similarly, the part of the number, which lies to the right of the Hexa-decimal point is known as fractional part.

In this number system, the successive positions to the left of the Hexa-decimal point having weights of 160, 161, 162, 163 and so on. Similarly, the successive positions to the right of the Hexa-decimal point having weights of 16-1, 16-2, 16-3 and so on. That means, each position has specific weight, which is power of base 16.

Example

Consider the Hexa-decimal number 1A05.2C4. Integer part of this number is 1A05 and fractional part of this number is 0.2C4. The digits 5, 0, A and 1 have weights of 160, 161, 162 and 163 respectively. Similarly, the digits 2, C and 4 have weights of 16-1, 16-2 and 16-3 respectively.

Mathematically, we can write it as

1A05.2C4 = (1 × 163) + (10 × 162) + (0 × 161) + (5 × 160) + (2 × 16-1) +

(12 × 16-2) + (4 × 16-3)

After simplifying the right hand side terms, we will get a decimal number, which is an equivalent of Hexa-decimal number on left hand side.

Advertisem*nts

';adpushup.triggerAd(ad_id); });

Digital Circuits - Number Systems (2024)

FAQs

Digital Circuits - Number Systems? ›

All digital circuits and systems use this binary number system. The base or radix of this number system is 2. So, the numbers 0 and 1 are used in this number system. The part of the number, which lies to the left of the binary point is known as integer part.

What numbering system is digital electronics based on? ›

The binary number system was refined by Gottfried Wilhelm Leibniz (published in 1705) and he also established that by using the binary system, the principles of arithmetic and logic could be joined.

What are the four common numbering systems of digital systems? ›

The most commonly used number system is the decimal positional numeral system. Computers use decimal, binary, octal, and hexadecimal number systems. The hexadecimal number system uses 6 letters (A, B, C, D, E, and F) in addition to 10 digits from 0 to 9. The base of the hexadecimal number system is 16.

Which numbering system is used in digital technology? ›

The binary system is extensively used by digital systems like digital computers which operate on binary information.

What is the number system that is used in digital communications? ›

At the most basic level, computers use the binary system for data representation due to their electronic design - the '0's and '1's represent off and on states respectively.

Which number system is used most often in digital electronics? ›

A computer can understand only a few symbols called digits and these symbols describe different values depending on the position they hold in the number. In general, the binary number system is used in computers.

What numbering system do electronic devices today use? ›

The binary system, which is popularly known because it is the numbering system used by computers and other electronic devices, is a base 2 system.

Which numbering system is the most commonly used system? ›

The most commonly used numeral system is the decimal positional numeral system, the decimal referring to the use of 10 symbols—0, 1, 2, 3, 4, 5, 6, 7, 8, 9—to construct all numbers.

What is the oldest number system in the world? ›

The oldest number system in the world is the Babylonian number system. This system used a series of wedge marks on cuneiform tablets to represent numbers.

What is the most common numbering system? ›

The most commonly used system of numerals is decimal. Indian mathematicians are credited with developing the integer version, the Hindu–Arabic numeral system. Aryabhata of Kusumapura developed the place-value notation in the 5th century and a century later Brahmagupta introduced the symbol for zero.

What is number system in digital circuits? ›

The binary number system uses only 2 symbols (0 and 1) to represent binary numbers. All modern digital devices like computers, combinational circuits, sequential circuits, etc. use the binary number system to operate.

What base number system do computers use? ›

The binary number system is the base of all computing systems and operations.

Which of the digital systems usually operate on number system? ›

Answer. Explanation: The digital systems usually operate on binary number system.

Which number system do all digital computers use? ›

Digital computers use the binary number system, which has two digits: 0 and 1. A binary digit is called a bit. Information is represented in digital computers in groups of bits.

Which number system is most widely used by a digital computer? ›

Then binary numbers are commonly used in digital and computer circuits and are represented by either a logic “0” or a logic “1”. Binary numbering systems are best suited to the digital signal coding of binary, as it uses only two digits, one and zero, to form different figures.

What numbering system does digital audio use? ›

Binary Integer Fixed-Point Numbers.

What is the number system for digital computers? ›

Then binary numbers are commonly used in digital and computer circuits and are represented by either a logic “0” or a logic “1”. Binary numbering systems are best suited to the digital signal coding of binary, as it uses only two digits, one and zero, to form different figures.

Which number system is uses in digital processing system? ›

A computer system uses bits (binary digits) to denote values. It uses the binary number system to store data. Each digit (0 or 1) is a bit thus the binary number 10110110 is a binary number having 8 bits. The binary number system with only two independent digits, 0 and 1, is a base-2 number system.

How are numbers represented in digital systems? ›

Digital devices represent numeric data using the binary number system, also called base 2. The binary number system only has two digits: 0 and 1.

References

Top Articles
Latest Posts
Article information

Author: Margart Wisoky

Last Updated:

Views: 5465

Rating: 4.8 / 5 (78 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Margart Wisoky

Birthday: 1993-05-13

Address: 2113 Abernathy Knoll, New Tamerafurt, CT 66893-2169

Phone: +25815234346805

Job: Central Developer

Hobby: Machining, Pottery, Rafting, Cosplaying, Jogging, Taekwondo, Scouting

Introduction: My name is Margart Wisoky, I am a gorgeous, shiny, successful, beautiful, adventurous, excited, pleasant person who loves writing and wants to share my knowledge and understanding with you.