回複:回複:Let me try

來源: 2010-01-15 08:33:55 [博客] [舊帖] [給我悄悄話] 本文已被閱讀:

By the recursion equations for A_n, B_n and C_n we have

A_n=A_{n-1}+C_{n-1}/n
B_n=B_{n-1}+A_{n-1}/n
C_n=C_{n-1}+B_{n-1}/n.

Now squaring both sides and adding these three equations together:
S_n=(1+1/n*n)S_{n-1}+2/n(A_{n-1}*B_{n-1}+B_{n-1}*C_{n-1}+C_{n-1}*A_{n-1}).

Since A_{i}+B_{i}+C_{i}=0 for every i,
A_i*B_i+B_i*C_i+C_i*A_i
=-(B_i+C_i)*(B_i+C_i)+B_i*C_i
=-(B_i*B_i+C_i*C_i+B_i*C_i)
=-1/2(2*B_i*B_i+2*C_i*C_i+2B_i*C_i)
=-1/2(A_i*A_i+B_i*B_i+C_i*C_i)
=-1/2*S_{i}.
Now letting i=n-1 gives the desired equation.

On the other hand,