I'm studying for my Discrete Math final and the following problem with a solution is provided but I'm getting stuck halfway through the solution. Particularly at the step where "we can use the convolution rule to find the coefficients of the product."
Find the infinite series given by the following generating function: $$ (3x+2)(5x-7)\frac{1}{(1-x^2)} $$ We expand out to get $$ (15x^2 - 11x - 14)\frac{1}{1-x^2} $$ Using the fact that $$\frac{1}{1-x^2} = 1 + x^2 + x^4 + ⋯ $$ We can use the convolution rule $$ c_0 = -14 $$ $$ c_1 = (-14)(0) + (-11)(1) = -11 $$ $$ c_2 = (−14)(1) + (−11)(0) + (15)(1) = 1 $$ $$ c_3 = (−14)(0) + (−11)(1) + (15)(0) = −11 $$ $$ c_4 = (−14)(1) + (−11)(0) + (15)(1) = 1 $$ The series is thus $$ −14 − 11 + ^2 − 11^3 + ^4 − 11^5 + ⋯ $$
I don't see where the $c_n$ constants are coming from. We're using the MIT Mathematics for Computer Science textbook.
I've figured it out. It was listed in my book as the product rule. I'll add my solution for anyone else who stumbles on this.
The product rule is as follows:
For two functions $$ A(x) = \sum_{n=0}^\infty a_nx^n $$ $$ B(x) = \sum_{n=0}^\infty b_nx^n $$ Then $$ [x^n](A(x)*B(x)) = a_0b_n + a_1b_{n-1} a_2b_{n-2} + ... + a_nb_0 $$ So $$ [x^0](A(x)*B(x)) = c_0 = a_0b_0 = -14*1 = -14$$ $$ [x^1](A(x)*B(x)) = c_1 = a_0b_1 + a_1b_0 = (-14*0) + (-11*1) = -11 $$ $$ [x^2](A(x)*B(x)) = c_2 = a_0b_2 + a_1b_1 + a_2b_0 = (-14*1) + (-11*0) + (15*1) = 1$$
and so forth until you notice the pattern and can say $$ −14−11+^2−11^3+^4−11^5+⋯ $$