Is it possible to get any give number with a minimum value and a maximum value?
to output any number you desire?
for example
x ? y = z
x = any number between 0 and 9
? = any operator [+,-,/,*, square root, power of,etc...]
y = any number between 0 and 9
z = outcome is any number between 0 and 10,000 (ten thousand)
My second question is: is there a way or formula to do it in reverse for example,
578 = x ? y
So if I know what Z (or outcome is) can I calculate what the other factors can be to give me that outcome using a formula or algorithmic method?
Please ask away if you need further clarifications to my questions I will try my best to explain it further more.
This is a vague question. I'll restrict myself to power, roots and the standard binary operations.
If you restrict yourself to the integers (i.e. $x,\ y,\ z \in \mathbb{Z}$) then it's not too difficult to see that any prime larger than $18$ will not be representable. There's also the multiplicity argument given by Rahul Narain in the comments.
On the other hand, if we allow $x,\ y,\ z\in \mathbb{R}$ then any number between $1$ and $387420489 = 9^9$ will be representable by simply taking $x=9$ and varying $y$ from $0$ to $9$. The power function is continuous and any real number between the indicated limits will have a representation in the form of $x^y$. For numbers between $0$ and $1$ there are many representations. You can simply take for example $x=z$ and $y=0$ with addition.