if we call:
x
= (-1)^2
h
= 2^n*u[2n+2], then
y
= x
* h
making a graph, x
will be an infinte alternating [... -1 1 -1 1 ...] with 1 for n=0
h
will be, instead, zero up to n = -2, then will be [0.5 1 2 4 8 16 32 ....] with 0.5 for n=-1
To perform the convolution we have to flip and shift in time one of the two functions. Here it esasier to flip x
because it will remain exactly the same (it's an even function). For n=0 we will have no shift of x
the we will obtain the sum:
0.5 - 1 + 2 - 4 ...... --> infinite
shifting by one:
-0.5 + 1 - 2 + 4 ...... --> infinite
then it will diverge. I think there should be a typo in the book. If we substitute 2^n with 2^(-n) the previous sums will converge to:
1/0.5 - 1/1 + 1/2 - 1/4 --> 4/3
-1/0.5 + 1/1 -1/2 +1/4 --> -4/3
in this case the solution is 4/3*(-1)^n
in order to have the factor 8/3 we'll need the step function starting from n=-2 instead of n=-1 that is u[2n+4]