Number Bases Equations. Flashcards
Expanded decimal notation:
356.12 =
3x10^2 + 5x10^1 + 6x10^0 + 1x10^-1 + 2x10^-2
Expanded Binary Notation:
101.01 =
1x2^2 + 0x2^1 + 1x2^0 + 0x2^-1 + 1x2^-2
Decimal to Binary:
315 =
100111011
Decimal to Binary:
0.625 =
0.101
Decimal to Binary:
104.15625 =
1101000.00101
Decimal to Binary:
19.1 =
10011.0|0011| repeating bars.
Hexadecimal to Decimal:
E5B.F2 =
Ex16^2 + 5x16^1 + Bx16^0 + Fx16^-1 + 2x16^-2
14x16^2 + 5x16^1 + 11x16^0 + 15x16^-1 + 2x16^-2
Binary to Hexadecimal:
1100101100011101010 =
(Divide this up into groups of four starting on the right, and make a 4-bit binary table)
= 658EA
Binary to Hexadecimal:
101110101101.0001111
= BAD.1E
Hexadecimal to Binary:
3C.A29 =
(Like in Binary to Hexadecimal use the 4-bit binary table)
111100.101000101001
Find the One and Twos complement….?
1110
0001
0010 (Remember to carry the 1)
Find the One and Twos complement…?
11100
00011
00100
Addition of Binary Numbers…?
10011 + 11001
= 101100
Addition of Binary Numbers…?
10111 + 11011
= 110010
Addition of Binary Numbers…?
110111 + 1110
= 1010101
Subtraction of Binary Numbers…?
10110 - 1101
= (See PDFs)
Subtraction of Binary Numbers…?
100101 - 101110
= (See PDFs)
Subtraction of Binary Numbers…?
110 - 110101
= (See PDFs)
Modulo
(Look at tables in book from page 28 to page 29 still learning)
Write an algorithm to convert a decimal number between 0 and 1 to binary…?
first step Input the number 2 3 4 5 6
Draw a structure diagram for an algorithm for converting a decimal number between 0 and 1 to binary…?
(do it)
BEDMAS
12+3x4 =
24
BEDMAS
-2^4 / 8 * 5 =
10
BEDMAS
4 * (-3^2) / (2 * 5^-1) + 6 * (2 * 4^-2) =
90 3/4
BEDMAS
-3^2 =
9
SCIENTIFIC NOTATION:
93000000
9.3 x 10^3
SCIENTIFIC NOTATION:
14.689
1.4689 x 10^1
SCIENTIFIC NOTATION:
-0.003164
-3.164 x 10^-3
SCIENTIFIC NOTATION:
-6381.765
-6.381765 x 10^3
NORMALIZED EXPONENTIAL FORMAT:
93000000
0.93 x 10^8
NORMALIZED EXPONENTIAL FORMAT:
10111.011
.10111011 x 2^5
NORMALIZED EXPONENTIAL FORMAT:
0.000257
0.257 x 8^-3
NORMALIZED EXPONENTIAL FORMAT:
-6381.765
-0.6381765 x 10^4
Write the number 21.78 in its expanded notation…?
2x10^1 + 1x10^0 + 7x10^-1 + 8x10^-2
Write the number 3/8 in its expanded decimal notation…?
3/8 = 0.375 Answer = 3x10^-1 + 7x10^-2 + 5x10^-3
find the decimal equivalent of the binary numbers (a) 1011.011 and (b) 10.101
a) = 11.375
b) = 2.625