Maths Functions
| 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). |
| 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