Skip to main content

NUMBER SYSTEM

 NUMBER SYSTEM 

When we type some letters or words, the computer translates them in numbers as computers can understand only numbers. A computer can understand the positional number system where there are only a few symbols called digits and these symbols represent different values depending on the position they occupy in the number.

The value of each digit in a number can be determined using −

  • The digit

  • The position of the digit in the number

  • The base of the number system (where the base is defined as the total number of digits available in the number system)


DIFFERENT TYPE OF NUMBER SYSTEM;


The classification of numbers systems on the basis of base can be understood from the below diagram.

Number System

Number systemBaseUsed digits
Binary20,1
Octal80,1,2,3,4,5,6,7
Decimal100,1,2,3,4,5,6,7,8,9
Hexadecimal160,1,2,3,4,5,6,7,8,9, A,B,C,D,E,F     

    

1.BINARY NUMBER SYSTEM;

                 The modern computers do not process the decimal numbers.

       . They only work with a binary number system.

       . It uses only two digits 0 and 2. 

       . The base of binary number system is 2  because it has only two digits.  

       . The digital electronics equipment's are works on the binary number system.


EXAMPLE;

Decimal and Binary Number | Notes, Videos, QA and Tests | Grade 10>Computer  Science>Computer Number System | Kullabs


2.DECIMAL NUMBER SYSTEM;

         .The number system is having digit 0,1,2,3,4,5,6,7,8,9.

         . Total ten digits are involved. So that base of the decimal number system is 10.


EXAMPLE;1 Machine Architecture and Number Systems Topics Major Computer Components  Bits, Bytes, and Words The Decimal Number System The Binary Number System  Converting. - ppt download
3.OCTAL NUMBER SYSTEM;

           .Uses eight digits 0,1,2,3,4,5,6,7. 

          . Also called '' base 8 number system''

          . Each position in an octal number represents a 0 power of the base (8)


EXAMPLE; 

What is Octal Number System? - Definition, Octal to Decimal & Decimal to  Octal Conversion - Circuit Globe

  

4.HEXADECIMAL NUMBER SYSTEM;

           .These4 numbers are used extensively in microprocessor.

              .The hexadecimal number system has a base of 16.

               .It consists of the following sixteen numbers of digits ( 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F )

               .Letters represents number starting from

                                        A=10
                                        B=11
                                        C=12
                                        D=13
                                        E=14
                                        F=15
                                        G=16

EXAMPLE;

 What are binary and hexadecimal number systems? | Wirebiters 




A link that describes the above;

                https://youtu.be/32Kwy3GWQWc

  

                               or


Comments

Popular posts from this blog

NUMBER SYSTEM CONVERSION

NUMBER BASE CONVERSION                     In our previous section, we learned different types of number systems such as binary, decimal, octal, and hexadecimal. In this part of the tutorial, we will learn how we can change a number from one number system to another number system. As, we have four types of number systems so each one can be converted into the remaining three systems. There are the following conversions possible in Number System Binary to other Number Systems. Decimal to other Number Systems. Octal to other Number Systems. Hexadecimal to other Number Systems.                                                                                                          ...

SEQUENTIAL GATES

 SEQUENTIAL GATES INTRODUCTION;                      A Sequential  logic circuits  is a form of the binary circuit; its design employs one or more inputs and one or more outputs, whose states are related to some definite rules that depend on previous states. Both the inputs and outputs can reach either of the two states: logic 0 (low) or logic 1 (high). In these circuits, their output depends, not only on the combination of the logic states at its inputs but moreover on the logic states that existed previously. In other words, their output depends on a SEQUENCE of the events occurring at the circuit inputs. Examples of such circuits include clocks, flip-flops, bi-stables, counters, memories, and registers. The actions of the circuits depend on the range of basic sub-circuits. SEQUENTIONAL LOGIC CIRCUIT;                            Sequential Logic C...

BINARY ARITHMETIC

 BINARY ARITHMETIC                         Binary arithmetic  is used in digital systems mainly because the numbers (decimal and floating-point numbers) are stored in  binary  format in most computer systems. All  arithmetic  operations such as addition, subtraction, multiplication, and division are done in  binary  representation of numbers.       1) BINARY ADDITION; Binary Addition   It is a key for  binary  subtraction, multiplication, division. There are  four rules of  binary addition .  In fourth case, a  binary addition  is creating a sum of (1 + 1 = 10) i.e. 0 is written in the given column and a carry of 1 over to the next column.     Basic  arithmetic  operations like  addition , subtraction, multiplication, and division, play  an important role in mathematics .        ...