:mod:`math` =========== .. py:module:: math .. autoapi-nested-parse:: mathematical functions The `math` module provides some basic mathematical functions for working with floating-point numbers. .. raw:: html

Available on these boards

.. py:data:: e :annotation: :float base of the natural logarithm .. py:data:: pi :annotation: :float the ratio of a circle's circumference to its diameter .. py:function:: acos(x: float) -> float Return the inverse cosine of ``x``. .. py:function:: asin(x: float) -> float Return the inverse sine of ``x``. .. py:function:: atan(x: float) -> float Return the inverse tangent of ``x``. .. py:function:: atan2(y: float, x: float) -> float Return the principal value of the inverse tangent of ``y/x``. .. py:function:: ceil(x: float) -> int Return an integer, being ``x`` rounded towards positive infinity. .. py:function:: copysign(x: float, y: float) -> float Return ``x`` with the sign of ``y``. .. py:function:: cos(x: float) -> float Return the cosine of ``x``. .. py:function:: degrees(x: float) -> float Return radians ``x`` converted to degrees. .. py:function:: exp(x: float) -> float Return the exponential of ``x``. .. py:function:: fabs(x: float) -> float Return the absolute value of ``x``. .. py:function:: floor(x: float) -> int Return an integer, being ``x`` rounded towards negative infinity. .. py:function:: fmod(x: float, y: float) -> int Return the remainder of ``x/y``. .. py:function:: frexp(x: float) -> Tuple[int, int] Decomposes a floating-point number into its mantissa and exponent. The returned value is the tuple ``(m, e)`` such that ``x == m * 2**e`` exactly. If ``x == 0`` then the function returns ``(0.0, 0)``, otherwise the relation ``0.5 <= abs(m) < 1`` holds. .. py:function:: isfinite(x: float) -> bool Return ``True`` if ``x`` is finite. .. py:function:: isinf(x: float) -> bool Return ``True`` if ``x`` is infinite. .. py:function:: isnan(x: float) -> bool Return ``True`` if ``x`` is not-a-number .. py:function:: ldexp(x: float, exp: float) -> float Return ``x * (2**exp)``. .. py:function:: modf(x: float) -> Tuple[float, float] Return a tuple of two floats, being the fractional and integral parts of ``x``. Both return values have the same sign as ``x``. .. py:function:: pow(x: float, y: float) -> float Returns ``x`` to the power of ``y``. .. py:function:: radians(x: float) -> float Return degrees ``x`` converted to radians. .. py:function:: sin(x: float) -> float Return the sine of ``x``. .. py:function:: sqrt(x: float) -> float Returns the square root of ``x``. .. py:function:: tan(x: float) -> float Return the tangent of ``x``. .. py:function:: trunc(x: float) -> int Return an integer, being ``x`` rounded towards 0. .. py:function:: expm1(x: float) -> float Return ``exp(x) - 1``. .. py:function:: log2(x: float) -> float Return the base-2 logarithm of ``x``. .. py:function:: log10(x: float) -> float Return the base-10 logarithm of ``x``. .. py:function:: cosh(x: float) -> float Return the hyperbolic cosine of ``x``. .. py:function:: sinh(x: float) -> float Return the hyperbolic sine of ``x``. .. py:function:: tanh(x: float) -> float Return the hyperbolic tangent of ``x``. .. py:function:: acosh(x: float) -> float Return the inverse hyperbolic cosine of ``x``. .. py:function:: asinh(x: float) -> float Return the inverse hyperbolic sine of ``x``. .. py:function:: atanh(x: float) -> float Return the inverse hyperbolic tangent of ``x``. .. py:function:: erf(x: float) -> float Return the error function of ``x``. .. py:function:: erfc(x: float) -> float Return the complementary error function of ``x``. .. py:function:: gamma(x: float) -> float Return the gamma function of ``x``. .. py:function:: lgamma(x: float) -> float Return the natural logarithm of the gamma function of ``x``.