From 844714e1d6fc43bb1f0e0dc78d1a3e94a179885e Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Wed, 5 Feb 2020 08:50:19 -0800 Subject: [PATCH] Add B is odd column to Base 2 example --- README.MD | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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: