You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
------ ------
A |- A B |- B
------------------- -> left ------
A -> B, A |- B C |- C
-------------------------------------------------- -> left
A, A -> B, B -> C |- C
-------------------------------------------------- -> right
A -> B, B -> C |- A -> C
--------------------------------------------------- & left
(A -> B) & (B -> C), B -> C |- A -> C
--------------------------------------------------- & left
(A -> B) & (B -> C), (A -> B) & (B -> C) |- A -> C
--------------------------------------------------- C left
(A -> B) & (B -> C) |- A -> C
-----
C ⊢ C
----------- (W l)
B, C, A ⊢ C
--------------- (→ l)
B, B → C, A ⊢ C
--------------- (→ l)
A → B, B → C, A ⊢ C
------------------- (→ r)
A → B, B → C ⊢ A → C
------------------------- (∧ l)
(A → B) ∧ (B → C) ⊢ A → C
Which one is correct? Are they equivalent?
Also how can left implication be used in the second example when there isn't 2 subformulas on the top of the line?
As we discussed in person after the session today, that seems to be a non-standard version of the implication left rule that kind of builds in the C |- C and B |- B premises without explicitly showing them.
Proving: (A → B) ∧ (B → C) ⊢ A → C
Me and Quoc worked on the above via the rules and guidance given on this page: http://sakharov.net/sequent.html We got:
However using: http://logitext.mit.edu/Intuitionistic/proving/.28A+.2D.3E+B.29+.2F.5C+.28B+.2D.3E+C.29+.7C.2D+.28A+.2D.3E+C.29 it shows us something like:
Which one is correct? Are they equivalent?
Also how can left implication be used in the second example when there isn't 2 subformulas on the top of the line?
@plintx
The text was updated successfully, but these errors were encountered: