Assume we have a negative number X.
To convert X from binary to Radix Complement we perform two's complement (Complement on the digits) + 1.
Now to convert X from Radix Complement we can perform two's complement again to get back to binary.
For example : $$(5)_{10} = (00101)_{2}$$ $$(-5)_{10} = (\overline{(00101)} +1)_{2} = (11010 + 1) = (11011)_{RC}$$
Now let's go back : $$(11011)_{RC} = (\overline{(11011)} + 1) = (00100 + 1) = (00101) = (5)_{10}$$
But now lets try to write this as identity : $$ X = \overline{(\overline{X} + 1)} + 1 = (\overline{\overline{X}} * 0) + 1 = (X * 0) + 1 = 0 + 1 = 1 \neq X $$
Am I comparing apples and oranges ?
Where is my mistake ?