I'm playing with FriCAS in sandbox and the problem is, When asked to find indefinite integral (as well as in many other cases), FriCAS outputs auto-generated variables in a rather unsightly manner, for example,
integrate(x^x, x)
outputs $\int_{}^x\%A^{\%A}\mathbb{d}\%A$ which is quite ugly.
The question is, is there a way to prettify the output? How can I substitute $\%A$ with $t$, for example?
Okay, so I contacted the guys at the fricas google group, as IV_ suggested in his comment to the question. Thanks again for pointing me there!
Waldek Hebisch posted the following code that solves my problem:
It would perform the necessary dummy variable substitution when used like this:
Which will produce a much cleaner answer, $\int_{}^{x}t^t\mathbb{d}t$, and that was precisely what I was looking for.