Add B is odd column to Base 2 example

This commit is contained in:
michaelangel007 2020-02-05 08:50:19 -08:00
parent 97e13baa59
commit 844714e1d6
1 changed files with 7 additions and 7 deletions

View File

@ -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: