-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modified Defn 8.3.12 for clarity and added a remark. #375
Conversation
🚀 Preview available 🚀 |
Defining a series as a pair of a sequence and its partial sum sequence doesn't click with me as a formalization: the latter is calculated from the former, so there's a redundancy that violates DRY (Don't Repeat Yourself). But what if we say that a series is a function that maps a sequence to its partial sum sequence? I'll make a competing PR for discussion to elaborate on this. |
I am wondering if getting this exactly precisely right in the main text is going to help our students, or if it belongs in an |
The function idea didn't survive the drafting I did at #377. But you hit the nail on the head with this cognitive load concern: I don't think 99% of students are going to appreciate a model of a series that's a pair of sequences. I ended up saying that a series is a partial sum sequence. |
I agree with your thoughts that the cognitive load might not be right for the students. However, I am generally a fan of "planting a seed" that may help down the line, even if it doesn't make sense at the time. I say this since this is how I learned series as a student, and I didn't understand at that time either. However, later down the road, it made sense to me. |
What value does having a series be a tuple of sequences have in contrast with just being the partial sum sequence? |
I think it's mostly preference. I like the nature of thinking of them both back and forth. Yes, you can think of a partial sum sequence as a property of a sequence, but you can also think of the generating sequence as a property of a given partial sum sequence (by looking at the difference of consecutive elements). |
For #372, This change clarifies the definition of a series and helps the careful reader distinguish between a series and its sum (limit).