Pertemuan 3
Pertemuan 3
CHAPTER 3
SCORE SYSTEM
INTRODUCTION
• Mathematics deserves to be called a bridge of science and technology.
For example, the very rapid advancement of space technology today is
due to advances in the field of physics.
• The basic concept of a computer system is the binary system, the
decimal system and the hexadecimal system. In the binary system is a
system that recognizes 2 numbers. The so-called Bit. In the binary
system we will recognize the information element unit system, the time
unit and the character encoding system frequency.
• In the decimal system using base 10, deca means 10. The decimal
number system uses 10 kinds of number symbols, namely: 0, 1, 2, 3, 4,
5, 6, 7, 8 and 9. In the hexadecimal system using base 16, hexa means 6
and deca means 10. The hexadecimal number system uses 16 kinds of
number symbols, namely 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F.
INTRODUCTION
BILANGAN SYSTEM (NUMBER SYSTEM) Is a way to represent the quantity of a
physical item. The number system uses a certain base (base / radix) which
number system always has a Base (radix), absolute digits and positional (place)
remaining quotient
25
2 -------- 1
12
2 -------- 0
6
2 -------- 0
3
2 -------- 1 As a result 2510 = 1100112
1
2 -------- 1
0
BINARY NUMBERS AND DESIMAL NUMBERS
Method 2:
Almost the same as method 1, only done to side and
the results are written from left to right.
25 = (12 X 2) + 1
((6 X 2) + 0) + 1
(((3 X 2) + 0)) + 0 + 1
((((1 X 2) + 1) + 0)) + 1
(((((0 X 2) + 1) + 1) + 0)) + 0 + 1
Method 3:
Just fill in the number 1 below assist numbers so
that when added up a number expected value (in
this case 25). Number these aids are:
16 8 4 2 1 auxiliary numbers
.... ... ... ... ...
Of course the contents are:
16 8 4 2 1 auxiliary numbers
11 0 0 1
BINARY NUMBERS AND DESIMAL NUMBERS