In sign magnitude representation for a 4-bit binary number:
- The first bit (most significant bit) represents the sign: 0 for positive, 1 for negative.
- The remaining bits represent the magnitude (absolute value) of the number.
For $-1$:
- Sign bit = 1 (negative)
- Magnitude = binary of 1 = 001 (3 bits)
Combining: Sign bit (1) + Magnitude (001) = 1001
Thus, the sign magnitude representation of $-1$ is $\mathbf1001$.