Keyboard shortcuts

Press or to navigate between chapters

Press ? to show this help

Press Esc to hide this help

Escape Probability Monotonicity

Abstract

Escape probability is nondecreasing in guarded address cardinality and has the one-address value.

Theorem 1.1 (Escape probability is monotone and has the one-address value).

Proof. Machine-checked in Lean as D5/S0/Asymptotics/EscapeProbabilityMonotone.escape_probability_monotone_and_one_address (✓ std3). ∎

Source. Repository-derived.

Commentary.

For a finite nonempty value type Y, the exact escape probability is nondecreasing as the guarded address cardinality increases. At address cardinality one it equals one minus the fixed-point count divided by the value cardinality.

The proof first rewrites the repository’s escapeProbability definition using the frozen escaped_listing_card count. The successor inequality is then an elementary Bernoulli bound for the exact formula ((n^A-k)/n^A)^A; the finite fixed-point subtype supplies k <= n.

The source clause is guarded by 1 <= A. At A = 0 the formula evaluates to P_esc(0) = 1, while for k > 0 it gives P_esc(1) = 1 - k/n < 1; therefore unguarded monotonicity is false and the A = 1 endpoint must be stated on the guarded domain to faithfully express the paper’s escape-rate claim. This deposit closes only clause (ii); source clause (v) remains unformalized, so corollary 3.6 is not fully closed.

References