I'm trying to understand the negation rules of this system.
Wiki's page on Sequent Calculus claims that from:
${\displaystyle \lnot p,p,q\vdash r}$
the following is inferred:
${\displaystyle p,q\vdash p,r}$
Can anyone explain how this rule works?
Being confused how the contradictory conditional premises $p$ and $\neg p$ result in this form, I consulted Investigations in Logical Deduction by Gentzen 1935.
Here are the relevant definitions of the rules by Gentzen:
Gentzen Negation (I)introduction (E)limination
Gentzen Description of 'V '^ symbols for negation
Gentzen Full Inference Skhemata
I understand all the other rules in Gentzen's Inference Skhemata, with the exception of negation.
Appreciate anyone's guidance on interpreting how the negation rules work and why Wiki was able to infer above formulas.
Thanks
UPDATE: SOLUTION:
$\lnot p,p,q\vdash r$
reduces to: $(\lnot p \cap p \cap q) \implies r$
$\lnot (p \cap p \cap q) \cup r$
$p \cup \lnot p \cup \lnot q \cup r$
$\lnot p \cup \lnot q \cup p \cup r$
$\lnot (p \cap q) \cup p \cup r$
$(p \cap q) \implies (p \cup r)$
$p,q \vdash p,r$
The naive interpretation of a sequent $A_1, \ldots, A_n \vdash B_1, \ldots, B_m$ is that the conjunction of the $A$'s implies the disjunction of the $B$'s:
$A_1 \land \ldots \land A_n \rightarrow B_1 \lor \ldots \lor B_m$
Using the fact that $A \to B$ is equivalent to $\neg A \lor B$, we can re-write this as:
$\neg(A_1 \land \ldots \land A_n) \lor B_1 \lor \ldots \lor B_m$
And this is equivalent to
$\neg A_1 \lor \ldots \lor \neg A_n \lor B1 \lor \ldots \lor B_m$
So a sequent can be thought of as a large disjunction, where the premise formulas are negated and the conclusion formulas are positive. If a formula occurs on the left-hand side of the sequent, it can be thought of as negated (in the disjunction), and if it occurs on the right-hand side of the sequent, it can be thought of as positive (in the disjunction).
So by switching sides, you effectively negate and unnegate the formula $p$: Moving $p$ from the (negative) LHS of the sequent to the (positive) RHS gives you $\neg p$, while moving $p$ from the (positive) RHS to the (negative) LHS gives you $\neg p$; and likewise, moving $\neg p$ from the (negative) LHS of the sequent to the (positive) RHS gives you $p$, while moving $\neg p$ from the (positive) RHS to the (negative) LHS gives you $p$.
If this is not convincing yet, consider the limit cases:
So the sequent $\vdash p$ amounts to stating that $p$ is valid, and $p \vdash$ amounts to stating that $p$ is invalid and $\neg p$ is valid. This will again give you the intuition that the left-hand side of a sequent is, in some way, "negative" while the right-hand side of a sequent is "positive". Switching sides therefore amounts to adding or removing a negation.