Euler Mascheroni Constant lb
eulerMascheroniConstant_lb
Plain-language statement
For every integer , the corrected harmonic approximation is a lower bound for the Euler–Mascheroni constant .
Exact Lean statement
lemma eulerMascheroniConstant_lb (n : ℕ) :
γ₁ (n + 1) ≤ eulerMascheroniConstantFormal artifact
Lean source
lemma eulerMascheroniConstant_lb (n : ℕ) : γ₁ (n + 1) ≤ eulerMascheroniConstant := by have key : γ₁ (n + 1) = eulerMascheroniSeq n + 1 / (2 * ((n : ℝ) + 1)) := by simp only [γ₁, eulerMascheroniSeq] rw [harmonic_succ] push_cast field_simp ring rw [key] have h_lim : Filter.Tendsto (fun m => eulerMascheroniSeq m - eulerMascheroniSeq n) Filter.atTop (nhds (eulerMascheroniConstant - eulerMascheroniSeq n)) := Filter.Tendsto.sub Real.tendsto_eulerMascheroniSeq tendsto_const_nhds have h_lim_bound : Filter.Tendsto (fun m => 1 / (2 * (n + 1) : ℝ) - 1 / (2 * (m + 1) : ℝ)) Filter.atTop (nhds (1 / (2 * (n + 1) : ℝ))) := le_trans (tendsto_const_nhds.sub <| tendsto_const_nhds.div_atTop <| Filter.Tendsto.const_mul_atTop zero_lt_two <| Filter.tendsto_id.atTop_add tendsto_const_nhds) <| by norm_num have := h_lim_bound.comp tendsto_natCast_atTop_atTop exact le_of_tendsto_of_tendsto this h_lim (Filter.eventually_atTop.mpr ⟨n, by intros m hm; simpa using eulerMascheroniSeq_diff_lb n m hm⟩) |> fun h => by norm_num at *; grind- Project
- Prime Number Theorem and More
- License
- Apache-2.0
- Commit
- a93551347dce
- Source
- PrimeNumberTheoremAnd/EulerMascheroniBounds.lean:99-117
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Admissible bound mono
admissible_bound.mono
Plain-language statement
For positive parameters , the classical error-bound function is nonincreasing once .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero
AnalyticOn_divRemovable_zero
Plain-language statement
Let be analytic on an open set containing , and suppose . Define for and . Then the apparent singularity at is removable and is analytic throughout .
Source project: Prime Number Theorem and More
Person-level attribution pending.
Analytic On div Removable zero closed Ball
AnalyticOn_divRemovable_zero_closedBall
Plain-language statement
Suppose and is analytic on the closed disc with . Define for and . Then is analytic on the entire closed disc, including at the removed singularity.
Source project: Prime Number Theorem and More
Person-level attribution pending.