L1 and L2 for reference:
L1: B→(C→B)
L2: (B→(C→D))→((B→C)→(B→D))
Q: Build sequences of formulas representing the following proofs(only the axiom schemas L1 and L2 and Modus Ponens are necessary)
A→(A→B)├ A→B
How Iam trying to solve this:
- A→(A→B) : hypothesis
- (A→(A→B))→((A→A)→(A→B)) : [L2]
- (A→A)→(A→B) : MP from 2 and 1
Iam stuck here, don't know what to do next. (Exercise states that there should be a sequence of 9 formulas )