✔ 最佳答案
The summation sign means :
k = 0, 1, 2, . . ., n-3, n-2, n-1
You can say that :
k = n-1, n-2, n-3, . . ., 2, 1, 0
Let y = n - k, then the above one can be
y = n - (n-1), n - (n-2), n - (n-3), . . ., n - 2, n - 1, n - 0
that is :
y = 1, 2, 3, . . ., n-2, n-1, n
So the summation can be written as
(from y = 1 to n) [2n - 2(n-y) + 1] / [2n - 2(n-y)]
that is
(from y = 1 to n) [2y + 1] / [2y]
Transfer y to k (dummy variable), so the above one can be written as :
(from k = 1 to n) (2k + 1) / (2k)