Method of Exhuastion for the area of a parabolic segment

Click For Summary

Discussion Overview

The discussion revolves around understanding the identity for the sum of squares of the first n natural numbers, specifically the formula \( \sum_{i=1}^{n} i^{2} = \frac{n^{3}}{3} + \frac{n^{2}}{2} + \frac{n}{6} \). Participants explore various methods of deriving this formula, including induction, polynomial fitting, and recursive relationships.

Discussion Character

  • Exploratory
  • Mathematical reasoning
  • Technical explanation

Main Points Raised

  • One participant expresses difficulty in understanding the derivation of the sum of squares formula from Apostol's book.
  • Another suggests using differences and solving a system of equations related to a cubic polynomial to derive the formula.
  • A different participant proposes assuming the formula is a cubic polynomial and setting up a system of linear equations based on specific values of n.
  • A participant references a footnote in Courant's calculus book that discusses finding such formulas through recursion, emphasizing the importance of the lead term.
  • One participant outlines a proof by induction, starting with the base case and showing how to verify the formula for n+1.
  • Another participant discusses a method to derive the sum of squares using known sums for lower powers, providing a detailed algebraic manipulation to arrive at the formula.

Areas of Agreement / Disagreement

Participants do not reach a consensus on a single method for deriving the formula, as multiple approaches are proposed and discussed. The discussion includes various perspectives and techniques without resolving which is the most effective or correct.

Contextual Notes

Some methods rely on assumptions about polynomial behavior and the structure of the sums involved, which may not be universally applicable without further justification. The discussion also reflects varying levels of familiarity with the material and different interpretations of the derivation process.

joey674
Messages
7
Reaction score
0
Hello everyone,

I'm using the book Apostol- Calculus Vol. 1 for self-studying to get a better understanding of proof based Calculus. They said this book was good for self studying, but I am already stuck in the first chapter. I'm trying to understand how he got the identity:

12+22+...+n(2)= n3/ 3 + n2/2 + n/ 6
 
Physics news on Phys.org
You could assume it is a cubic polynomial and set up a system of 4 linear equations by using n=1,2,3,4.
 
there is a footnote on page 27 of courant's calculus book that explains how all siuch formulas can be found by recursion. it was when i saw that in week one of freshman year in college that i knew i wasn't in kansas anymore, to paraphrase Dorothy of wizard of oz fame. to make the derivation easier, notice that all you really need to know is the lead term, i.e. that the formula is n^3/3 + a quadratic in n.https://www.ime.usp.br/~gorodski/ps/Courant-DifferentialIntegralCalculusVolI.pdf
 
Actually, it is straight-forward induction. The formula is obviously correct for n=1, so assume that it holds for n: [itex]\sum_{i=1}^{n}i^{2}=\frac{n^{3}}{3}+\frac{n^{2}}{2}+\frac{n}{6}[/itex]. We want to verify the formula for n+1, so we add (n+1)2. Now observe:
  1. [itex]\frac{(n+1)^{3}}{3}-\frac{n^{3}}{3}=n^{2}+n+\frac{1}{3}[/itex]
  2. [itex]\frac{(n+1)^{2}}{2}-\frac{n^{2}}{2}=n+\frac{1}{2}[/itex]
  3. [itex](n+1)^{2}=n^{2}+2n+1=(n^{2}+n+\frac{1}{3})+(n+\frac{1}{2})+\frac{1}{6}[/itex]
Now, adding the three expressions in parentheses in (3) to the corresponding elements in the formula, we end up with [itex]\sum_{i=1}^{n+1}i^{2}=\frac{(n+1)^{3}}{3}+\frac{(n+1)^{2}}{2}+\frac{(n+1)}{6}[/itex]. Therefore, the formula is (by induction) proven for all n.
 
Basic Idea: You can find ##\displaystyle\sum_{k=1}^n k^{p+1}## if you know ##\displaystyle\sum_{k=1}^n k^{p}## , for ##p\in\{0,1,2,\ldots\}##.

Procedure: (for ##p=1##)

We know that (Why?) $$\sum_{k=1}^n k^1=\frac{n(n+1)}2.\tag1$$ We also know that $$(k+1)^3-n^3=3n^2+3n+1.$$ Writing this formula for ##k=1,2,\ldots,n## we get:
$$
\begin{array}{rcl}
2^3-1^3 & = & 3\cdot1^2+3\cdot1+1\qquad \\
3^3-2^3 & = & 3\cdot2^2+3\cdot2+1 \\
\cdot\,\ \quad & & \\
\cdot\,\ \quad & & \\
\cdot\,\ \quad & & \\
\quad(n+1)^3-n^3 & = & 3\cdot n^2+3\cdot n+1 \\ \hline
(n+1)^3-1^3 &=&3[1^2+2^2+\cdots+n^2]+3[1+2+\cdots+n]\\&&\qquad\qquad+[\underbrace{1+1+\cdots+1}_{n\,\text{times}}]
\end{array}$$ This last equality can be simplified using ##(1)## to get: $$(n+1)^3-1=3\sum_{k=1}^n k^2+3\frac{n(n+1)}2+n.$$ We need to solve this equation for ##\displaystyle\sum_{k=1}^n k^2## to get our desired result: $$\begin{align*}
(n+1)^3-1=3\sum_{k=1}^n k^2+3\frac{n(n+1)}2+n&\iff n^3+3n^2+3n=3\sum_{k=1}^n k^2+3\frac{n(n+1)}2+n\\
&\iff n^3+3n^2+3n-3\frac{n(n+1)}2-n=3\sum_{k=1}^n k^2\\
&\iff n^3+3n^2+2n-\frac{3n(n+1)}2=3\sum_{k=1}^n k^2\\
&\iff \frac{2n^3+6n^2+4n}{2}-\frac{3n^2+3n}2=3\sum_{k=1}^n k^2\\
&\iff\frac{2n^3+3n^2+n}2=3\sum_{k=1}^n k^2\\
&\iff\frac{2n^3+3n^2+n}{2}\frac13=\sum_{k=1}^n k^2\\
&\iff\frac{2n^3+3n^2+n}{6}=\sum_{k=1}^n k^2\\
&\iff\sum_{k=1}^n k^2=\frac{n^3}3+\frac{n^2}2+\frac n6\\
\end{align*}$$

Now substitute ##n## with ##n-1## to get your desired formula. :wink:

N.B: This is (overall) the same method Apostol uses to evaluate ##\displaystyle\sum_{k=1}^n k^{2}## , you just had to look further in the text :woot:, see Calculus vol.I, pp.5-6.

Exercise: Find ##\displaystyle\sum_{k=1}^n k^{3}##, ##\displaystyle\sum_{k=1}^n k^{4}## and ##\displaystyle\sum_{k=1}^n \frac1{k(k+1)}## using this method. Good luck! :oldtongue:
 
Last edited:
  • Like
Likes   Reactions: joey674

Similar threads

  • · Replies 4 ·
Replies
4
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 17 ·
Replies
17
Views
12K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 12 ·
Replies
12
Views
7K
  • · Replies 5 ·
Replies
5
Views
5K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 6 ·
Replies
6
Views
5K