Skip to content

Commit

Permalink
Small progress
Browse files Browse the repository at this point in the history
  • Loading branch information
vbeffara committed Apr 2, 2024
1 parent 6f663cc commit 68a61a4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ blueprint/*.tex
!blueprint/blueprint.tex
!blueprint/print.tex
.vscode/settings.json
/scratch.lean
14 changes: 12 additions & 2 deletions PrimeNumberTheoremAnd/Wiener.lean
Original file line number Diff line number Diff line change
Expand Up @@ -1637,10 +1637,20 @@ lemma wiener_ikehara_smooth (hf : ∀ (σ' : ℝ), 1 < σ' → Summable (nterm f
(hplus: closure (Function.support Ψ) ⊆ Set.Ioi 0) :
Tendsto (fun x : ℝ ↦ (∑' n, f n / n * Ψ (n / x)) / x - A * ∫ y in Set.Ioi 0, Ψ y ∂ volume) atTop (nhds 0) := by

let g : 𝓢(ℝ, ℂ) := toSchwartz (fun y => y * Ψ y) (contDiff_ofReal.mul hsmooth) (hsupp.mul_left)
let h (x : ℝ) : ℂ := Ψ (exp (2 * π * x))
have h1 : ContDiff ℝ ⊤ h := sorry
have h2 : HasCompactSupport h := sorry
let H : 𝓢(ℝ, ℂ) := toSchwartz h h1 h2
obtain ⟨g, hg⟩ := fourier_surjection_on_schwartz (toSchwartz h h1 h2)

have l1 (n : ℕ) (hn : 0 < n) (x : ℝ) (hx : 0 < x) : Ψ (n / x) = 𝓕 g (1 / (2 * π) * Real.log (n / x)) := by
simp only [hg] ; congr ; convert_to ↑n / x = rexp (Real.log (↑n / x))
· congr ; field_simp ; ring
rw [Real.exp_log] ; positivity

have := @limiting_cor_schwartz f A G g hf hcheby hG hG'

-- obtain ⟨Φ, rfl⟩ := fourier_surjection_on_schwartz (toSchwartz Ψ hsmooth hsupp)
have := @limiting_cor_schwartz
sorry

/-%%
Expand Down
13 changes: 0 additions & 13 deletions scratch.lean

This file was deleted.

0 comments on commit 68a61a4

Please sign in to comment.