How to calculate $(\sum_{n=0}^{\infty} a_n x^n )^3$?

60 Views Asked by At

I know that for $$\left(\sum_{n=0}^{\infty} a_n x^n\right)^2=\sum_{n=0}^{\infty} \left(\sum_{j=0}^{n} a_j a_{n-j}\right)x^n,$$ however I'm not sure precisely how to extend this to a cube rather than a square. Certainly it'll be applying the above identity again, but I think the double sum is tripping me up!

I would really appreciate some help showing me how to index my sums at the end here!

2

There are 2 best solutions below

0
On BEST ANSWER

If we rewrite the formula for squaring in a slightly more symmetric way, it becomes slightly easier to see the pattern:

$$\left(\sum_{n=0}^{\infty} a_n x^n\right)^2 = \sum_{n=0}^{\infty} \left(\sum_{\substack{i+j=n \\ i,j \geq 0}} a_i a_j \right)x^n.$$

You can work out a similar formula for cubing, or taking 4th powers, etc.

$$\left(\sum_{n=0}^{\infty} a_n x^n\right)^3 = \sum_{n=0}^{\infty} \left(\sum_{\substack{i+j+k=n \\ i,j,k \geq 0}} a_i a_j a_k \right)x^n.$$

If you don't like the idea of summing over a subset of ordered triples, one can rewrite things in the following way, which is perhaps easier for a computer to implement but which I personally find more difficult to understand at a glance.

$$ \sum_{\substack{i+j+k=n \\ i,j,k \geq 0}} a_i a_j a_k = \sum_{i=0}^n \sum_{j=0}^{n-i} a_i a_j a_{n-i-j}. $$

The idea behind the conversion is that a priori we only know that i is between 0 and n, but for a given value of i, that puts more restrictions on j, and once we know both i and j, we know what k will be. This is completely analogous to how one expresses an integral over a region as a double integral or triple integral. With both sums and integrals, it is often conceptually convenient to express things over the region or set until actual computations need to be done, and only then to expand into multiple sums or multiple integrals.

0
On

If $$f(x) = \sum_{n=0}^\infty a_n x^n,$$ then $$(f(x))^3 = \sum_{n=0}^\infty b_n x^n,$$ where $$b_n = \sum_{i = 0}^n \sum_{j=0}^{n-i} a_i a_j a_{n-i-j}.$$

And in general, for $(f(x))^m$ with $m \ge 2$, $$b_n = \sum_{c_1 = 0}^n \sum_{c_2 = 0}^{n-c_1} \cdots \sum_{c_{m-1}}^{n-c_1-\cdots-c_{m-2}} a_{c_1} a_{c_2} \cdots a_{c_{m-1}} a_{n-c_1-c_2-\cdots-c_{m-1}}.$$ This looks awfully ugly, but it makes a lot more sense if you write it like this: $$b_n = \sum_{c_1 + \cdots + c_m = n} \prod_{i=1}^m a_{c_i},$$ where $c_1, c_2, \ldots, c_m \in \{0, 1, \ldots, n\}$ and the sum is taken over all possible sums that equal $n$. So for instance, back to the case $m = 3$, we have $$b_n = \sum_{c_1 + c_2 + c_3 = n} \prod_{i=1}^3 a_{c_i} = \sum_{c_1 + c_2 + c_3 = n} a_{c_1} a_{c_2} a_{c_3}.$$ Then we note that one way to run through all of the terms in this sum is to write it as a double sum as shown above.