Is using Quantifier Negation to flip two quantifiers at once legal in symbolic logic?
Example:
~∀x∀y(Hhx & Hhy)
ƎxƎy~(Hhx & Hhy) 1 QN
Or do I need to do this in 2 steps?
Example:
~∀x∀y(Hhx & Hhy)
Ǝx~∀y(Hhx & Hhy) 1 QN
ƎxƎy~(Hhx & Hhy) 2 QN
Is using Quantifier Negation to flip two quantifiers at once legal in symbolic logic?
Example:
~∀x∀y(Hhx & Hhy)
ƎxƎy~(Hhx & Hhy) 1 QN
Or do I need to do this in 2 steps?
Example:
~∀x∀y(Hhx & Hhy)
Ǝx~∀y(Hhx & Hhy) 1 QN
ƎxƎy~(Hhx & Hhy) 2 QN
The way the inference rules are defined determines how one can use them. For example, in the proof checker associated with the forallx logic textbook, it would take two steps.
The inference rules there are called "conversion of quantifiers", abbreviated "CQ". See chapter 34, pages 279-281 in the text.
If I tried to take both steps at once in the proof checker, I would get this error:
This makes sense because none of the four CQ rules allows me to make that inference.
Kevin Klement's JavaScript/PHP Fitch-style natural deduction proof editor and checker http://proofs.openlogicproject.org/
P. D. Magnus, Tim Button with additions by J. Robert Loftis remixed and revised by Aaron Thomas-Bolduc, Richard Zach, forallx Calgary Remix: An Introduction to Formal Logic, Fall 2019. http://forallx.openlogicproject.org/forallxyyc.pdf
In response to your question, I initially learned Quantifier Negation from the book Introduction to Logic by Richard Arthur, but right now I'm just kind of doing deductions for fun.
– Lily Sep 02 '19 at 13:52