Algunas de las funciones matemáticas se analizan a continuación: conjunto 1, conjunto 2 y conjunto 3
Funciones matemáticas en Python | Conjunto 1 (Funciones numéricas) Funciones
matemáticas en Python | Set 2 (Funciones logarítmicas y de potencia) Funciones
matemáticas en Python | Conjunto 3 (Funciones Trigonométricas y Angulares)
Las funciones especiales y las constantes se tratan en este artículo.
1. gamma() : – Esta función se usa para devolver la función gamma del argumento.
# Python code to demonstrate the working of # gamma() # importing "math" for mathematical operations import math a = 4 # returning the gamma() of 4 print ("The gamma() of 4 is : ", end="") print (math.gamma(a))
Producción:
The gamma() of 4 is : 6.0
2. pi : – Esta es una constante incorporada que genera el valor de pi (3.141592) .
3. e : – Esta es una constante incorporada que genera el valor de e(2.718281) .
# Python code to demonstrate the working of # const. pi and e # importing "math" for mathematical operations import math # returning the value of const. pi print ("The value of const. pi is : ", end="") print (math.pi) # returning the value of const. e print ("The value of const. e is : ", end="") print (math.e)
Producción:
The value of const. pi is : 3.141592653589793 The value of const. e is : 2.718281828459045
4. inf : – Esta es una constante de infinito de coma flotante positiva . -inf se usa para denotar el infinito de punto flotante negativo. Esta constante se define en Python 3.5 y superior.
5. isinf() :- Esta función se usa para comprobar si el valor es infinito o no.
6. nan : – Esta constante denota » No es un número » en python. Esta constante se define en Python 3.5 y superior.
7. isnan() :- Esta función devuelve verdadero si el número es «nan»; de lo contrario, devuelve falso.
# Python code to demonstrate the working of # inf, nan, isinf(), isnan() # importing "math" for mathematical operations import math # checking if number is nan if (math.isnan(math.nan)): print ("The number is nan") else : print ("The number is not nan") # checking if number is positive infinity if (math.isinf(math.inf)): print ("The number is positive infinity") else : print ("The number is not positive infinity")
Producción:
The number is nan The number is positive infinity
Este artículo es una contribución de Manjeet Singh . Si le gusta GeeksforGeeks y le gustaría contribuir, también puede escribir un artículo usando contribuya.geeksforgeeks.org o envíe su artículo por correo a contribuya@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA