Table of Contents list

Convolutions

The convolution of two signals f and g is defined as: (1): (ZR)×(ZR)(ZR):f[n],g[n](fg)[n]k=+f[k] g[nk] If no ambiguity exists, a shorthand can be used: fgk=+f[k] g[nk]

Properties

The convolution operator can be seen as a product of discrete functions, and it has many properties usually associated with multiplication.

Commutativity: fg=gf

Associativity: (fg)h=f(gh)

Distributivity: (f+g)h=fh+gh

Identity

Convolution with the Kronecker delta function results in the original signal, thanks to the sifting property of the delta function: fδ=f=δf

Unilateral signals

If the first signal is unilateral (i.e. n<0:f[n]=0), the lower bound of the summation becomes zero instead of minus infinity: fg=k=0+f[k] g[nk]

Signals as a sum of delta functions

Any discrete signal can be written as an infinite sum of scaled and shifted Kronecker delta functions. x[n]=k=+x[k] δ[nk] You can easily see that all terms where nk are zero, because the Kronecker delta is zero in that case. Only the term for n=k is non-zero, in which case the Kronecker delta is one, so the result is just x[k]. This is an application the sifting property of the delta function, covered in the previous page.

This once again shows that the Kronecker delta is the identity signal with respect to convolution operator, x[n]=(xδ)[n].

DTLTI systems as convolutions with the impulse response

You can express the output of any discrete-time linear time-invariant system T with any input x[n] as the convolution of the input with the impulse response of the system, h[n]T(δ[n]): (2)T(x[n])=(xh)[n]

Proof

The proof itself is very simple: We just decompose the input as a sum of delta functions, as described in a previous section, and then we use the linearity and time-invariance to bring the T operator inside of the summation. y[n]=T(x[n])=T(k=0x[k] δ[nk])=k=0T(x[k] δ[nk])=k=0x[k] T(δ[nk])=k=0x[k] h[nk](xh)[n] Because of the linearity of the system, T can be brought inside of the summation, and since x[k] is a constant factor independent of the time step n, it can be moved outside of the T operator. T applied to the Kronecker delta is (by definition) the impulse response of T, h[n]. In this case, it is shifted by k time steps, which is allowed because of the time-invariance of T.

An important consequence is that every DTLTI transformation can be uniquely represented by its impulse response, in other words, there is a one-to-one correspondence between the definition of transformation T and its impulse response h[n].