Chapter 5 - Computer Number Systems
Chapter 5 - Computer Number Systems
Digital circuits produce discrete outputs, distinct circuits have individual components e.g.
resistors, and transistors. Hybrids circuits contain both integrated and discrete components.
Digital circuits are often called logic circulatory because the level of each output voltage
depends on several input voltages and the inputs voltage may appear in many different
combinations.
The base of a number system is indicated by a subscript (decimal number) and this will be
followed by the value of the number. For example (952)10, (456)8, (314)16
Numbers are difficult to define, they are simply a symbolic representation of ideas; number
systems are positional in nature and therefore a symbolic of numbers has weights.
Each digit in a base ten number represents units ten times the units of the digit to its right. For
example-
954210 = 9000 + 500 + 40 +2 = (9 × 103) + (5 × 102) + (4 × 101) + (2× 100)
13010 = 100 + 30 + 0 = (1x102) + (3x101) + (0x100)
Because we are dealing with a base-10 system, each digit to the left of another digit is weighted
ten times higher. Using exponential notation, we can imagine the number 10 as representing:
Remainder
2 45 1
2 22 0
2 11 1
2 5 1
2 2 0
2 1 1
0
Remainder
8 45 5
8 5 5
8 0
Conversions of Decimal Fractions to Octal Fractions –We follow the same steps of
conversions of decimal fractions to binary fractions. Here we multiply the fraction by 8 instead
of 2.
Example- Find the octal equivalent of (0.75)10.
Number (to be recorded)
0.75 × 8 = 6.00 6
Binary Number 1 0 1 1 0 1
Wt. of Each bit 25 24 23 22 21 20
Weighted Value 1 x 25 0 x 24 1 x23 1 x 22 0 x 21 1 x 20
Solved 32 0 8 4 0 1
Multiplication
Binary Number 1 0 1 1 0 1 1 1
Wt. of Each bit 25 24 23 22 21 20 2-1 2-2
Weighted 1 x 25 0 x 24 1 x23 1 x 22 0 x 21 1 x 20 1 x 2-1 1 x 2-2
Value
Solved 32 0 8 4 0 1 0.5 0.25
Multiplication
Thus (55)8 = 40 + 5.
= 4510
Octal Number 5 5 6
Wt. of Each bit 81 80 8-1
Weighted Value 5 x 81 5 x 80 6 x 8-1
Solved Multiplication 40 5 0.75
Octal Number 5 5 6
Binary Number 101 101 110