Converting to Two's Complement
Converting positive numbers to negative using two's complement follows a specific three-step process that's actually quite manageable once you practise it.
Start with your positive binary number written out completely. Then, working from right to left, copy each digit exactly until you reach the first 1 - copy that 1 as well.
From that point onwards, flip every remaining bit. All 0s become 1s, and all 1s become 0s. The result is your negative number in two's complement form.
Memory Trick: Think "copy to the first 1, then flip the rest" - this method works every time and saves you from making mistakes!
This system makes computer arithmetic work seamlessly. Unlike sign and magnitude, you can add and subtract two's complement numbers using the same circuits, which is why virtually all modern computers use this method.