El error al decir que el nombre 'math' no se define cuando se intenta usar asin ()

He hecho una calculadora Trignométrica (tipo de - solo usa la relación senoidal a partir de ahora) pero no puedo hacer que funcione correctamente. Recibo un error que dice que las matemáticas no están definidas cuando se supone que deben obtener la longitud de la línea. Aquí está mi 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

Respuestas a la pregunta(3)

Su respuesta a la pregunta