3

Does someone know how to do the Fourier Transform of the signal

$$x(t) = t \cdot \frac{\sin^2(t)}{(\pi t)^2}$$

My first thought was: $$x(t)= \frac{t}{\pi^2} \cdot \frac{\sin^2(t)}{t^2} = \frac{t}{\pi^2} \cdot \operatorname{sinc}^2(t)$$

and try it with the convolution:

$$X(j \omega) = \frac{1}{2 \pi} \cdot F\left(\frac{t}{\pi^2}\right) * F(\operatorname{sinc}^2(t))$$

But the Fourier Transform of $t$ doesn't exist I think. How can I go from here?

Edit:

The solution says

$$X(j \omega) = \frac{j}{2 \pi}\quad\text{for}\quad-2 <\omega<0$$

and

$$X(j \omega) = \frac{-j}{2 \pi}\quad\text{for}\quad0 <\omega<2$$

and $0$ everywhere else. But I have no idea how to get there.

2 Answers2

3

HINTS:

From the Convolution Theorem, we have

$$\int_{-\infty}^\infty f(t)g(t)\,e^{i\omega t}\,dt=\frac{1}{2\pi}\int_{-\infty}^\infty F(\omega-\omega')G(\omega')\,d\omega'$$

Setting $f(t)=g(t)=\frac{\sin(t)}{\pi t}$ reveals

$$\int_{-\infty}^{\infty}\left(\frac{\sin(t)}{\pi t}\right)^2e^{i\omega t}\,dt=\frac1{2\pi}\int_{-\infty}^{\infty}F(\omega-\omega')F(\omega')\,d\omega'$$

where $ F(\omega)=\int_{-\infty}^{\infty}\frac{\sin(t)}{\pi t}e^{-i\omega t}\,dt=\text{rect}(\omega/2)$, where $\text{rect}(x)$ is the Rectangle Function.

Finally, note that if $F(\omega)=\int_{-\infty}^\infty f(t)e^{i\omega t}\,dt$, then $F'(\omega)=i\int_{-\infty}^\infty tf(t)\,e^{i \omega t}\,dt$.


SPOLIER ALERT Scroll over the highlighted area to reveal the solution

We have $F(\omega)=\text{rect}(\omega/2)$. Then, the convolution $\frac1{2\pi}\{F*F\}(\omega)$ becomes $$\frac1{2\pi}\{F*F\}(\omega)=\frac1{2\pi}\int_{-\infty}^\infty \text{rect}((\omega-\omega')/2)\,\text{rect}(\omega'/2)\,d\omega'=\begin{cases}\frac1{2\pi}(\omega +2)&,-2\le \omega <0\\\\\frac1{2\pi}(2-\omega)&,0<\omega\le 2\\\\0&,\text{elsewhere}\end{cases}$$The derivative of the convolution is given by $$\frac{d}{d\omega}\left(\frac1{2\pi}\{F*F\}(\omega)\right)=\begin{cases}\frac{1}{2\pi}&-2<\omega<0\\\\-\frac{1}{2\pi}&,0<\omega<2\\\\0&,\text{elsewhere}\end{cases}$$Finally, multiplying by $-i$ yields the Fourier Transform on interest $$\int_{-\infty}^\infty t\,\left(\frac{\sin(t)}{\pi t}\right)^2\,e^{i\omega t}\,dt=\begin{cases}\frac{-i}{2\pi}&,-2<\omega<0\\\\\frac{i}{2\pi}&,0<\omega<2\\\\0&,\text{elsewhere}\end{cases}$$

Mark Viola
  • 179,405
  • Thanks for the help, even though I don't fully understand. The post of Omnomnomnom helped already. – JavaForStarters Jan 03 '16 at 19:59
  • 1
    @canbus this approach is neat too! First, note that $rect(\omega)*rect(\omega)$ gives you a triangle. Then, he uses the differentiation property of the F-transform: $$ \mathcal F [t\cdot f(t)] = \frac{d}{d\omega} \mathcal F[f(t)] $$ – Ben Grossmann Jan 03 '16 at 20:06
  • That's clever, I will try this approach too. – JavaForStarters Jan 03 '16 at 20:10
1

Hint: You split $x(t)$ in a non-helpful way. Instead, note that $$ x(t) = \frac{1}{\pi^2} \sin t \cdot \operatorname{sinc}(t) $$ Now, $x$ is the product of two functions whose Fourier transform you may compute.

Ben Grossmann
  • 225,327