In SymPy.jl I’m seeing a strange order of operations. Is there a way to have a(1/a) == 1 or do I always need to explicitly include the * operator before the parentheses? Thanks!
using SymPy
@vars a
a(1/a) == 1 / a # == true
a*(1/a) == 1 # == true