|
|
|
We use digits on a daily basis to quantify and control the things in our lives.
We live in a DECIMAL world - base 10 - with digits 0-9.
For example: To make license plates that only have 3 DECIMAL (0-9) digits, we could make 1000 unique plates (000-999) which is 10^3. With computers, we typically put digits together for a wide array of uses, but the computer uses BINARY digits (0-1). For example, representing colors: How many colors could we represent with 3 BINARY digits? We could represent 8 colors (000-111) which is 2^3. It is good to develop an intuitive sense of the ranges associated with n bits.
How many colors can be represented with 4 bits? 8? 16? 24? 32? Tradeoffs when representing images? How many bytes of memory can be addressed with 4 bits? 8 ? 16? 20? 30? 32? 64? Addresses are how long in most machines? Each address is the address of a what? |