Give an equational proof of $ \vdash (\forall x)(A \rightarrow B) \equiv ((\exists x) A) \rightarrow B$
I tried and used ping pong theorem to split it into two implications to prove
$$ \vdash (\forall x)(A \rightarrow B) \rightarrow (((\exists x)A) \rightarrow B)$$
and
$$ \vdash (((\exists x)A) \rightarrow B) \rightarrow (\forall x)(A \rightarrow B) $$
But still couldn't figure it out.
Lists of axioms and theorems.

(Like the other answer, I will assume that $\;x\;$ is not free in $\;B\;$. Otherwise this is not a theorem: take for example $\;A := x > 2\;$ and $\;B := x > 0\;$, which leads to a statement that is false for $\;x \le 0\;$.)
(I will use a slightly different quantification notation, to save on parentheses.)
If you only want to use the axioms and theorems from the photos you provided, then you seem to be missing something: there is no axiom about $\;\exists\;$. So I will assume you are allowed to use, e.g., the following definition the of $\;\exists\;$: $$ \tag{0} \langle \exists x :: A \rangle \;\equiv\; \lnot \langle \forall x :: \lnot A \rangle $$
Using $(0)$, the proof is simply as follows:
\begin{align} & \langle \forall x :: A \to B \rangle \\ \equiv & \qquad \text{"by (2.4.11) -- working towards (6.4.2),} \\ & \qquad \phantom{\text{"}}\text{which seems the key rule to use here"} \\ & \langle \forall x :: \lnot A \lor B \rangle \\ \equiv & \qquad \text{"by symmetry (6) -- still towards (6.4.2)"} \\ & \langle \forall x :: B \lor \lnot A \rangle \\ \equiv & \qquad \text{"by (6.4.2), using the assumption that $\;x\;$ is not free in $\;B\;$"} \\ & B \lor \langle \forall x :: \lnot A \rangle \\ \equiv & \qquad \text{"introduce double negation (2.4.4)} \\ & \qquad \phantom{\text{"}}\text{-- to match the RHS of (0): we work towards $\;\exists\;$"} \\ & B \lor \lnot \lnot \langle \forall x :: \lnot A \rangle \\ \equiv & \qquad \text{"by duality (0)"} \\ & B \lor \lnot \langle \exists x :: A \rangle \\ \equiv & \qquad \text{"by symmetry (6) -- to reintroduce $\;\to\;$"} \\ & \lnot \langle \exists x :: A \rangle \lor B \\ \equiv & \qquad \text{"reintroduce $\;\to\;$ by (2.4.11)"} \\ & \langle \exists x :: A \rangle \to B \\ \end{align}
which completes this proof.
(To make this formally complete, we must of course use symmetry $(2)$, Leibniz $(2.1.16)$ and $(6.1.11)$, and transitivity $(1.4.13(c))$ many times, but fortunately that is implicit in the above proof format designed by Edsger W. Dijkstra and Wim Feijen. See EWD1300 for more details.)