I'm wondering if there is any way to tell Maxima to return
1/2*x
instead of
x/2
I'm trying to handle u-substitutions using changevar
however, it's returning expressions like:
\frac{\int \cos{u} \de{u}}{5}
whereas I'd like to have it display as
\frac{1}{5} \int \cos(u) \de{u}
or
\int \cos(u) \frac{1}{5} \de{u}
Is this possible? If so, any suggestions as to where to start?