I have system:
$(A1)\qquad A → (B → A)$
$(A2)\qquad (A → B) → ((A → (B → C)) → (A → C))$
$(A3)\qquad (A → B) → ((A → \neg B) → \neg A)$
$(A4)\qquad \neg \neg A → A $
$(MP)\qquad \frac{A \quad A → B}{A} $
I would like to show proof for:
a) Premise 1: p
Premise 2: p → (q → r)
Premise 3: p → q
Conclusion: r
b) Premise: q → r
Conclusion: p → (q → r)
c) Premise 1: p → q
Premise 2: ¬q
Conclusion: ¬p
I can show proof for a) like so:
1 p → (q → r) premise
2 p → q premise
3 p premise
4 q → r (MP) 1, 3
5 q (MP) 2, 3
6 r (MP) 4, 5
However with b) and c) I am not sure how to proceed, thanking you sincerely for you guidance.
Your proof for $a)$ is correct.
For $b)$ you just need the first axiom and modus ponens. The shortest proof is three rows long (one of them for the premise, the last one for the conclusion).
For $c)$ I reasoned similarly to what I did in this answer. A proof starts like this:
Can you finish?