I need to find the convolution product f*g when the functions f, g on P_{4} are given by:
(a) f:=(1,2,3,4), g:=(1,0,0,0)
(b) f:=(1,2,3,4), g:=(0,0,1,0)
I know that (f*g)[n]=f[0]\cdot g[n]+f[1]\cdot g[n-1]+f[2]\cdot g[n-2]+...+f[N-1]\cdot g[n-(N-1)]
and
\sum_{m=0}^{N-1}f[m]g[n-m] when f...