★ number systems

denary (0 - 9): 10 digits, the one we commonly use

binary (0 and 1): 2 digits, the only one used to store data on computers

hexadecimal (0 - 9, A - F): 16 digits, easiest way

binary conversions: n-bits is $2^n$ possible combinations

★ binary addition

rules of binary addition:

overflow: this occurs when there are not enough bits to store the data (the computer does not give an error message)

★ signed binaries

signed binaries: often used to represent negative numbers in binary

the leftmost bit is called the most significant bit (MSB)

the rightmost bit is called the least significant bit (LSB)

☆ sign & magnitude