Everyday Examples:Automatic Night Light
The light turns on when it’s dark (i.e., when the light sensor detects no light).
The NOT gate inverts the sensor signal:
Light detected = OFF, so NOT(light) = ON → light turns on in the dark.
Refrigerator Door Alarm
Alarm sounds when door is NOT closed.
A NOT gate inverts the signal from the door switch.
Toilet Cistern Warning Light
Light comes on if the water level is not full (i.e., NOT full = light on).
Technical / Digital Examples:Digital Logic Control
Used to invert signals in CPUs, microcontrollers, and logic circuits.
Logic Locking
Access granted only if a condition is NOT true (e.g., NOT wrong password).
Robotics – Avoidance Logic
Robot moves forward if an obstacle is NOT detected.
Fan Control Systems
Fan stays on if temperature is NOT cool enough (temp low = 0 → NOT(0) = 1 → fan on).
Computer Memory Control (Inverted Enable)
Memory chips often use NOT gates to respond only when the chip enable signal is low (active-low logic).