Trigonometric Functions
Function |
Description |
Return the arc cosine of x, in radians. |
|
Return the arc sine of x, in radians. |
|
Return the arc tangent of x, in radians. |
|
Return atan(y / x), in radians. |
|
Return the cosine of x radians. |
|
Return the Euclidean norm, sqrt(x*x + y*y). |
|
Return the sine of x radians. |
|
Return the tangent of x radians. |
|
Converts angle x from radians to degrees. |
|
Converts angle x from degrees to radians. |
Program on Trignametary functions
import math
print(math.acos(1))
print(math.asin(1))
print(math.atan(1))
print(math.atan2(1,3))
print(math.cos(1))
print(math.hypot(2,3))
print(math.sin(10))
print(math.tan(5))
print(math.degrees(10))
print(math.radians(45))
Mathematical Constants
Constants |
Description |
pi |
The mathematical constant pi. |
e |
The mathematical constant e. |
For
More Explanation
&
Online Classes
More Explanation
&
Online Classes
Contact Us:
+919885348743
+919885348743