Is there a name for the unique values produced by recursive function calls? Something like
$f(x) =$ (recursive applications of) $(x \cdot 2) \mod 6$
$f(1) = \{1, 2, 4\}$
Thank you.
Is there a name for the unique values produced by recursive function calls? Something like
$f(x) =$ (recursive applications of) $(x \cdot 2) \mod 6$
$f(1) = \{1, 2, 4\}$
Thank you.
One appropriate term would be "The closure of $\{a\}$ under $f$", since $\{f^n(a)\mid n\in\Bbb N\}=\{a,f(a),f(f(a)),\dots\}$ is in fact the smallest set containing $a$ which is closed under $f$.
Of course, $\{a\}$ can be replaced by any subset of the domain of $f$.