I have a quick question how do you do the two complement system,
For example say I have in two complement a $6$ which is $0110$ and $3$ which is $0011$ and I want to add
$6+(-3)$ I know what five is in binary but how do I find $-3$ is so that I can add them. That is my question I heard I have to find the complement and add 1.
Yes, you can "invert" the digits of 3 ($0 \to 1, 1 \to 0$) and ADD 1 to obtain -3 in two's complement. So 0011 is the base two representation of 3, and its complement (-3) is therefore 1100 + 1 = 1101.
Hence $6 + (-3) = 0110 + 1101 = 0011 = 3$ as desired.