M BUZZ CRAZE NEWS
// news

Convolution and multiplication of polynomials is the same?

By Gabriel Cooper
$\begingroup$

Give two polynomials with finite degree - I wonder if a multiplication of both polynomials is the same as the continous convolution of both polynomials? Can anybody shed some light on this?

$\endgroup$

2 Answers

$\begingroup$

To elaborate on qbert's answer a bit, suppose you had two polynomials $f$ and $g$ given by

$$ f(x) = \sum_{i=0}^m a_i x^i, \quad g(x) = \sum_{j=0}^n b_j x^j.$$

Then their product is

$$ f(x)g(x) = \sum_{i=0}^m \sum_{j=0}^n a_i b_j x^i x^j.$$

If we wish to write this in standard form (i.e. as a sum of single powers of $x$), then we need to consider powers of degree $i+j = k$. Rewriting slightly,

$$ f(x)g(x) = \sum_{i=0}^m \sum_{j=0}^n a_{k-j} b_j x^k.$$

$k$ ranges from $0$ to $m+n$, but now our sums are coupled since $j$ depends on $k$. This dependence is exactly that $j$ ranges from $0$ to $k$. The easy way to see this is just by writing out a few cases, but logically it follows because $a_0 x^0 b_k x^k$ results in a power of $k$. Thus

$$ f(x)g(x) = \sum_{k=0}^{m+n}\left( \sum_{j=0}^k a_{k-j} b_j\right) x^k.$$

The term inside the parentheses is the discrete convolution of the coefficients.

The fact that convolution shows up when doing products of polynomials is pretty closely tied to group theory and is actually very important for the theory of locally compact abelian groups. It provides a direct avenue of generalization from discrete groups to continuous groups. The discrete convolution is a very important aspect of $\ell^1$, which makes it clear that a lot of the setting for LCA groups is in $L^1$.

$\endgroup$ 1 $\begingroup$

It is procedurally the same as discrete convolution, which I think is what you mean.

The Cauchy products is generalizing multiplication of polynomials to multiplication of power series.

$\endgroup$ 1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy