You can simply use \label{...} within the equation environment and \ref{...} to refer to it.
For more info, see here: https://en.wikibooks.org/wiki/LaTeX/Labels_and_Cross-referencing.
And remember to compile twice, the first time you'll get ?? instead of the ref.no., but don't worry, it's normal, the second time you'll get the correct number.
\documentclass{article}
\begin{document}
Equation \ref{eq:myeq} blah blah blah
\begin{equation}\label{eq:myeq}
\Delta A_2 = x^2
\end{equation}
\end{document}

If you add another equation, LaTeX will manage the numbering:
\documentclass{article}
\begin{document}
If I add another equation \ref{eq:myneweq}, \LaTeX{} will manage the numbering.
\begin{equation}\label{eq:myneweq}
\Delta A_1 = x
\end{equation}
Equation \ref{eq:myeq} blah blah blah
\begin{equation}\label{eq:myeq}
\Delta A_2 = x^2
\end{equation}
\end{document}
