@(@\newcommand{\W}[1]{ \; #1 \; }
\newcommand{\R}[1]{ {\rm #1} }
\newcommand{\B}[1]{ {\bf #1} }
\newcommand{\D}[2]{ \frac{\partial #1}{\partial #2} }
\newcommand{\DD}[3]{ \frac{\partial^2 #1}{\partial #2 \partial #3} }
\newcommand{\Dpow}[2]{ \frac{\partial^{#1}}{\partial {#2}^{#1}} }
\newcommand{\dpow}[2]{ \frac{ {\rm d}^{#1}}{{\rm d}\, {#2}^{#1}} }@)@
This is cppad-20221105 documentation. Here is a link to its
current documentation
.
Inverse Tangent and Hyperbolic Tangent Forward Mode Theory
Derivatives
@[@
\begin{array}{rcl}
\R{atan}^{(1)} (x) & = & 1 / ( 1 + x * x )
\\
\R{atanh}^{(1)} (x) & = & 1 / ( 1 - x * x )
\end{array}
@]@If @(@
F(x)
@)@ is @(@
\R{atan} (x)
@)@ or @(@
\R{atanh} (x)
@)@,
the corresponding derivative satisfies the equation
@[@
(1 \pm x * x ) * F^{(1)} (x) - 0 * F (x) = 1
@]@
and in the
standard math function differential equation
,
@(@
A(x) = 0
@)@,
@(@
B(x) = 1 \pm x * x
@)@,
and @(@
D(x) = 1
@)@.
We use @(@
a
@)@, @(@
b
@)@, @(@
d
@)@ and @(@
z
@)@ to denote the
Taylor coefficients for
@(@
A [ X (t) ]
@)@,
@(@
B [ X (t) ]
@)@,
@(@
D [ X (t) ]
@)@,
and @(@
F [ X(t) ]
@)@ respectively.