Skip to content

Commit

Permalink
feat: port NumberTheory.ModularForms.JacobiTheta.Manifold (#5670)
Browse files Browse the repository at this point in the history
  • Loading branch information
Parcly-Taxel authored and kbuzzard committed Jul 6, 2023
1 parent 36043ec commit b051bb9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions Mathlib.lean
Original file line number Diff line number Diff line change
Expand Up @@ -2405,6 +2405,7 @@ import Mathlib.NumberTheory.LucasPrimality
import Mathlib.NumberTheory.Modular
import Mathlib.NumberTheory.ModularForms.CongruenceSubgroups
import Mathlib.NumberTheory.ModularForms.JacobiTheta.Basic
import Mathlib.NumberTheory.ModularForms.JacobiTheta.Manifold
import Mathlib.NumberTheory.ModularForms.SlashActions
import Mathlib.NumberTheory.ModularForms.SlashInvariantForms
import Mathlib.NumberTheory.Multiplicity
Expand Down
30 changes: 30 additions & 0 deletions Mathlib/NumberTheory/ModularForms/JacobiTheta/Manifold.lean
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/-
Copyright (c) 2023 David Loeffler. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Authors: David Loeffler
! This file was ported from Lean 3 source module number_theory.modular_forms.jacobi_theta.manifold
! leanprover-community/mathlib commit 57f9349f2fe19d2de7207e99b0341808d977cdcf
! Please do not edit these lines, except to modify the commit id
! if you have ported upstream changes.
-/
import Mathlib.NumberTheory.ModularForms.JacobiTheta.Basic
import Mathlib.Analysis.Complex.UpperHalfPlane.Manifold

/-!
# Manifold differentiability of the Jacobi theta function
In this file we reformulate differentiability of the Jacobi theta function in terms of manifold
differentiability.
## TODO
Prove smoothness (in terms of `Smooth`).
-/


open scoped UpperHalfPlane Manifold

theorem mdifferentiable_jacobiTheta : MDifferentiable π“˜(β„‚) π“˜(β„‚) (jacobiTheta ∘ (↑) : ℍ β†’ β„‚) :=
fun Ο„ => (differentiableAt_jacobiTheta Ο„.2).mdifferentiableAt.comp Ο„ Ο„.mdifferentiable_coe
#align mdifferentiable_jacobi_theta mdifferentiable_jacobiTheta

0 comments on commit b051bb9

Please sign in to comment.