Is there a WolframAlpha command that would allow me to input a function and then evaluate an expression containing it? For instance I have a lengthy function like $f(x) = \frac{x^3 + \sin(x)}{\arcsin(x) + \frac{2}{x}} $ and I don't want to evaluate $f(5) - f(3)$ by writing $f$ twice substituting for $x$ first $5$ and then $3$ but write it only once and then use its name e.g $f$ as a reference like this:
f(x) = (x^3 + sin(x))/(arcsin(x) + 2/x), f(5) - f(3)
evaluate f(5) + f(3) for f(x) = x^2does not work, thoughevaluate f(5) - f(3) for f(x) = x^2works. – Matt Jan 14 '18 at 13:40