Algunas de las funciones matemáticas se analizan a continuación en el conjunto 1 y el conjunto 2
Funciones Matemáticas en Python | Conjunto 1 (Funciones numéricas) Funciones
matemáticas en Python | Conjunto 2 (funciones logarítmicas y de potencia)
Las funciones trigonométricas y angulares se discuten en este artículo.
1. sin() :- Esta función devuelve el seno del valor pasado como argumento. El valor pasado en esta función debe estar en radianes .
2. cos() :- Esta función devuelve el coseno del valor pasado como argumento. El valor pasado en esta función debe estar en radianes .
# Python code to demonstrate the working of # sin() and cos() # importing "math" for mathematical operations import math a = math.pi/6 # returning the value of sine of pi/6 print ("The value of sine of pi/6 is : ", end="") print (math.sin(a)) # returning the value of cosine of pi/6 print ("The value of cosine of pi/6 is : ", end="") print (math.cos(a))
Producción:
The value of sine of pi/6 is : 0.49999999999999994 The value of cosine of pi/6 is : 0.8660254037844387
3. tan() :- Esta función devuelve la tangente del valor pasado como argumento. El valor pasado en esta función debe estar en radianes .
4. hypot(a, b) :- Esto devuelve la hipotenusa de los valores pasados en los argumentos. Numéricamente, devuelve el valor de sqrt(a*a + b*b) .
# Python code to demonstrate the working of # tan() and hypot() # importing "math" for mathematical operations import math a = math.pi/6 b = 3 c = 4 # returning the value of tangent of pi/6 print ("The value of tangent of pi/6 is : ", end="") print (math.tan(a)) # returning the value of hypotenuse of 3 and 4 print ("The value of hypotenuse of 3 and 4 is : ", end="") print (math.hypot(b,c))
Producción:
The value of tangent of pi/6 is : 0.5773502691896257 The value of hypotenuse of 3 and 4 is : 5.0
5. grados() : – Esta función se usa para convertir el valor del argumento de radianes a grados .
6. radianes() : – Esta función se usa para convertir el valor del argumento de grados a radianes .
# Python code to demonstrate the working of # degrees() and radians() # importing "math" for mathematical operations import math a = math.pi/6 b = 30 # returning the converted value from radians to degrees print ("The converted value from radians to degrees is : ", end="") print (math.degrees(a)) # returning the converted value from degrees to radians print ("The converted value from degrees to radians is : ", end="") print (math.radians(b))
Producción:
The converted value from radians to degrees is : 29.999999999999996 The converted value from degrees to radians is : 0.5235987755982988
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