The earlier answers are both more or less based on a 'trick', or some creative insight. Here is another perspective, in an attempt to give a proof with the minimum amount of 'magic' and surprise, and instead trying to be as 'constructive' as possible.$
\newcommand{\calc}{\begin{align} \quad &}
\newcommand{\op}[1]{\\ #1 \quad & \quad \unicode{x201c}}
\newcommand{\hints}[1]{\mbox{#1} \\ \quad & \quad \phantom{\unicode{x201c}} }
\newcommand{\hint}[1]{\mbox{#1} \unicode{x201d} \\ \quad & }
\newcommand{\endcalc}{\end{align}}
\newcommand{\Ref}[1]{\text{(#1)}}
\newcommand{\then}{\Rightarrow}
\newcommand{\when}{\Leftarrow}
\newcommand{\true}{\text{true}}
\newcommand{\false}{\text{false}}
$
To prove that $$
x < -1 \;\then\; x^2 > 1
$$ for all $\;x\;$, we will start at the most complex side, so the right hand side, and try towards simplify to the other side.
In other words, we calculate as follows: for all $\;x\;$,
$$\calc
x^2 > 1
\op\equiv\hints{take square root on both sides, using $\;\sqrt{x^2}=\left| x \right|\;$}
\hints{-- allowed because both sides are non-negative,}
\hint{and the simplest way I know to go from $\;x^2\;$ to $\;x\;$}
\left| x \right| > 1
\op\equiv\hint{basic property of $\;\left| \cdot \right|\;$}
x > 1 \;\lor\; -x > 1
\op\equiv\hint{arithmetic: rewrite RHS -- to match our goal}
x > 1 \;\lor\; x < -1
\op\when\hint{logic: strengthen -- to match our goal}
x < -1
\endcalc$$