How do I count the number of trig operations in an expression?
I have an expression of the form a*sin(x)+b*cos(x)
that I would like sympy to convert to c*sin(x+phi)
.
@asmeurer made a comment in an earlier question about simplifying trig expressions that suggested the fu() algorithm can be tuned to minimize an arbitrary measure.
I suspect I can get my expression to reduce if I set measure to be the number of trig ops in the expression.