🧪 This platform is in early beta. Features may change and you might encounter bugs. We appreciate your patience!
quantifier_shift
The quantifier shift fallacy occurs when the order of quantifiers is illegitimately switched, changing the meaning of a statement. 'For every X there exists a Y' is very different from 'there exists a Y for every X.' The first says each X has its own Y (possibly different), while the second says one single Y serves all X. This subtle reordering can completely change a true statement into a false one.
"Every person has a number that, when added, makes them happy." becomes "There is a number that makes every person happy when added." (The first says everyone has their own happiness number; the second claims one number works for everyone.)
'Every employee has a manager they report to' is incorrectly restated as 'There is one manager that every employee reports to.' The first allows each employee to have a different manager; the second implies a single universal manager for all.
'Every student has a topic they find interesting' gets shifted to 'There is a topic that every student finds interesting.' The original respects individual differences in curiosity; the shifted version wrongly assumes one universally appealing topic exists.
FORALL x EXISTS y: R(x,y) -> EXISTS y FORALL x: R(x,y) [invalid]
Binary (yes/no) questions an LLM must answer to identify this aspect:
Does the argument involve quantifiers (all, some, every, there exists)?
Type: binaryHas the order of quantifiers been switched between premises and conclusion?
Type: binaryDoes the reordering of quantifiers change the meaning of the statement?
Type: binaryThe quantifier shift fallacy occurs when the order of quantifiers is illegitimately switched, changing the meaning of a statement. 'For every X there exists a Y' is very different from 'there exists a Y for every X.' The first says each X has its own Y (possibly different), while the second says one single Y serves all X. This subtle reordering can completely change a true statement into a false one.
The difference between quantifier orderings is subtle and easily lost in natural language, which does not always make the scope of quantifiers clear. The two readings sound similar enough to be confused.
Make the quantifier scope explicit by rephrasing. Ask: 'Are you saying each individual has their own, or that there is one universal one?' Formalize the statement if needed.
Appears in mathematical and philosophical arguments, policy promises ('everyone will have a doctor' vs. 'one doctor will serve everyone'), and advertising claims where the scope of guarantees is ambiguous.
Use these tools to detect, analyze, or train this aspect.