need to check modulo 2 math

Thread Starter

justtrying

Joined Mar 9, 2011
439
I need to make sure that I am doing these modulo 2 arithmetic calc. correctly.

for division, it is 11001000 divided by 1101, i get a remainder of 10 (never got a handle on North American way of organizing it). It does not seem to work out when I try to check my answer...
 

Attachments

Georacer

Joined Nov 25, 2009
5,182
I 'd say you messed that up a bit.

Here's the correct course of action:
Rich (BB code):
11001000 | 1101
---------------
11001    | 1111
-1101    |
-----    |
011000   |
- 1101   |
------   |
 010110  |
 - 1101  |
 ------  |
  010010 |
  - 1101 |
  ------ |
   01101 |
 
Top