Tie-in bounds for the forward singular exponent γ_k #
This module connects the cumulative forward singular exponent
Oseledets.forwardSingularExponent (the EReal-valued γ_k of
Oseledets/Lyapunov/Extensions/SingularExponent.lean) to the top-singular-value growth that
underlies it. The cumulative exponent γ_k = limsup_n (1/n) log⁺ sprod_k is built from the
top-k singular-value product sprod_k = ∏_{i<k} σᵢ(A⁽ⁿ⁾). Each singular value is bounded by
the L2 operator norm ‖A⁽ⁿ⁾‖ (Oseledets.sigma_le_opNorm), so sprod_k ≤ ‖A⁽ⁿ⁾‖^k, and
log⁺ of a k-th power scales by k (Real.posLog_pow). Passing to the EReal-limsup and
pulling out the (finite, non-negative) constant k
(EReal.limsup_const_mul_of_nonneg_of_ne_top) gives the deterministic linear-in-k bound
γ_k(x) ≤ (k : EReal) · limsup_n ((1/n) log⁺‖A⁽ⁿ⁾(x)‖ : EReal).
This is the EReal log⁺-norm-growth ceiling on the cumulative singular exponent, with no
ergodicity, integrability, or invertibility hypothesis. It says the top-k volume exponent can
grow at most k times as fast as the top operator-norm exponent — the singular-cocycle
counterpart of γ_k ≤ k λ₁.
Main results #
Oseledets.forwardPosLogNormLimsup— theEReallimsupof the normalizedlog⁺-operator norms(1/n) log⁺‖A⁽ⁿ⁾(x)‖; thek = 1ceiling forγ_k.Oseledets.forwardSingularExponent_le_natCast_mul— the deterministic boundγ_k(x) ≤ (k : EReal) · forwardPosLogNormLimsup A T xfor everyx.
Implementation notes #
- Everything here is deterministic (holds for every
x, no measure-theoretic hypothesis): the bound is a pure consequence of the singular-value/operator-norm inequality and the scaling oflog⁺under powers. The constantkis pulled out of theEReal-limsupviaEReal.limsup_const_mul_of_nonneg_of_ne_top, valid because(k : EReal)is non-negative and finite. - The right-hand
limsupis taken over thelog⁺-operator norms (the convergent quantity); it is notγ_1. Identifying it withγ_1would requiresprod_1 = ‖A⁽ⁿ⁾‖, i.e. the top singular value equals the operator norm — that identity is not available here, so the ceiling is stated through the operator-normlimsupdirectly.
References #
- M. Viana, Lectures on Lyapunov Exponents, Cambridge Studies in Adv. Math. 145 (2014).
The forward log⁺-operator-norm limsup. The EReal-valued
limsup_n ((1/n) log⁺‖A⁽ⁿ⁾(x)‖ : EReal), the top operator-norm growth ceiling that bounds the
cumulative forward singular exponent γ_k (see forwardSingularExponent_le_natCast_mul). On the
μ-a.e. convergence set (tendsto_top_posLogNorm) it is the forward top value λ₁⁺.
Equations
- Oseledets.forwardPosLogNormLimsup A T x = Filter.limsup (fun (n : ℕ) => ↑((↑n)⁻¹ * ‖Oseledets.cocycle A T n x‖.posLog)) Filter.atTop
Instances For
Deterministic linear-in-k ceiling for γ_k. For every x,
γ_k(x) ≤ (k : EReal) · limsup_n ((1/n) log⁺‖A⁽ⁿ⁾(x)‖ : EReal).
Each top-k singular-value product satisfies sprod_k ≤ ‖A⁽ⁿ⁾‖^k (every singular value is
≤ ‖A⁽ⁿ⁾‖, Oseledets.sigma_le_opNorm), so log⁺ sprod_k ≤ log⁺(‖A⁽ⁿ⁾‖^k) = k · log⁺‖A⁽ⁿ⁾‖
(Real.posLog_pow). Multiplying by (n : ℝ)⁻¹ ≥ 0 and passing to the EReal-limsup
(monotone), the constant k is pulled out by EReal.limsup_const_mul_of_nonneg_of_ne_top. No
ergodicity, integrability, or invertibility is used.