![]() | 1 | initial version |
Note that, for Sage :
sage: bool(tan(arctan(x))==x)
True
sage: bool(arctan(tan(x))==x)
False
(Indeed, the first expression is defined (and True) for all x∈R, whereas the second is defined for x≠2k+12π, k∈Z, and True only for x∈]−π2, π2[).
Note also that, for Sage :
sage: tan(pi/2-x).trig_expand()
cot(x)
sage: tan(x-pi/2).trig_expand()
-cot(x)
sage: bool(cot(x)==1/tan(x))
True
which allow to retrieve your equalities (assuming that the domain choosen for arctan is indeed ]−π2, π2[).