In logic, we can use quantifiers, like $\forall$ or $\exists$, or binders, like $\sum_x, \min_x, \prod_x$, to bind variables. At least the quantifiers seem to also be called constants, while there are other constants like numbers like 2.
But sometimes I want to write formulae that have letters (which values I do not know), that are not bound by binders or quantifiers, but are assumed to be defined or "fixed" somewhere, such that my formula becomes truth-apt.
For example, I would like to say that (for the functions $M$ and $f$)
$$ \forall x ( M(x, \theta) = f(x)) $$
is not truth-apt, because $\theta$ is not bound. But, next, I find that
$$ \exists \theta, \forall x ( M(x, \theta) = f(x)) $$
and I also find this awesome $\theta$, which I shall call $\hat\theta$. Now I want to be able to say that
$$ \forall x ( M(x, \hat\theta) = f(x)), $$
but I am still missing the pre-definition of $\hat\theta$. Actually, $M$ and $f$ are also free variables.
However, I do not want to those down: $M$ and $f$ cannot be expressed with a mathematical expression (their values for a certain input can only be calculated via a complex computer algorithm and the details change all the time) and $\hat\theta$ is only conceptually available.
I am not even sure how to call these not-variables. Obviously they are no quantifiers or constant, but I do not want them to be variables either. I do not know the notation to make them bound.
Honestly, even if I could write $\theta$ down, I would not know how to express this.
$$ \forall x ( M(x, \theta=2) = f(x)), $$
or
$$ \theta=2, \forall x ( M(x, \theta) = f(x)), $$
or something else entirely?