Let T
1(n) be the n-th Triangular number, the sum of 1 + 2 + ... + n.
T2(n) is the sum of the first n Triangular numbers.
T3(n) is the sum of the first n T2(n) numbers.
...
Tk(n) is the sum of the first n Tk-1(n) numbers.
Please derive closed form expressions for each of T1(n), T2(n), and T3(n). Describe the technique you used for the derivation.
Bonus: what is the formula for Tk(n)?
Bonus 2: prove the validity of your formula for Tk(n).
Re-indexing k to (k-1) for convenience later:
1, 1, 1, 1, 1, 1, T0(n) = 1
1, 2, 3, 4, 5, 6, T1(n) = n/1
0, 1, 3, 6, 10, 15, T2(n) = n*(n-1)/2
0, 0, 1, 4, 10, 20, T3(n) = n*(n-1)*(n-2)/6
0, 0, 0, 1, 5, 15, 35, T4(n) = n*(n-1)*(n-2)*(n-3)/24
0, 0, 0, 0, 1, 6, 21, 56 T5(n) = n*(n-1)*(n-2)*(n-3)*(n-4)/120
So Tk(n) = (n!/(n-k)!)/k! or (n!)/(k!(n - k)!)
Technique: computation of small terms plus observation.
Since the formula for Tk(n) is simply a rewriting of the observed results in generalised form, the issue of validity doesn't really arise.
Edited on November 1, 2020, 12:48 am
|
Posted by broll
on 2020-11-01 00:21:07 |