I'm trying to get sympy to solve the trigonometric equations below, but it gives me this error:
NotImplementedError: could not solve b*tan(3*atan(6/b)/2) - 9
Is there a way for me to be able to get sympy to solve the equation below?
import sympy
from sympy import *
a = sympy.symbols("a")
b = sympy.symbols("b")
eq1 = sympy.Eq(b*tan(2*a), 6)
eq2 = sympy.Eq(b*tan(3*a), 9)
result = sympy.solve([eq1, eq2], (a,b))
print(result)