AND Rule
Understanding the AND Rule
In detection theory, a single sensor makes a binary decision: target present (H1) or target absent (H0). When multiple sensors observe the same scene, their individual decisions must be fused into a system-level decision. The K-of-N rule framework defines how many of the N sensors must agree before the system declares a detection. The AND Rule is the extreme case where K = N: every sensor must agree.
The statistical consequence is powerful. If each sensor has an independent false alarm probability Pfa, the system false alarm probability under the AND Rule is PfaN. Three sensors each at Pfa = 10−4 yield a system Pfa of 10−12. But the same multiplication applies to detection probability: three sensors at Pd = 0.9 give system Pd = 0.729. This drastic reduction in both metrics makes the AND Rule appropriate only when the cost of a false alarm vastly exceeds the cost of a missed detection.
Pfa,sys = PfaN
Pd,sys = PdN
OR Rule (K = 1):
Pfa,sys = 1 − (1 − Pfa)N
Pd,sys = 1 − (1 − Pd)N
Majority Rule (K = ⌈N/2⌉):
Pfa,sys = Σk=KN C(N,k) × Pfak × (1−Pfa)N−k
Example: N=5, Pfa=10−3, Pd=0.8 → AND: Pfa=10−15, Pd=0.328. Majority (3/5): Pfa=10−8, Pd=0.942.
Fusion Rule Comparison
| Rule | K | System Pfa (Pfa=10−4, N=3) | System Pd (Pd=0.9, N=3) | Best For |
|---|---|---|---|---|
| AND (N-of-N) | 3 | 10−12 | 0.729 | Lowest false alarm priority |
| Majority (2-of-3) | 2 | 3×10−8 | 0.972 | Balanced performance |
| OR (1-of-3) | 1 | 3×10−4 | 0.999 | Highest detection priority |
Frequently Asked Questions
How does the AND Rule differ from the OR Rule?
AND requires all N detectors to agree; OR requires only one. AND drives Pfa down exponentially (PfaN) but also crushes Pd. OR drives Pd up (1−(1−Pd)N) but raises Pfa. With 3 detectors at Pfa=10−4, AND gives 10−12 while OR gives 3×10−4.
When should you use the AND Rule versus majority voting?
Use AND when false alarms are extremely costly (nuclear warning, security screening). Use majority (K = N/2) for balanced performance. Use OR when missed detections are costly and false alarms are manageable (collision avoidance, medical screening).
How is the AND Rule applied in radar binary integration?
Binary integration applies K-of-M thresholding across M pulses. AND (M-of-M) gives Pfa = (single-pulse Pfa)M, essentially zero for M≥5, but detection probability drops to PdM which is near zero for weak targets. M/2-of-M voting is the practical standard.