Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Analysis/MeasureTheory/Section_1_2_0.lean
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ example : ∃ f: ℕ → ℝ → ℝ, ∃ F: ℝ → ℝ, ∃ M, ∀ n, ∀ x
¬ RiemannIntegrableOn F (Icc 0 1) := by
sorry

/-- Exercise 1.2.2 -/
/-- Exercise 1.2.2' -/
-- Determine whether uniform convergence of uniformly bounded Riemann integrable functions preserves Riemann integrability (true or false).
def Ex_1_2_2b : Decidable ( ∀ f: ℕ → ℝ → ℝ, ∀ F: ℝ → ℝ, (∃ M, ∀ n, ∀ x ∈ Set.Icc 0 1, |f n x| ≤ M) → (∀ x ∈ Set.Icc 0 1, TendstoUniformly f F Filter.atTop) → (∀ n, RiemannIntegrableOn (f n) (Icc 0 1)) → RiemannIntegrableOn F (Icc 0 1) ) := by
-- the first line of this construction should be either `apply isTrue` or `apply isFalse`, depending on whether you believe the given statement to be true or false.
Expand Down
6 changes: 4 additions & 2 deletions Analysis/Section_9_2.lean
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,22 @@ example : f_9_2_2 ∘ g_9_2_2 = fun x ↦ 4*x^2 := by grind

example : g_9_2_2 ∘ f_9_2_2 = fun x ↦ 2*x^2 := by grind

/-- Exercise 9.2.1. -/
/-- Exercise 9.2.1 (a) -/
def Exercise_9_2_1a : Decidable (∀ (f g h : ℝ → ℝ), (f+g) ∘ h = f ∘ h + g ∘ h) := by
-- The first line of this construction should be `apply isTrue` or `apply isFalse`.
sorry

/-- Exercise 9.2.1. -/
/-- Exercise 9.2.1 (b) -/
def Exercise_9_2_1b : Decidable (∀ (f g h : ℝ → ℝ), f ∘ (g + h) = f ∘ g + f ∘ h) := by
-- The first line of this construction should be `apply isTrue` or `apply isFalse`.
sorry

/-- Exercise 9.2.1 (c) -/
def Exercise_9_2_1c : Decidable (∀ (f g h : ℝ → ℝ), (f+g) * h = f * h + g * h) := by
-- The first line of this construction should be `apply isTrue` or `apply isFalse`.
sorry

/-- Exercise 9.2.1 (d) -/
def Exercise_9_2_1d : Decidable (∀ (f g h : ℝ → ℝ), f * (g+h) = f * g + f * h) := by
-- The first line of this construction should be `apply isTrue` or `apply isFalse`.
sorry
Expand Down
Loading