Page 1 :
MATHEMATICAL FUNCTION, , o Numbers and Numeric Representation, , > ceil(x)- Rounds a number upwards to the nearest integer, and, returns the result., , * copysign(x, y) - It returns the number x and copy the sign of y, to x., , fabs(x) - Returns the absolute value of x., , > factorial(x)- Returns factorial of x. where x > 0, , floor(x) - Rounds a number downwards to the nearest integer,, and returns the result., , fsum(iterable)- Find sum of the elements in an iterable object, ged(x, y) - Returns the Greatest Common Divisor of x and y, isfinite(x)- Checks whether x is neither an infinity nor nan., isinf(x)- Checks whether x is infinity, , > isnan(x)- Checks whether x is not a number., remainder(x, y) - Find remainder after dividing x by y.