Blame doc/specfunc-dilog.rst

Packit 67cb25
.. index:: dilogarithm
Packit 67cb25
Packit 67cb25
The dilogarithm is defined as
Packit 67cb25
Packit 67cb25
.. only:: not texinfo
Packit 67cb25
Packit 67cb25
   .. math:: Li_2(z) = - \int_0^z ds {\log{(1-s)} \over s}
Packit 67cb25
Packit 67cb25
.. only:: texinfo
Packit 67cb25
Packit 67cb25
   .. math:: Li_2(z) = - \int_0^z ds log(1-s) / s
Packit 67cb25
Packit 67cb25
The functions described in this section are declared in the header file
Packit 67cb25
:file:`gsl_sf_dilog.h`.
Packit 67cb25
Packit 67cb25
Real Argument
Packit 67cb25
-------------
Packit 67cb25
Packit 67cb25
.. function:: double gsl_sf_dilog (double x)
Packit 67cb25
              int gsl_sf_dilog_e (double x, gsl_sf_result * result)
Packit 67cb25
Packit 67cb25
   These routines compute the dilogarithm for a real argument. In Lewin's
Packit 67cb25
   notation this is :math:`Li_2(x)`, the real part of the dilogarithm of a
Packit 67cb25
   real :math:`x`.  It is defined by the integral representation
Packit 67cb25
Packit 67cb25
   .. math:: Li_2(x) = - \Re \int_0^x ds \log(1-s) / s
Packit 67cb25
Packit 67cb25
   Note that :math:`\Im(Li_2(x)) = 0` for
Packit 67cb25
   :math:`x \le 1`, and :math:`-\pi\log(x)` for :math:`x > 1`.
Packit 67cb25
Packit 67cb25
   Note that Abramowitz & Stegun refer to the Spence integral
Packit 67cb25
   :math:`S(x) = Li_2(1 - x)` as the dilogarithm rather than :math:`Li_2(x)`.
Packit 67cb25
Packit 67cb25
Complex Argument
Packit 67cb25
----------------
Packit 67cb25
Packit 67cb25
.. function:: int gsl_sf_complex_dilog_e (double r, double theta, gsl_sf_result * result_re, gsl_sf_result * result_im)
Packit 67cb25
Packit 67cb25
   This function computes the full complex-valued dilogarithm for the
Packit 67cb25
   complex argument :math:`z = r \exp(i \theta)`. The real and imaginary
Packit 67cb25
   parts of the result are returned in :data:`result_re`, :data:`result_im`.