Real bridge from the EReal inequality: if all three upper Dini derivatives
are finite in EReal
(neither ⊤
nor ⊥
), then the real-valued additivity
upper bound holds.
Boundedness付き(上下の eventually 有界)での加法劣加法性。
Supply an eventual upper bound for the forward difference quotient of a sum from eventual upper bounds of the summands.
Supply an eventual lower bound for the forward difference quotient of a sum
Gronwall-type exponential bound (statement): if a nonnegative function
W
satisfies a linear differential inequality in the upper Dini sense,
then it contracts exponentially. Used to derive EVI contraction.
This is a statement-only placeholder at this phase.
Equations
Instances For
Equations
Instances For
Squared-distance version of the contraction property, aligned with the
Gronwall inequality that yields an exp (-(2λ) t)
decay.
Equations
- Frourio.ContractionPropertySq P u v = ∀ (t : ℝ), Frourio.d2 (u t) (v t) ≤ Real.exp (-(2 * P.lam) * t) * Frourio.d2 (u 0) (v 0)
Instances For
Bridge hypothesis from squared-distance contraction to linear-distance
contraction. This encapsulates the usual sqrt
-monotonicity and algebraic
identities that convert
d2(u t, v t) ≤ exp (-(2λ) t) · d2(u 0, v 0)
into
dist(u t, v t) ≤ exp (-λ t) · dist(u 0, v 0).
At this phase, we keep it as a named predicate to be provided by later analytic lemmas, allowing higher-level theorems to depend only on this bridge without committing to heavy proofs here.
Equations
- Frourio.Hbridge P u v = (Frourio.ContractionPropertySq P u v → Frourio.ContractionProperty P u v)
Instances For
Assumption pack providing a concrete bridge from squared-distance contraction to linear-distance contraction. In later phases this will be constructed from square-root monotonicity and algebraic identities.
- bridge : Hbridge P u v
Instances For
Extract the bridge from the assumption pack.
Helper lemmas (statement-level) for the bridge
Square root of the squared distance equals the distance (statement).
Equations
- Frourio.sqrt_d2_dist x y = (√(Frourio.d2 x y) = dist x y)
Instances For
Factorization of the square root of a product under nonnegativity
assumptions (statement). We parameterize the nonnegativity as explicit
arguments to align with Real.sqrt_mul
.