Math - Mathematical Functions - Python 3.10.1 Documentation
Math - Mathematical Functions - Python 3.10.1 Documentation
1 documentation
3.10.1 Go
These functions cannot be used with complex numbers; use the functions of the
same name from the cmath
module if you require support for complex
numbers. The distinction between functions which support complex
numbers and
those which don’t is made since most users do not want to learn quite as much
mathematics as
required to understand complex numbers. Receiving an exception
instead of a complex result allows earlier
detection of the unexpected complex
number used as a parameter, so that the programmer can determine how
and why it
was generated in the first place.
The following functions are provided by this module. Except when explicitly
noted otherwise, all return values are
floats.
math. ceil(x)
Return the ceiling of x, the smallest integer greater than or equal to x.
If x is not a float, delegates to
x.__ceil__() , which should return an
Integral value.
math. comb(n, k)
Return the number of ways to choose k items from n items without repetition
and without order.
math. copysign(x, y)
Return a float with the magnitude (absolute value) of x but the sign of
y. On platforms that support signed
zeros, copysign(1.0, -0.0)
returns -1.0.
math. fabs(x)
Return the absolute value of x.
math. factorial(x)
Return x factorial as an integer. Raises ValueError if x is not integral or
is negative.
Deprecated since version 3.9: Accepting floats with integral values (like 5.0 ) is deprecated.
math. floor(x)
Return the floor of x, the largest integer less than or equal to x.
If x is not a float, delegates to
x.__floor__() , which should return an
Integral value.
https://docs.python.org/3/library/math.html 1/9
15/12/21 20:03 math — Mathematical functions — Python 3.10.1 documentation
math. fmod(x, y)
3.10.1 Go
Return fmod(x, y) , as defined by the platform C library. Note that the
Python expression x % y may not
return the same result. The intent of the C
standard is that fmod(x, y) be exactly (mathematically; to infinite
precision) equal to x - n*y for some integer n such that the result has
the same sign as x and magnitude
less than abs(y) . Python’s x % y
returns a result with the sign of y instead, and may not be exactly
computable
for float arguments. For example, fmod(-1e-100, 1e100) is -1e-100 , but
the result of Python’s
-1e-100 % 1e100 is 1e100-1e-100 , which cannot be
represented exactly as a float, and rounds to the
surprising 1e100 . For
this reason, function fmod() is generally preferred when working with
floats, while
Python’s x % y is preferred when working with integers.
math. frexp(x)
Return the mantissa and exponent of x as the pair (m, e) . m is a float
and e is an integer such that x == m
* 2**e exactly. If x is zero,
returns (0.0, 0) , otherwise 0.5 <= abs(m) < 1 . This is used to “pick
apart” the
internal representation of a float in a portable way.
math. fsum(iterable)
Return an accurate floating point sum of values in the iterable. Avoids
loss of precision by tracking multiple
intermediate partial sums:
>>> sum([.1, .1, .1, .1, .1, .1, .1, .1, .1, .1])
>>>
0.9999999999999999
>>> fsum([.1, .1, .1, .1, .1, .1, .1, .1, .1, .1])
1.0
For further discussion and two alternative approaches, see the ASPN cookbook
recipes for accurate floating
point summation.
math. gcd(*integers)
Return the greatest common divisor of the specified integer arguments.
If any of the arguments is nonzero,
then the returned value is the largest
positive integer that is a divisor of all arguments. If all arguments
are
zero, then the returned value is 0 . gcd() without arguments
returns 0 .
Changed in version 3.9: Added support for an arbitrary number of arguments. Formerly, only two
arguments
were supported.
https://docs.python.org/3/library/math.html 2/9
15/12/21 20:03 math — Mathematical functions — Python 3.10.1 documentation
The IEEE 754 special values of NaN , inf , and -inf will be
handled according to IEEE rules. Specifically, NaN
is not considered
close to any other value, including NaN . inf and -inf are only
considered close to
themselves.
See also:
PEP 485 – A function for testing approximate equality
math. isfinite(x)
Return True if x is neither an infinity nor a NaN, and
False otherwise. (Note that 0.0 is considered finite.)
math. isinf(x)
Return True if x is a positive or negative infinity, and
False otherwise.
math. isnan(x)
Return True if x is a NaN (not a number), and False otherwise.
math. isqrt(n)
Return the integer square root of the nonnegative integer n. This is the
floor of the exact square root of n, or
equivalently the greatest integer
a such that a² ≤ n.
For some applications, it may be more convenient to have the least integer
a such that n ≤ a², or in other
words the ceiling of
the exact square root of n. For positive n, this can be computed using
a = 1 + isqrt(n
- 1) .
math. lcm(*integers)
Return the least common multiple of the specified integer arguments.
If all arguments are nonzero, then the
returned value is the smallest
positive integer that is a multiple of all arguments. If any of the arguments
is
zero, then the returned value is 0 . lcm() without arguments
returns 1 .
math. ldexp(x, i)
Return x * (2**i) . This is essentially the inverse of function
frexp() .
math. modf(x)
Return the fractional and integer parts of x. Both results carry the sign
of x and are floats.
math. nextafter(x, y)
Return the next floating-point value after x towards y.
If x is equal to y, return y.
Examples:
https://docs.python.org/3/library/math.html 3/9
15/12/21 20:03 math — Mathematical functions — Python 3.10.1 documentation
When the iterable is empty, return the start value. This function is
intended specifically for use with numeric
values and may reject
non-numeric types.
math. remainder(x, y)
Return the IEEE 754-style remainder of x with respect to y. For
finite x and finite nonzero y, this is the
difference x - n*y ,
where n is the closest integer to the exact value of the quotient x /
y . If x / y is
exactly halfway between two consecutive integers, the
nearest even integer is used for n . The remainder r =
remainder(x,
y) thus always satisfies abs(r) <= 0.5 * abs(y) .
math. trunc(x)
Return the Real value x truncated to an
Integral (usually an integer). Delegates to
x.__trunc__() .
math. ulp(x)
Return the value of the least significant bit of the float x:
https://docs.python.org/3/library/math.html 4/9
15/12/21 20:03 math — Mathematical functions — Python 3.10.1 documentation
For the ceil() , floor() , and modf() functions, note that all
floating-point numbers of sufficiently large
magnitude are exact integers.
Python floats typically carry no more than 53 bits of precision (the same as the
platform C double type), in which case any float x with abs(x) >= 2**52
necessarily has no fractional bits.
math. exp(x)
Return e raised to the power x, where e = 2.718281… is the base
of natural logarithms. This is usually more
accurate than math.e ** x
or pow(math.e, x) .
math. expm1(x)
Return e raised to the power x, minus 1. Here e is the base of natural
logarithms. For small floats x, the
subtraction in exp(x) - 1
can result in a significant loss of precision; the expm1()
function provides a way to
compute this quantity to full precision:
1.0000050000069649e-05
1.0000050000166668e-05
math. log1p(x)
Return the natural logarithm of 1+x (base e). The
result is calculated in a way which is accurate for x near
zero.
math. log2(x)
Return the base-2 logarithm of x. This is usually more accurate than
log(x, 2) .
https://docs.python.org/3/library/math.html 5/9
15/12/21 20:03 math — Mathematical functions — Python 3.10.1 documentation
See also:
int.bit_length() returns the number of bits necessary to represent
an integer in binary,
excluding the sign and leading zeros.
math. log10(x)
Return the base-10 logarithm of x. This is usually more accurate
than log(x, 10) .
math. pow(x, y)
Return x raised to the power y . Exceptional cases follow
Annex ‘F’ of the C99 standard as far as possible. In
particular,
pow(1.0, x) and pow(x, 0.0) always return 1.0 , even
when x is a zero or a NaN. If both x and
y are finite,
x is negative, and y is not an integer then pow(x, y)
is undefined, and raises ValueError .
math. sqrt(x)
Return the square root of x.
Trigonometric functions
math. acos(x)
Return the arc cosine of x, in radians. The result is between 0 and
pi .
math. asin(x)
Return the arc sine of x, in radians. The result is between -pi/2 and
pi/2 .
math. atan(x)
Return the arc tangent of x, in radians. The result is between -pi/2 and
pi/2 .
math. atan2(y, x)
Return atan(y / x) , in radians. The result is between -pi and pi .
The vector in the plane from the origin to
point (x, y) makes this angle
with the positive X axis. The point of atan2() is that the signs of both
inputs
are known to it, so it can compute the correct quadrant for the angle.
For example, atan(1) and atan2(1,
1) are both pi/4 , but atan2(-1,
-1) is -3*pi/4 .
math. cos(x)
Return the cosine of x radians.
math. dist(p, q)
Return the Euclidean distance between two points p and q, each
given as a sequence (or iterable) of
coordinates. The two points
must have the same dimension.
math. hypot(*coordinates)
https://docs.python.org/3/library/math.html 6/9
15/12/21 20:03 math — Mathematical functions — Python 3.10.1 documentation
Changed in version 3.8: Added support for n-dimensional points. Formerly, only the two
dimensional case
was supported.
Changed in version 3.10: Improved the algorithm’s accuracy so that the maximum error is
under 1 ulp (unit in
the last place). More typically, the result
is almost always correctly rounded to within 1/2 ulp.
math. sin(x)
Return the sine of x radians.
math. tan(x)
Return the tangent of x radians.
Angular conversion
math. degrees(x)
Convert angle x from radians to degrees.
math. radians(x)
Convert angle x from degrees to radians.
Hyperbolic functions
Hyperbolic functions
are analogs of trigonometric functions that are based on hyperbolas
instead of circles.
math. acosh(x)
Return the inverse hyperbolic cosine of x.
math. asinh(x)
Return the inverse hyperbolic sine of x.
math. atanh(x)
Return the inverse hyperbolic tangent of x.
math. cosh(x)
Return the hyperbolic cosine of x.
math. sinh(x)
Return the hyperbolic sine of x.
math. tanh(x)
Return the hyperbolic tangent of x.
Special functions
https://docs.python.org/3/library/math.html 7/9
15/12/21 20:03 math — Mathematical functions — Python 3.10.1 documentation
math. erf(x)
3.10.1 Go
Return the error function at
x.
def phi(x):
math. erfc(x)
Return the complementary error function at x. The complementary error
function is defined as
1.0 - erf(x) .
It is used for large values of x where a subtraction
from one would cause a loss of significance.
math. gamma(x)
Return the Gamma function at
x.
math. lgamma(x)
Return the natural logarithm of the absolute value of the Gamma
function at x.
Constants
math. pi
The mathematical constant π = 3.141592…, to available precision.
math. e
The mathematical constant e = 2.718281…, to available precision.
math. tau
The mathematical constant τ = 6.283185…, to available precision.
Tau is a circle constant equal to 2π, the
ratio of a circle’s circumference to
its radius. To learn more about Tau, check out Vi Hart’s video Pi is (still)
Wrong, and start celebrating
Tau day by eating twice as much pie!
math. inf
A floating-point positive infinity. (For negative infinity, use
-math.inf .) Equivalent to the output of
float('inf') .
math. nan
A floating-point “not a number” (NaN) value. Equivalent to the output of
float('nan') .
https://docs.python.org/3/library/math.html 8/9
15/12/21 20:03 math — Mathematical functions — Python 3.10.1 documentation
See also:
Module cmath
Complex number versions of many of these functions.
https://docs.python.org/3/library/math.html 9/9