To obtain 2's complement representation of decimal -13 (negative thirteen)
Take representation of positive 13:
01101
Compute complement by flipping each bit:
10010
Add 1:
10011 (decimal -13)
To go back from -13 to positive 13, execute the same exact steps:
Take representation of negative 13:
10011
Invert each bit:
01100
01101 (decimal 13)