Binary number representations

 

CS 231: Introduction to Programming
Lecture #2: Numbers, numerals and bases

Binary number representations
bullet Ones and zeros many different kinds of information can be represented in "binary" form, but the medium of representation is always the same: sequences of bits (ones and zeros)

Control bar


















































 

CS 231: Introduction to Programming
Lecture #2: Numbers, numerals and bases

Binary number representations
bullet Ones and zeros
bullet Counting with sequences of bits a sequence of bits of length k can "count" or represent up to 2k different things; i.e., there are 2k different possible combinations of 1s and 0s

Control bar


















































 

CS 231: Introduction to Programming
Lecture #2: Numbers, numerals and bases

Binary number representations
bullet Ones and zeros
bullet Counting with sequences of bits
bullet Representing choices conversely, we need about log2 (n) bits to represent n different things ("about" here means round up to the nearest whole bit)

Control bar


















































 

CS 231: Introduction to Programming
Lecture #2: Numbers, numerals and bases

Binary number representations
bullet Ones and zeros
bullet Counting with sequences of bits
bullet Representing choices
bullet Review laws of logarithms and exponents Here are a few handy laws to remember when working with bases, logs and powers

nk x nh = n(k+h)

(nk)h = n(k x h)

logn(p x q) = logn(p) + logn(q)

logn(pk) = k logn(p)

logn(p) = logm(p) x logn(m)

logn(p) = logm(p) / logm(n)

Control bar