I'm reading the "Introduction to deep inference" notes https://hal.inria.fr/hal-02390267/document and trying to do the Exercise 1.1.4 from there which is about proving the Peirce's law $((A\to B)\to A)\to A$ in Hilbert System H.
The axioms of the system are following:
1. $A\to(B\to A)$.
2. $(A\to(B\to C))\to(A\to B)\to A\to C$.
3. $A\to(A\lor B)$.
4. $B\to(A\lor B)$.
5. $(A\to C)\to (B\to C) \to ((A\lor B) \to C)$.
6. $(A\land B)\to A$.
7. $(A\land B)\to B$.
8. $\texttt{f}\to A$.
9. $\neg\neg A\to A$.
10. $A\to(B\to(A\land B))$.
And the Modus Ponens Rule of Inference.
So, I would like to do this proof using only these axiom schemes and Modus Ponens but encountered some difficulties. I have an idea to use Axioms 1, 2 and 9, but don't actually know how to connect them in a right way.
Since this is a conclusion the Peirce's law should be the instance of Modus Ponens rule at the end. But I don't know for now what should it be.
Will be grateful for any help.