When doing this for a negative number, like -213 for example, I successfully found the answer by doing $(2^9 + -327)$ => $(2^9 - 213)$ taking the result of that, and using the division by 2 method, adding on leading zeros to make it ten bits, the final left most bit being a 1 since it's negative. When I tried to do something similar with a positive number trying ($2^9 + \text{posnumber}$) and then continuing on the same as before, I wasn't able to get the correct answer. I thought maybe I had to subtract in both cases and just make the leading digit 0 for it being positive but that wasn't giving me the right answer either.
So can someone tell me how I'm supposed to handle these and explain this better?
(I know you can do something with flipping bits and adding one but am not supposed to do that here.)