Two vectors are orthogonal — perpendicular, at a right angle — when their dot product equals zero. If u = (1, 0, 1) and v = (0, 1, 0), then u·v = 1×0 + 0×1 + 1×0 = 0, so they are orthogonal.
Now give yourself n vectors, each with d binary (0/1) coordinates. The question is: do any two of them have a dot product of zero?
The brute-force answer checks all pairs and costs time. Every researcher's first instinct is to look for something faster. And for decades no one found it — for good reason.
The Orthogonal Vectors (OV) conjecture states that no algorithm can solve OV in time for any , unless the Strong Exponential Time Hypothesis (SETH) fails. SETH says that SAT on n variables requires roughly time — one of the deepest unproven assumptions in complexity theory. If SETH holds, the quadratic barrier for OV is real, permanent, and load-bearing for dozens of other problems.
What makes OV remarkable is not the problem itself — it is what it implies. Ryan Williams showed in 2004 that if you can beat the quadratic time for OV, you can also beat SETH for SAT. Running the argument the other way: if SETH is true, OV is stuck at quadratic. Every fine-grained lower bound that cites OV is really citing that same assumption, translated through a chain of reductions.
Comments
Loading comments...