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.
Square Numbers ((SQ)n)
Natural Numbers (Nn)
Odd Numbers (On)
Triangular Numbers (Tn)
Use natural numbers
Use odd numbers
Use triangular numbers
N1 =1

N2 =2

N3 =3
O1 =1

O2 =3

O3 =5
T1 =1

T2 =3

T3 =6
(SQ)1 =1

(SQ)2 =4

(SQ)3 =9
1

4

9
1

4

9

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.