Bet 10 / Loop engineering
An agentic loop retries until a verifier says "done", so it converges on whatever passes the check, not on what you meant. Whether "done" is actually correct is set by the verifier, not by convergence. Two forces pull against each other: refinement makes the loop genuinely better, while optimizing against a weak verifier games it. Watch which one wins.
Outcome of every loop at the budget:
Exact, via the loop's stopping-time distribution. Each iteration t, a candidate is correct with probability pₜ = base + refinement·(t-1); the verifier's false-accept rate is faₜ = fa₀ + gaming·(t-1). A correct candidate passes with probability 1 − false-reject; a wrong one passes with faₜ. The loop stops on the first pass.
p(1−fr) / (p(1−fr) + (1−p)·fa). It does not depend on how many times you loop.The argument of Loop Engineering and Bet #10: the verifier is the part that actually decides.