While analyzing square and cube functions, i found the following:
for y=x^2
x=1, y=1
+3
x=2, y=4 +2
+5
x=3, y=9 +2
+7
x=4, y=16 +2
+9
x=5, y=25
increase of increase (well, how else should i say this) is +2.
What does this signify?
Same pattern for y=x^3, only number in question being +6 and appearing after another round of measuring increase:
x=1, y=1
+7
x=2, y=8 +12
+19 +6
x=3, y=27 +18
+37 +6
x=4, y=64 +24
+61
x=5, y=125
$y_n = (1+n)^2 = 1 + 2n + n^2 = (1+2n) + n^2$ (1+2n is odd)
$y_{n+1} = (1+(n+1))^2 = 1 + 2(n+1) + y_n$ (2(n+1)+1 is the next odd number)
– Aldo Sep 06 '14 at 03:47