Studying for A level computing we are repeatedly told that a negative normalised floating point binary number is not normalised if it starts with 11 by textbooks, exam questions and teachers.
In the case of minus 11 in twos compliment it can be written as 10101 and so the number in normalised form would be 10101 00100 this follows the rule of no 11 at the beginning of the number
But for minus 1 the twos compliment version is 11111 and so what would the normalised version be, 11111 00100 works but breaks the rule, 011111 00101 makes the number positive and uses too many bits, 10111 00100 makes minus 9 instead of minus 1
Basically why can't the number begin with 11 and how would minus one be represented with an explanation?