What is the binary representation of 0.00011001100110011001101 − 0.0000000000000000000000000[1100]? Both numbers are represented using fractional binary number representation.
The solution given in my textbook is 0.0000000000000000000000000[1100].
I've tried to do
0.00011001100110011001101 - 0.000[1100]
following the binary subtraction rule (1 - 0 = 1, 0 - 1 = 1, 1 - 1 = 0, 0 - 0 = 0), the answer I got was nothing like the given solution. What is the correct way to do this kind of subtraction?
Note: This problem originates from CSAPP 3rd Practice Problem 2.51.