I'm given the following convolution problem. I distribute the values that correspond to each delta, then add the time shifts. I get the correct solution which is D
But, is it possible to work these problems in a calculator? This problem in particular creates a 4x3 matrix. Would it be possible to turn the input into a series of complex numbers then multiply the real part while adding the time shifts.
For example (I'm using the asterisk (*) to denote convolution)
(2δ[n]-δ[n-1])*(δ[n-1]-δ[n-2])
Would go to
(2+0i, -1-i) * (1-i, -1-2i)
So my convolution would be
(2-i, -2-2i, -1-2i, 1-3i) or 2δ[n-1]-2δ[n-2]-δ[n-2]+δ[n-3]
So, ultimately what I'm trying to ask is, can I multiply one part of a number while adding the other. Or, is there a better way to solve convolutions all together?