8.3 Discrete-Time Systems 489
or the convolution sum of the input and the impulse response. This is a very important result, indicating
that the output of FIR systems is obtained by means of the convolution sum rather than difference
equations, which gives great significance to the efficient computation of the convolution sum.
n Considering the convolution sum as an operator—that is,
y[n]=[h∗x][n]=
∑∞
k=−∞
x[k]h[n−k]
it is easily shown to be linear. Indeed, whenever the input is ax 1 [n]+bx 2 [n], and{yi[n]}are the outputs
corresponding to{xi[n]}for i=1, 2, then we have that
[h∗(ax 1 +bx 2 )][n]=
∑
k
(ax 1 [k]+bx 2 [k])h[n−k]=a
∑
k
x 1 [k]h[n−k]+b
∑
k
x 2 [k]h[n−k]
=a[h∗x 1 ][n]+b[h∗x 2 ][n]=ay 1 [n]+by 2 [n]
as expected, since the system was assumed to be linear when the expression for the convolution sum was
obtained. We will then have that if the output corresponding to x[n]is y[n], given by the convolution
sum, then the output corresponding to a shifted version of the input, x[n−N], should be y[n−N]. In
fact, if we let x 1 [n]=x[n−N], the corresponding output is
[h∗x 1 ][n]=
∑
k
x 1 [n−k]h[k]=
∑
k
x[n−N−k]h[k]
=[h∗x][n−N]=y[n−N]
Again, this result is expected given that the system was considered time invariant when the convolution
sum was obtained.
n From the equivalent representations for the convolution sum we have that
[h∗x][n]=
∑
k
x[k]h[n−k]=
∑
k
x[n−k]h[k]
=[x∗h][n]
indicating that the convolution commutes with respect to the input x[n]and the impulse response h[n].
n Just as with continuous-time systems, when conecting two LTI discrete-time systems (with impulse
responses h 1 [n]and h 2 [n]) in cascade or in parallel, their respective impulse responses are given by
[h 1 ∗h 2 ][n]and h 1 [n]+h 2 [n]. See Figure 8.9 for block diagrams.
n There are situations when instead of giving the input and the impulse response to compute the output, the
information that it is available is, for instance, the input and the output and we wish to find the impulse
response of the system, or we have the output and the impulse response and wish to find the input. This
type of problem is calleddeconvolution. We consider this problem later in this chapter after considering
causality, and in Chapter 9 where we show that it can be easily solved using the Z-transform.
n The computation of the convolution sum is typically difficult. It is made easier when the Z-transform is
used, as we will see. MATLAB provides the functionconvwhich greatly simplifies the computation.