NAND2TET UNIT 2 Binary Arithmetic Flashcards
1
Q
In general, let x = xnxn-1 … x0 be a string of digits. The value of x in base b, denoted (x)b, is defined as follows…
A
(xnxn-1 … x0)b = Σxi * bi
Example:
(10011)2 =1*24 + 0*23 +0*22 +1*21 +1*20
= 1*16 + 0*8 + 0*4 + 1*2 + 1*1
=19
2
Q
A
Binary addition
3
Q
A