def find_adjacent_given_hypotenuse(theta, hypotenuse, mode, rounding_place=2): return trig_functions.cos_float(theta, mode, rounding_place) * hypotenuse
def find_hypotenuse_given_adjacent(theta, adjacent, mode, rounding_place=2): return (1 / trig_functions.cos_float(theta, mode, rounding_place)) * adjacent