def find_opposite_given_hypotenuse(theta, hypotenuse, mode, rounding_place=2): return trig_functions.sin_float(theta, mode, rounding_place) * hypotenuse
def find_hypotenuse_given_opposite(theta, opposite, mode, rounding_place=2): return (1 / trig_functions.sin_float(theta, mode, rounding_place)) * opposite