diff --git a/README.MD b/README.MD index 0a8a88d..fe77bef 100644 --- a/README.MD +++ b/README.MD @@ -79,13 +79,13 @@ In Base 10: In Base 2: ``` - A B Sum = 0 - 01010110 00111001 + A = 00000001010110 (b is odd) - 010101100 00011100 = 00000001010110 - 0101011000 00001110 = 00000001010110 - 01010110000 00000111 + A = 00001100000110 (b is odd) - 010101100000 00000011 + A = 00100001100110 (b is odd) - 0101011000000 00000001 + A = 01001100100110 (b is odd) + A B B Odd? Sum = 0 + 01010110 00111001 Yes + A = 00000001010110 + 010101100 00011100 No = 00000001010110 + 0101011000 00001110 No = 00000001010110 + 01010110000 00000111 Yes + A = 00001100000110 + 010101100000 00000011 Yes + A = 00100001100110 + 0101011000000 00000001 Yes + A = 01001100100110 ``` In Base 8: