I've got a problem I'm working out with some program I'm writing that requires knowing as many direct functions of a number as possible.
I know I'm messing technical terminology up extremely badly, but allow me to explain myself:
If I have a number n, I want to know as many functions as possible that are commonly recognized like this:
cos(n)
n!
tanh(n)
sqrt(n)
and so on.
I don't want functions that would use numbers, though.
The fourth root of n would be invalid because it uses 4.
Log base e of n would be invalid because it uses e, however ln(n) is acceptable because it isn't written with the number e.
I know it's a very vague question, but as a Pre-Calc student I am sure there's many I haven't been exposed to.
Thanks for any help!