Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question

Revision history [back]

click to hide/show revision 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 xR, whereas the second is defined for x2k+12π, kZ, 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[).