I'm taking an advanced symbolic logic class where we're using substitution a lot to handle for-all and existential statements. One thing that occurs to me is that, according to our textbook, The Incompleteness Phenomenon: A New Course in Mathematical Logic, I can make a sentence more complex, but I can't go back the other direction. For example, let's say I have the sentence:
( x + y > 2y + 2 )
I could allow the replacement:
t = (6z + 9i)
( x + y > 2y + 2 )(x/t)
= ( (6z + 9i) + y > 2y + 2 )
But as far as I am aware, there's no real way for me to go the other direction, i.e.,
( x + y > 2y + 2 )(t/x)
Am I wrong? If I'm right that I can't go "back" to a less complex sentence through substitution, are there other acceptable techniques for abstracting complex sentences "back" to more simple ones?
Note that I use t to signify an M-term, and x, y, and i to be variables (in this case free ones) in a sentence here.