Not — bitwise not
Not( expression )
Nor : Z -> Z
Not( 1 ) = 2
Logical not, inverts each bit. Nor yields the following bitwise combinations: Not(0) = 1, Not(1) = 0. If the expressions are not in Z, they are truncated before the bitwise Not is performed.