I have a signal that I want to sample using delta functions. The signal is: $x(t) = W^2sinc^2(Wt)$
and after the sampling we will have the signal $z(t)$. We know the form of the signal in the frequency domain, and it is:
$$Z(f) = W \sum \limits _{k=-\infty}^\infty \Lambda \left( \frac{f-kf_s}{W} \right)$$
With $\Lambda(x)$ the triangular function, which is:
$$ \Lambda(x) = \left\{ \begin{array}{l l} 1-|x| & \quad , |x|<1\\ 0 & \quad \text{otherwise} \end{array} \right. $$
The thing is that I want to calculate the energy of $z(t)$, within the frequencies $[-W,W]$. Using the Parseval theorem we can find this energy through the fourier transform, $Z(f)$:
$$ \mathcal{E}_z = \int \limits _{-W}^W |Z(f)|^2 df $$
But I am not sure how to handle the infinite summation within the integral. I thought:
$$ \begin{align*} \mathcal{E}_z &= \int \limits _{-W}^W |Z(f)|^2 df = \int \limits _{-W}^W\sum \limits _{k=-\infty}^\infty \left (W \Lambda \left( \frac{f-kf_s}{W} \right) \right) ^ 2df \\ &= 2 \int \limits _0^W \sum \limits _{k=-\infty}^\infty (W - |f + kf_s|) ^ 2 df = 2 \sum \limits _{k=-\infty}^\infty \int \limits _0^W (W - |f + kf_s|) ^ 2 df \end{align*} $$
Saying, $u = W - |f + kf_s|$, but I don't know if I have to change the limits of the integral, and if I do it, in the end I have a summation practically infinite. And this is not correct, because this integral is the area of a triangle (with some distortions depending on $f_s$ and aliasing phenomena).
How can I constrain the infinit sum according to the limits of my interation?
I don't want to give me a straight solution, I 'd rather be given a way to tackle these kind of problems. I just gave a specific example to be clear.
FourierTransform[W^2 Sinc[W x]^2, x, w], although it outputs it in a form which is hard to recognize as a triangle pulse (although when plotted it looks fine). – DumpsterDoofus Jan 16 '14 at 16:36