In an earlier post I asked if the Fourier sine and cosine transforms were commutative, answers to which were given in the affirmative. However, in Mathematica I've taken a closer look to find this:
FourierSinTransform[FourierCosTransform[x/(x^2 + 1), x, t], t, x]
gives the answer $$\frac{2x\log(x)}{\pi(1+x^2)},$$ and
FourierCosTransform[FourierSinTransform[x/(x^2 + 1), x, t], t, x]
gives the answer $$\frac{1}{1+x^2},$$
which are clearly not the same functions. Are the Fourier sine/cosine transforms really commutative then, or maybe I'm doing something wrong in Mathematica?