

   TThhee CCaauucchhyy DDiissttrriibbuuttiioonn

        dcauchy(x, location = 0, scale = 1)
        pcauchy(q, location = 0, scale = 1)
        qcauchy(p, location = 0, scale = 1)
        rcauchy(n, location = 0, scale = 1)

   AArrgguummeennttss::

        x,q: vector of quantiles.

          p: vector of probabilities.

          n: number of observations to generate.

   location,scale: location and scale parameters.

   VVaalluuee::

        These functions provide information about the Cauchy
        distribution with location parameter `location' and
        scale parameter `scale'.

        `dcauchy', `pcauchy', and `qcauchy' are respectively
        the density, distribution function and quantile func-
        tion of the Cauchy distribution.  `rcauchy' generates
        random deviates from the Cauchy.

        If `location' or `scale' are not specified, they assume
        the default values of `0' and `1' respectively.

        The Cauchy distribution with location l and scale s has
        density

                  f(x) = 1 / (pi s (1 + ((x-l)/s)^2))

        for all x.

   SSeeee AAllssoo::

        `dt' for the t distribution which generalizes
        `dcauchy(*, l = 0, s = 1)'.

   EExxaammpplleess::

        dcauchy(-1:4) == 1 / (pi*(1 + (-1:4)^2))

