Basic question on Julia symbolic. How to keep exp(1) as is and not convert it to a floating point number?

julia> using Symbolics

julia> Symbolics.Term(exp, 1)
exp(1)

julia> ans / ans
1

julia> Symbolics.Term(exp, ans)
exp(1)

julia> Symbolics.Term(exp, [ans])
exp(exp(1))

There are earlier threads on the same topic, btw:

2 Likes