Scaled unit impulse/step sequences

  • Thread starter Thread starter freezer
  • Start date Start date
  • Tags Tags
    Sequences Unit
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
freezer
Messages
75
Reaction score
0

Homework Statement



[itex]b_{k} = {4, 1, 1, 4}[/itex]

x[n] = 2u[n]

Write your answer using scaled unit impulse sequences and scaled unit step sequences. Write explicitly.

Homework Equations


The Attempt at a Solution



Code:
4114
2222222...
------------
8228
 8228
  8228
   8228
    8228
      ...
------------
8, 10, 12, 20, 20, 20, ...

[itex]x[n] = 8\delta[n] + 10\delta[n-1] + 12\delta[n-2] + \sum^{\infty}_{k=3} 20 \delta[n-k][/itex][itex] \delta[n] = \left\{\begin{matrix}<br /> 0 & n<0\\ <br /> 8 & n = 0\\ <br /> 10 & n = 1 \\ <br /> 12 & n = 2\\ <br /> 20 & n \geq 3 <br /> \end{matrix}\right.[/itex]

Is this how you would answer this question?
 
Last edited:
Physics news on Phys.org
The general difference equation for a causal FIR is:

[itex]y[n] = \sum^{\infty}_{k=0} b_{k} x[n-k][/itex]

and then

[itex] \delta[n] = \left\{\begin{matrix}<br /> 0 & n<0\\ <br /> 8 & n = 0\\ <br /> 10 & n = 1 \\ <br /> 12 & n = 2\\ <br /> 20 & n \geq 3 <br /> \end{matrix}\right.[/itex]
 
Last edited:
Your expression for x[n] is correct. But I don't quite understand your table, probably because I can't make out the column after the 1st equal sign.

But δ[n] = 1, n = 0
= 0, n > 0 always.

BTW your equation is for a non-recursive filter, which is not necessarily an FIR filter.
FIR filters can also be recursive, and IIR filters can be non-recursive. However, saying FIR → non-recursive and IIR → recursive is almost universal, if misleading.