Chapter 2 Binary Values And Number Systems Flashcards
(Number Categories)
What is a natural number?
Includes the number 0 or any number obtained by repeatedly adding 1 to this number.
(Number Categories)
What is a integer
Is any natural number or any negative numbers?
(Number Categories)
What is rational number?
Is an integer or the quotient of two integers - that is any value that can be expressed by a faction.
Define “Number System”
The number system is simply a system to represent or express numbers. There are various types of number systems.
What does the base determine?
The base of a number system determines the total number of digits and value of digit position.
What digit does every base begin with?
0
What number system includes the digits 0-9
Decimal System
What is the number system with base 2.
Binary System
What numbers are inculded the Octal System?
0 - 7
What base is the hexidecimal system?
Base 16
Define Positional Notation
The base of the number of digits and value digit position.
binary addition- what is 0+0+?
0+1=?
1+0=?
1+1=?
Binary addition:
* 0+0=0,
* 0+1=1,
* 1+0=1,
* 1+1=0 with carry of 1
binary addition what is
1+1+1=?
1 with a carry 1
how do you convert 642 to base 8
642 to base 8
2x8(0) = 2 x 1 = 2
4x8(1) = 4 x 8 = 32
6x8(2) = 6 x 64 = 384
base 10 = 418
binary subtracting
0-0=?
0-1 = ?
1-0=?
1-1=?
binary subtracting
0-0=0
0-1 = -1 but you have to borrow 2 from ahead
1-0=1
1-1=0