1

I have been under the impression that I could substitute just about anything for the variables in any proven theorem (via universal instantiation logic rule) but when applied to the Archimedean property:

If $x\in R$, $y\in R$, and $x>0$, then there is a positive integer $n$ such that $nx>y$

Substitute $y=nx$
you obtain $nx>nx$ which clearly does not hold.
What is the restriction to universal instantiation that prevents this?

skyfire
  • 815
  • $n$ depends on $x$ and $y$. Thus, for a new chosen $y$, i.e. for $y=nx$, the property gives us a new positive integer $n'$ such that $n'x > nx$. – Mauro ALLEGRANZA Jul 09 '18 at 11:42

2 Answers2

2

It needs no restriction. The integer $n$ in $nx$ and the integer $n$ given by Archimedean property need not be same. Your statement would read

If $x\in R$, $nx\in R$, and $x>0$, then there is a positive integer $m$ such that $mx>nx$

  • Also, not sure why this hadn't occurred to me, but I'm remembering that you start instantiation from the outside of the statement and move inward. And to instantiate an existential variable requires the use of a new symbol. – skyfire Jul 06 '18 at 17:25
  • I don't think that this explains how the universal instantiation logic rule applies. That rule would not replace $(\exists n)$ with $(\exists m)$. – Carl Mummert Jul 06 '18 at 19:32
  • Depending on the logic text/proof theory book, the existential portion of a hypothesis is handled in different ways. But all agree that Instantiation of an existential variable is not handled the same way as a universally quantified variable and that the existential variable that is instantiated must be a new symbol. That was what I was getting at @CarlMummert. – skyfire Jul 10 '18 at 19:16
0

To use universal instantiation, you substitute from the outside in. If you are looking to substitute for $y$, we must be starting with

$$(\forall y)(\forall x)[ x > 0 \to (\exists n) [ nx > y]]$$

You are asking about the restriction that prevents the term $nx$ from being substituted for $y$. The restriction on universal generalization, informally put, is that no variable in the term you are substituting can become bound when you perform the substitution. In this case both $n$ and $x$ become bound, so $nx$ is not substitutiable for $y$ here.

For a formal definition of "substitutable", see a logic text, or this question.

There is another way of formalizing universal instantiation, as in the Wikipedia article, so that there is no restriction on the term, but the substitution operation is changed so that if any variable in the new term was going to get bound, then that particular instance of the original variable is not substituted. However, for this variation to be useful, we would want to replace all instances of the original variable, which leads to the same restriction in practice.

Carl Mummert
  • 81,604