I have some calculations with an arbitrary function. In the output, Mathematica always shows the function arguments. I would like to tidy the notation a bit, by hidding the arguments in the output. How can I do that? Or even better, is there a way to write the function arguments just once in the code? Remembering it's an arbitrary function.
For example, its something like this:
f[x,y] + (f[x,y])^2 = ...
And I prefer like this:
f + f^2 = ...
Thanks!