Is the system y[n] = x[n] + x[n-1] invertible?
If yes, what's the value of x[n]?
If no, could you please introduce a counter example?
I couldn't find any counter example so I assumed the system is invertible and then tried to generate x[n] in terms of the output y but it always lead to a signal depending on a previous input.
x[n] = y[n] - x[n-1]
x[0] = y[0] - x[-1] --- 1
x[-1] = y[-1] - x[-2] --- substituting into 1:
x[0] = y[0] - y[-1] + x[-2],
and so on.. the resulting signal will always depend on another input. Does this imply non-invertibility of the system? if yes, do I not need a counter example?
Note: this isn't a homework question.