MATLAB: A help with fourier transform

convolutionfouriernon-matlab questionsinc

can any one help me with this question please ?
the question says: using fourier transform properties, prove that sinc(t)*sinc(t) = sinc(t)

Best Answer

Assuming your * means convolution, which is often two *, and knowing that convolution in one domain is multiplication in the other domain:
fft(sinc**sinc) = fft(sinc) * fft(sinc) = rect*rect = rect
and
ifft(rect) = sinc = same as what you started with.
so sinc**sinc = sinc.