I am trying to find an exhaustive list of formal fallacies in propositional logic. So far, it seems to be only:
- Affirming the consequent (basically incorrect application of MP)
- Negating the antecedent (incorrect MT)
- Affirming a disjunct (incorrect DS)
Everything else seems to just fall under the umbrella of "non-sequitur".
However, I recall the fallacy of the undistributed middle term from syllogistic logic.
All A are B
All C are B
Therefore, all A are C.
To me this looks like "bad hypothetical syllogism".
A -> B
C -> B
Therefore, A -> C
Is it okay then to classify an argument that commits this type of fallacy in propositional logic as "undistributed middle term"? Or is this reserved specifically for syllogistic logic since propositional logic does not deal with distribution?
I have never seen any textbook classify that last propositional logic argument as 'undistributed middle' ... but FWIW I personally do label it as such :)
Also, given the following two valid inferences:
Strengthening the Antecedent
$P \to R$
$\therefore (P \land Q) \to R$
Weakening the Consequent
$P \to R$
$\therefore P \to (Q \lor R)$
You could consider the following two patterns as propositional logic fallacies (though I must say I have never had the occasion to point them out at any time in my experience):
Weakening the Antecedent
$P \to R$
$\therefore (P \lor Q) \to R$
Strengthening the Consequent
$P \to R$
$\therefore P \to (Q \land R)$
Oh, and one more:
Another valid inference is:
Exclusion
$\neg (P \land Q)$
$P$
$\therefore \neg Q$
But its invalid counterpart would be:
$\neg (P \land Q)$
$\neg P$
$\therefore Q$
... not sure what to call this one ... 'False Inclusion'?