def
hypothesis interface
def or abbrev
LocalSplittingHypothesis
show as:
view Lean formalization →
formal statement (Lean)
69def LocalSplittingHypothesis (k : ℕ) (s : ℂ) : Prop :=
proof body
Definition body.
70 (∏' n, E1 (s / H.zeros n)) =
71 E1 (s / H.zeros k) *
72 ∏' n, ite (n = k) 1 (E1 (s / H.zeros n))
73
74/-! ## 3. Consequences -/
75
76/-- The Hadamard product factorization in the local-split form, given the
77local splitting hypothesis. -/