First time here? Check out the FAQ!
answered 11 years ago
You should be able to just check if it has no variables.
def is_numerically_evaluable(expr): return not expr.variables()
Then:
sage: is_numerically_evaluable(sin(1)) True sage: is_numerically_evaluable(x) False