Home »
Python
math.asin() method with example in Python
Python math.asin() method: Here, we are going to learn about the math.asin() method with example in Python.
Submitted by IncludeHelp, on April 21, 2019
Python math.asin() method
math.asin() method is a library method of math module, it is used to get the arc sine, it accepts a number between -1 to 1 and returns the arc sine value (in radians) of the given number.
Note: math.asin() method accepts the only number between the range of -1 to 1, if we provide number out of the range, it returns a ValueError - "ValueError: math domain error", and if we provide anything else except the number, it returns error TypeError - "TypeError: a float is required".
Syntax of math.asin() method:
math.asin(x)
Parameter(s): x – is the number whose arc sine to be calculated.
Return value: float – it returns a float value that is the arc sine value of the number x.
Example:
Input:
a = 0.278
# function call
print(math.asin(a))
Output:
0.281711406942867
Python code to demonstrate example of math.asin() method
# python code to demonstrate example of
# math.asin() method
# importing math module
import math
# number
a = -1
print("asin(",a,") is = ", math.asin(a))
a = 0
print("asin(",a,") is = ", math.asin(a))
a = 0.278
print("asin(",a,") is = ", math.asin(a))
a = 1
print("asin(",a,") is = ", math.asin(a))
Output
asin( -1 ) is = -1.5707963267948966
asin( 0 ) is = 0.0
asin( 0.278 ) is = 0.281711406942867
asin( 1 ) is = 1.5707963267948966
ValueError example
# python code to demonstrate example of
# math.asin() method with an exception
# importing math module
import math
# number
a = 2
print("asin(",a,") is = ", math.asin(a))
Output
Traceback (most recent call last):
File "/home/main.py", line 9, in <module>
print("asin(",a,") is = ", math.asin(a))
ValueError: math domain error
TypeError example
# python code to demonstrate example of
# math.asin() method with an expection
# importing math module
import math
# number
a = "2"
print("asin(",a,") is = ", math.asin(a))
Output
Traceback (most recent call last):
File "/home/main.py", line 9, in <module>
print("asin(",a,") is = ", math.asin(a))
TypeError: a float is required