Neg after zero of deriv neg
neg_after_zero_of_deriv_neg
Plain-language statement
If g(t₀) = 0 and deriv g t₀ < 0, then g is negative shortly after t₀.
Exact Lean statement
lemma neg_after_zero_of_deriv_neg {g : ℝ → ℝ} {t₀ : ℝ}
(hg0 : g t₀ = 0) (hd : deriv g t₀ < 0) :
∃ δ > 0, ∀ s, t₀ < s → s < t₀ + δ → g s < 0Formal artifact
Lean source
lemma neg_after_zero_of_deriv_neg {g : ℝ → ℝ} {t₀ : ℝ} (hg0 : g t₀ = 0) (hd : deriv g t₀ < 0) : ∃ δ > 0, ∀ s, t₀ < s → s < t₀ + δ → g s < 0 := by have hdiff : DifferentiableAt ℝ g t₀ := by by_contra h; simp [deriv_zero_of_not_differentiableAt h] at hd have hda : HasDerivAt g (deriv g t₀) t₀ := hdiff.hasDerivAt rw [hasDerivAt_iff_isLittleO_nhds_zero] at hda have hε : (0 : ℝ) < -deriv g t₀ / 2 := by linarith have hio := hda.def hε rw [Filter.Eventually, Metric.mem_nhds_iff] at hio obtain ⟨δ, hδ, hball⟩ := hio refine ⟨δ, hδ, fun s hs1 hs2 => ?_⟩ have hh_pos : 0 < s - t₀ := sub_pos.mpr hs1 have hmem : s - t₀ ∈ Metric.ball (0 : ℝ) δ := by simpa [Metric.mem_ball, dist_zero_right, Real.norm_eq_abs, abs_of_pos hh_pos] using sub_left_lt_of_lt_add hs2 have hest := hball hmem simp only [Set.mem_setOf_eq, hg0, sub_zero, smul_eq_mul, norm_eq_abs, abs_of_pos hh_pos] at hest have := (abs_le.mp hest).2 rw [show s = t₀ + (s - t₀) by ring] linarith [div_neg_of_neg_of_pos (mul_neg_of_pos_of_neg hh_pos hd) (by norm_num : (0 : ℝ) < 2)]- Project
- Sphere Packing in Dimension 8
- License
- Apache-2.0
- Commit
- acfc6204e65a
- Source
- SpherePacking/ModularForms/Derivative.lean:852-872
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
Anti Der Pos
antiDerPos
Plain-language statement
If is a modular form where is positive for sufficiently large (i.e. constant term is positive) and the derivative is positive, then is also positive.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Anti Serre Der Pos
antiSerreDerPos
Plain-language statement
Let be a holomorphic function where is real for all . Assume that Serre derivative is positive on the imaginary axis. If is positive for sufficiently large , then is positive for all .
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Closed Ball center subset upper Half Plane
closedBall_center_subset_upperHalfPlane
Plain-language statement
Closed ball centered at z with radius z.im/2 is contained in the upper half plane.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.