-12710 ... 0 ... +12710
There are problems with sign-magnitute representation of integers. Let us use 8-bit sign-magnitude for examples.
The leftmost bit is used for the sign,
which leaves seven bits
for the magnitude.
The magnitude
uses -12710, ... -0, 0, ... 12710
.
One pattern corresponds to "minus zero", 1000 0000. Another corresponds to "plus zero", 0000 0000.
There are several problems with sign-manitude. It works well for representing positive and negative integers (although the two zeros are bothersome). But it does not work well in computation. A good representation method (for integers or for anything) must not only be able to represent the objects of interest, but must also support operations on those objects.
This is what is wrong with Roman Numerals: they can represent any positive integer you want, but they are very, very poor when used in computation.
Can the "binary addition algorithm" be used with sign-magnitude representation? Try adding +16 with -24:
0001 0000 16 1001 1000 -24