8

(before saying it's duplicate, read whole question)

I was told by someone that we can define addition and multiplication purely in terms of successor function, provided that we work in second order arithmetic. When trying to find a way in which it's defined, I found this M.SE question, and in the first answer a definition is given. I found it, however, quite unsatisfactory, because this definition uses quantification over functional symbols (which can be rewritten to use binary predicate quantification), and I expected a definition which would only require quantification over subsets of $\Bbb N$ (equivalently unary predicates). I expect something similar to answer to this question.

My question is: how to define addition in second order arithmetic using quantification over sets only? Is that even possible?

Thanks in advance.

Wojowu
  • 26,600

2 Answers2

10

As it says in the answer to Can equinumerosity by defined in monadic second-order logic?, Büchi showed that the monadic second order of theory of the successor function is decidable. This implies that you cannot define addition in this theory, because if you could, then you could also define multiplication (as shown in the answer to How to define multiplication in addition terms in monadic second order logic?) and then the theory would be at least as strong as PA, which is not decidable.

I can't find the original work by Büchi online, but this paper by Rabinovich and Thomas has the relevant references.

Rob Arthan
  • 48,577
  • I must admit that I'm a bit disappointed with the impossibility of this result. Thanks for the reference. – Wojowu Jan 03 '15 at 13:05
-3

Not sure what you mean by "using quantification over sets only," but this is how you define addition and multiplication in terms of the successor function.

Addition:

$\forall x \in N: x+0=x$

$\forall x,y\in N: x+S(y) = S(x+y)$

Multiplication:

$\forall x \in N: x\cdot0=0$

$\forall x,y\in N: x\cdot S(y) = x\cdot y + x$

You can construct these functions using Peano's axioms and the axioms of set theory.


For the addition function, we would define the set of ordered triples $A$ such that

$\forall x,y,z:[(x,y,z)\in A \iff (x,y,z)\in N^3 $

$\land \forall B\subset N^3:[\forall a\in N: (a,0,a)\in B \land \forall a,b,c: [ (a,b,c)\in B \implies (a,S(b),S(c))\in B]$

$ \implies (x,y,z)\in B]] $

Similarly, for the multplication function (having defined +), we would define the set of ordered triples $M$ such that

$\forall x,y,z:[(x,y,z)\in M \iff (x,y,z)\in N^3 $

$\land \forall B\subset N^3:[\forall a\in N: (a,0,0)\in B \land \forall a,b,c: [ (a,b,c)\in B \implies (a,b+1,c+a\in B]$

$ \implies (x,y,z)\in B]] $