SQUARE NUMBERS
Develop a spreadsheet in which you define the sequence of square
numbers in terms of (a) the sequence of natural numbers, (b) the
sequence of odd numbers, and (c) the sequence of triangular numbers.
The headings and the first three rows of the spreadsheet are
shown below.
|
|
|
|
|
|
I don't really know how to describe how I found these formulas.
I just made a longer list of the numbers side by side and looked
at them and played with them until I found something that worked.
I can verify the formulas, however, by substituting the On
and Tn terms with their definitions in terms of n.
In all cases, (SQ)n = n2
Natural Numbers
Nn = n
(SQ)n = n2 = (Nn)2
= n2
Odd Numbers
On = 2n -1
(SQ)n = n2 = [(On +1)/2]2
= [(2n -1 +1)/2]2
= [2n/2]2
= n2
Triangular Numbers
Tn = n(n+1)/2
OR(SQ)n = n2 = (Tn -Tn-1)2
= [n(n+1)/2 - (n-1)n/2]2
= [(n/2)(n+1 - n +1)]2
= [(n/2)(2)]2
= n2
(SQ)n = n2 = Tn + Tn-1
= n(n+1)/2 + (n-1)n/2
= (n/2)(n +1 +n -1)
= (n/2)(2n)
= n2
The second formula for triangular numbers was offered from the class.