Section 11.6: fix Summable indexing and Exercise 11.6.4 statements#527
Merged
Merged
Conversation
`Summable f` with `f : ℝ → ℝ` sums over the index type ℝ, which makes these statements unprovable: a nonnegative function with uncountable support is never summable over ℝ, so e.g. `f x = 1/(1+x)^2` satisfies the bounded-integral side of Proposition 11.6.4 but not the summable side. The integral test of the text concerns the series over the natural numbers, so the intended statement is `Summable (fun n:ℕ ↦ f n)`. Also restate the Exercise 11.6.4 examples with nonnegativity as a conjunct `(∀ x ≥ 0, f x ≥ 0) ∧ ...` rather than a named existential binder: the book asks for counterexamples satisfying all hypotheses of the integral test except monotonicity, and the binder form triggers unused-variable warnings once the proofs are filled in. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summable fwithf : ℝ → ℝsums over the index type ℝ, which makes these statements unprovable, so the intended statement isSummable (fun n:ℕ ↦ f n).Also restate the Exercise 11.6.4 examples with nonnegativity as a conjunct
(∀ x ≥ 0, f x ≥ 0) ∧ ...rather than a named existential binder: the book asks for counterexamples satisfying all hypotheses of the integral test except monotonicity, and the binder form triggers unused-variable warnings once the proofs are filled in.