Erro ao dizer que o nome 'math' não está definido ao tentar usar asin ()

Eu fiz uma calculadora Trignometric (Kind of - só usa a proporção sine a partir de agora), mas eu não posso fazê-lo funcionar direito. Eu recebo um erro que diz que matemática não é definida quando é suposto obter o comprimento da linha. Aqui está o meu código:

    trig = raw_input ('What are you looking for? A) I have the opposite, and I want the        Hypotenuse. ')
    if trig.lower() == 'a':
        ang = raw_input ('Please enter the measure of the angle you have ')
        line = raw_input ('Please enter the length of the opposite! ')
        math.asin (ang)*line

questionAnswers(3)

yourAnswerToTheQuestion