In a natural deduction systems, I sometimes see what are called rules of replacement (also called rules of equivalence).
These include equivalences like DeMorgan's Laws, or contraposition. Take the latter as an example. I sometimes see the rule written like this:
$CP \,\colon \ (a \to b) \leftrightarrow (\lnot b \rightarrow \lnot a)$
Sometimes, I see it written with $::$ instead of $\leftrightarrow$, like this:
$CP\,\colon \ (a \rightarrow b) :: (\lnot b \rightarrow \lnot a)$
I take it that this equivalence has been proven already, and I take it that this rule is supposed to denote that, in a proof, any substitution instance of the formula that appears on one side of the $::$ symbol can be swapped with an equivalent substitution instance of the formula that appears on the other side of the $::$ symbol.
So, for example, I might have a proof that looks something like this:
$ \begin{matrix} \vdots & ~ & ~ \\ 5. & a \rightarrow b & 3, 4 ~ MP \\ \end{matrix} $
I can then use the CP rule to replace $a \rightarrow b$ with $\lnot b \rightarrow \lnot a$, like this:
$ \begin{matrix} \vdots & ~ & ~ \\ 5. & a \rightarrow b & 3, 4 ~ MP \\ 6. & \lnot b \rightarrow \lnot a & 5 ~ CP \\ \end{matrix} $
Two questions:
- Is my understanding of this correct? If so, how exactly is this specified as an inference rule?
- Can I use this technique for any other equivalence? For instance, say I have a theory with some axioms, and I prove some equivalence $\phi \leftrightarrow \psi$ specific to that theory. Can I then swap out either side of that equivalence in later proofs, much as happened in my pseudo-example with the CP rule? If so, how and when do I specify that as an inference rule (or rules)?
Another, related, question:
- Suppose I stipulate a definition which does not extend the set of derivable theorems. For instance, perhaps I stipulate a definition that is notational syntactic sugar or something. Can I then freely swap in/out the definiens/defiendum in my proofs, similar to how it works with the CP pseudo-example?