All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Smooth urysohn support Ioo

smooth_urysohn_support_Ioo

Plain-language statement

Given a<ba<b and c<dc<d, there is a smooth compactly supported function Ψ:RR\Psi:\mathbb R\to\mathbb R with 1[b,c]Ψ1(a,d)\mathbf 1_{[b,c]}\le\Psi\le\mathbf 1_{(a,d)} and support exactly (a,d)(a,d). In the usual ordered case a<bc<da<b\le c<d, this is a smooth cutoff equal to 11 on [b,c][b,c], strictly supported in (a,d)(a,d), and taking values between 00 and 11.

Exact Lean statement

lemma smooth_urysohn_support_Ioo {a b c d : ℝ} (h1 : a < b) (h3 : c < d) :
    ∃ Ψ : ℝ → ℝ, (ContDiff ℝ ∞ Ψ) ∧ (HasCompactSupport Ψ) ∧
    Set.indicator (Set.Icc b c) 1 ≤ Ψ ∧ Ψ ≤ Set.indicator (Set.Ioo a d) 1 ∧
    (Function.support Ψ = Set.Ioo a d)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma smooth_urysohn_support_Ioo {a b c d : } (h1 : a < b) (h3 : c < d) :     Ψ :   , (ContDiff  ∞ Ψ)  (HasCompactSupport Ψ)     Set.indicator (Set.Icc b c) 1  Ψ  Ψ  Set.indicator (Set.Ioo a d) 1     (Function.support Ψ = Set.Ioo a d) := by  have := exists_contMDiff_zero_iff_one_iff_of_isClosed (n := ⊤)    (modelWithCornersSelf  ) (s := Set.Iic a ∪ Set.Ici d) (t := Set.Icc b c)    (IsClosed.union isClosed_Iic isClosed_Ici) isClosed_Icc    (by      simp_rw [Set.disjoint_union_left, Set.disjoint_iff, Set.subset_def,        Set.mem_inter_iff, Set.mem_Iic, Set.mem_Icc, Set.mem_empty_iff_false,        and_imp, imp_false, not_le, Set.mem_Ici]      constructor <;> intros <;> linarith)  obtain Ψ, hΨSmooth, hΨrange, hΨ0, hΨ1 := this  simp only [Set.mem_union, Set.mem_Iic, Set.mem_Ici, Set.mem_Icc] at *  use Ψ  simp only [range_subset_iff, mem_Icc] at hΨrange  refine ContMDiff.contDiff hΨSmooth, ?_, ?_, ?_, ?_  · apply HasCompactSupport.of_support_subset_isCompact (K := Set.Icc a d) isCompact_Icc    simp only [Function.support_subset_iff, ne_eq, mem_Icc,  hΨ0, not_or]    bound  · apply Set.indicator_le'    · intro x hx      rw [hΨ1 x |>.mp, Pi.one_apply]      simpa using hx    · exact fun x _  (hΨrange x).1  · intro x    apply Set.le_indicator_apply    · exact fun _  (hΨrange x).2    · intro hx      rw [ hΨ0 x |>.mp]      simpa [-not_and, mem_Ioo, not_and_or, not_lt] using hx  · ext x    simp only [Function.mem_support, ne_eq, mem_Ioo,  hΨ0, not_or, not_le]
Project
Prime Number Theorem and More
License
Apache-2.0
Commit
a93551347dce
Source
PrimeNumberTheoremAnd/SmoothExistence.lean:12-44

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

Project-declaredLean 4.32.0

Admissible bound mono

admissible_bound.mono

Plain-language statement

For positive parameters A,B,C,RA,B,C,R, the classical error-bound function A(logxR)Bexp ⁣(ClogxR)A\left(\frac{\log x}{R}\right)^B\exp\!\left(-C\sqrt{\frac{\log x}{R}}\right) is nonincreasing once xexp ⁣(R(2B/C)2)x\ge \exp\!\left(R(2B/C)^2\right).

analytic number theoryprime numbersasymptotics

Source project: Prime Number Theorem and More

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Analytic On div Removable zero

AnalyticOn_divRemovable_zero

Plain-language statement

Let ff be analytic on an open set ss containing 00, and suppose f(0)=0f(0)=0. Define g(z)=f(z)/zg(z)=f(z)/z for z0z\ne0 and g(0)=f(0)g(0)=f'(0). Then the apparent singularity at 00 is removable and gg is analytic throughout ss.

analytic number theoryprime numbersasymptotics

Source project: Prime Number Theorem and More

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Analytic On div Removable zero closed Ball

AnalyticOn_divRemovable_zero_closedBall

Plain-language statement

Suppose R>0R>0 and ff is analytic on the closed disc zR|z|\le R with f(0)=0f(0)=0. Define g(z)=f(z)/zg(z)=f(z)/z for z0z\ne0 and g(0)=f(0)g(0)=f'(0). Then gg is analytic on the entire closed disc, including at the removed singularity.

analytic number theoryprime numbersasymptotics

Source project: Prime Number Theorem and More

Person-level attribution pending.

View proof record