Please enable JavaScript.
Coggle requires JavaScript to display documents.
02: 09/17 (02 Number System (Part (Radix Point (AKA Decimal-Point),…
02: 09/17
02 Number System
Base
Positional
Decimal (10)
N_max=(10^k)-1
Binary (2)
AKA Bits
0, 1
N_max=(2^k)-1
Hexadecimal (16)
0, 1, 2, ..., A, B, C, D, E, F
N_max=(16^k)-1
Octal (8)
0, 1, 2, ..., 8
N_max=(8^k)-1
Non-Positional
Roman
{I, V, X, L, C, D, M} Sequentially to {1, 5, 10, 50, 100, 500, 1000}
Part
Fraction
Radix Point
AKA Decimal-Point
Integer
Conversion
Decimal to Others
Divide Source by Base
Divide Reminder by Base
Number of Digits
k=[log_b N]
03 Data Storage