After several weeks of trying on my own, I was hoping for a hand. I am familiar with transitioning ⌊ab/10⌋ to a mod function as well as a trig function. Ideally, I would like a solution that involved nothing more than */+-.
Thank you,
-Erick
a and b are whole numbers with any value from 0 to 9.
Based on the answers here, this is impossible with only the arithmetic symbols. This however leads me to ask if this would be possible with an integral or summation?
The answer you got that says it's impossible is wrong if you only have finitely many inputs. Let $D = \{0..9\}$ and the desired function be $f : D^2 \to \mathbb{R}$. Consider the function $g$ defined for any $x,y \in D$ by: $\def\less{\smallsetminus}$
This is valid since the denominators are non-zero.
Also notice that $g(x,y) = f(x,y)$ for any $x,y \in D$, because in the outer summation every term vanishes except the one where $⟨a,b⟩ = ⟨x,y⟩$, and in that one remaining term the products cancel. Symbolically, $\dfrac{ \prod_{c \in D \less \{a\}} (x-c) }{ \prod_{c \in D \less \{a\}} (a-c) } = \mathbf{1}_{x=a}$ for any $x \in D$, and likewise for the other factor.
Therefore there is a polynomial of degree at most $2|D|^2$ that exactly matches $f$ on $D^2$.
Hence we get a formula in $x,y$ using only arithmetic operations for any expression in terms of $x,y$ where $x,y \in D$, including "$\lfloor \frac{xy}{10} \rfloor$". The above technique generalizes to any function with arbitrary number of inputs from a field.