Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Analysis/Section_9_3.lean
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,13 @@ theorem Convergesto.restrict {X Y:Set ℝ} {f: ℝ → ℝ} {L:ℝ} {x₀:ℝ} (

theorem Real.sign_def (x:ℝ) : Real.sign x = if x < 0 then -1 else if x > 0 then 1 else 0 := rfl

/-- Example 9.3.16 -/
/-- Example 9.3.16 (a) -/
theorem Convergesto.sign_right : Convergesto (.Ioi 0) Real.sign 1 0 := by sorry

/-- Example 9.3.16 -/
/-- Example 9.3.16 (b) -/
theorem Convergesto.sign_left : Convergesto (.Iio 0) Real.sign (-1) 0 := by sorry

/-- Example 9.3.16 -/
/-- Example 9.3.16 (c) -/
theorem Convergesto.sign_all : ¬ ∃ L, Convergesto (.univ) Real.sign L 0 := by sorry

noncomputable abbrev f_9_3_17 : ℝ → ℝ := fun x ↦ if x = 0 then 1 else 0
Expand Down
Loading