Maths Functions

acosReturns the arc cosine of x, in radians (math, numpy).
acoshReturns test (math, numpy).
asinReturns the arc sine of x, in radians. (math, numpy).
asinhReturns test (math, numpy).
atanReturns the arc tangent of x, in radians. (math, numpy).
atan2Returns atan(y / x), in radians. (math, numpy).
atanhReturns test (math, numpy).
cbrtReturns the cubed root. (math, numpy).
ceilReturns the ceiling of x (smallest integer >= x). (math, numpy).
combReturns test (math).
complexConvert or create a complex number from a string or number (built-in).
copysignReturns test (math, numpy).
cosReturn the cosine of x radians. (math, numpy).
coshReturns test (math).
degreesReturns the angle x from radians to degrees. (math).
distReturns test (math).
eReturns the mathematical constant e (2.718...). (math).
erfReturns the complementary error function at x (math).
erfcReturns the complementary error function at x (math).
expReturns e raised to the power x (math).
exp2Returns 2 raised to the power x (math, numpy).
expm1Returns test (math, numpy).
fabsReturns the absolute value of a number as a floating point (math, numpy).
factorialReturns x! as an exact integer. (math).
floorReturns the floor of x (largest integer <= x). (math, numpy).
fmaReturns test (math).
fmodReturns test (math, numpy).
frexpReturns test (math, numpy).
fsumReturns test (math).
gammaReturns test (math).
gcdReturns the greatest common divisor of the specified integer arguments (math, numpy).
getstateReturns test (random).
hexReturns the number converted to a hexadecimal string (built-in).
hypotReturns the Euclidean norm, sqrt(x*x + y*y). (math).
infReturns floating-point positive infinity. (math).
iscloseReturns test (math).
isfiniteReturns True if x is neither infinite nor NaN. (math).
isinfReturns True if x is a positive or negative infinity. (math).
isnanReturns True if x is a NaN (not a number). (math).
isqrtReturns the integer square root of the nonnegative integer n (math).
lcmReturns the least common multiple (math, numpy).
ldexpused to compute the expression x * (2**i) . (math, numpy).
lgammaReturns test (math).
logReturns the natural logarithm of x. (math, numpy).
log10Returns the base-10 logarithm of x. (math, numpy).
log1pReturns test (math, numpy).
log2Returns test (math, numpy).
modfReturns test (math, numpy).
nanReturns floating-point "not a number" (NaN). (math).
nextafterReturns test (math, numpy).
octReturns the number converted to a octal string (built-in).
permReturns test (math).
piReturns the mathematical constant p (3.14159...). (math).
powReturns base to the power of exponent (built-in, numpy).
prodReturns test (math, numpy).
radiansReturns the angle x from degrees to radians. (math).
randbytesReturns test (random).
randintReturns test (random).
randomReturns test (random).
randrangeReturns test (random).
remainderReturns test (math, numpy).
roundReturns the number rounded to a specific number of decimal places (built-in, numpy).
sampleReturns test (random).
seedReturns test (random).
setstateReturns test (random).
shuffleReturns test (random).
sinReturns the sine of x radians. (math, numpy).
sinhReturns test (math, numpy).
sqrtReturns the square root of x (math, numpy).
sumReturns the total of all the items of an iterable (built-in, numpy).
sumprodReturns test (math).
tanReturns the tangent of x radians (math, numpy).
tanhReturns test (math, numpy).
tauReturns test (math).
truncReturns x truncated to an integer (math, numpy).
ulpReturns test (math).
uniformReturns test (random).
acos
Returns the arc cosine of x, in radians (math, numpy).
acosh
Returns test (math, numpy).
asin
Returns the arc sine of x, in radians. (math, numpy).
asinh
Returns test (math, numpy).
atan
Returns the arc tangent of x, in radians. (math, numpy).
atan2
Returns atan(y / x), in radians. (math, numpy).
atanh
Returns test (math, numpy).
cbrt
Returns the cubed root. (math, numpy).
ceil
Returns the ceiling of x (smallest integer >= x). (math, numpy).
comb
Returns test (math).
complex
Convert or create a complex number from a string or number (built-in).
copysign
Returns test (math, numpy).
cos
Return the cosine of x radians. (math, numpy).
cosh
Returns test (math).
degrees
Returns the angle x from radians to degrees. (math).
dist
Returns test (math).
e
Returns the mathematical constant e (2.718...). (math).
erf
Returns the complementary error function at x (math).
erfc
Returns the complementary error function at x (math).
exp
Returns e raised to the power x (math).
exp2
Returns 2 raised to the power x (math, numpy).
expm1
Returns test (math, numpy).
fabs
Returns the absolute value of a number as a floating point (math, numpy).
factorial
Returns x! as an exact integer. (math).
floor
Returns the floor of x (largest integer <= x). (math, numpy).
fma
Returns test (math).
fmod
Returns test (math, numpy).
frexp
Returns test (math, numpy).
fsum
Returns test (math).
gamma
Returns test (math).
gcd
Returns the greatest common divisor of the specified integer arguments (math, numpy).
getstate
Returns test (random).
hex
Returns the number converted to a hexadecimal string (built-in).
hypot
Returns the Euclidean norm, sqrt(x*x + y*y). (math).
inf
Returns floating-point positive infinity. (math).
isclose
Returns test (math).
isfinite
Returns True if x is neither infinite nor NaN. (math).
isinf
Returns True if x is a positive or negative infinity. (math).
isnan
Returns True if x is a NaN (not a number). (math).
isqrt
Returns the integer square root of the nonnegative integer n (math).
lcm
Returns the least common multiple (math, numpy).
ldexp
used to compute the expression x * (2**i) . (math, numpy).
lgamma
Returns test (math).
log
Returns the natural logarithm of x. (math, numpy).
log10
Returns the base-10 logarithm of x. (math, numpy).
log1p
Returns test (math, numpy).
log2
Returns test (math, numpy).
modf
Returns test (math, numpy).
nan
Returns floating-point "not a number" (NaN). (math).
nextafter
Returns test (math, numpy).
oct
Returns the number converted to a octal string (built-in).
perm
Returns test (math).
pi
Returns the mathematical constant p (3.14159...). (math).
pow
Returns base to the power of exponent (built-in, numpy).
prod
Returns test (math, numpy).
radians
Returns the angle x from degrees to radians. (math).
randbytes
Returns test (random).
randint
Returns test (random).
random
Returns test (random).
randrange
Returns test (random).
remainder
Returns test (math, numpy).
round
Returns the number rounded to a specific number of decimal places (built-in, numpy).
sample
Returns test (random).
seed
Returns test (random).
setstate
Returns test (random).
shuffle
Returns test (random).
sin
Returns the sine of x radians. (math, numpy).
sinh
Returns test (math, numpy).
sqrt
Returns the square root of x (math, numpy).
sum
Returns the total of all the items of an iterable (built-in, numpy).
sumprod
Returns test (math).
tan
Returns the tangent of x radians (math, numpy).
tanh
Returns test (math, numpy).
tau
Returns test (math).
trunc
Returns x truncated to an integer (math, numpy).
ulp
Returns test (math).
uniform
Returns test (random).

© 2026 Better Solutions Limited. All Rights Reserved. © 2026 Better Solutions Limited Top