While $z=x+y$ is a boolean function of three variables, currying $y=1$ gets the two-variable function $z=x+1$. These facts identify such functions' minimal arities (the implementation of them might increase arity with unused arguments, e.g. `def f(x, y, z, a): return z==x+y` in Python has arity $4$).