I'm stucky multiplying 7 by -11 and wondering where I've gone wrong.
7 in binary is 00111
11 is 01011, hence -11 comes to 10101, because of swapping the 1's/0's and adding 1 at the end.
hence 7*-11 =
10101
* 111
-----
10101
101010
1010100
-------
10010011
i sense i've gone wrong already, but carrying on:
i ignore the first 3 digits because they've carried over, leaving "10011" which comes to -16+2+1 = -13, not the -77 i was expecting
i've followed everything in the instructions, anyone care to tell me where i've gone wrong? thanks