I know that in first order logic one can use (n+1)-ary predicates instead of n-ary function symbols to "simulate" a partial function. So, I'm loking for the axioms for real numbers field expressed using ternary predicates (es. sum(x, y, z)) instead of binary function symbols, but I did not find them. I found only formulation with function symbols.
Could you tell me where I could find them?
Why not take an existing set of axioms and translate them? For example, associativity of addition:
$$ \forall x,y,z\; (x+y)+z=x+(y+z) $$
could be written as
$$ \forall x,y,z,s,t,u\; (sum(x,y,s) \wedge sum(s,z,t) \wedge sum(y,z,u) \implies sum(x,u,t))$$