I have an ordered list (enumerate) each item of which is a numbered formula. I am using a gather environment.
\documentclass[12pt,a4paper]{article}
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\begin{document}
The following conditions are true:
\begin{enumerate}
\item \begin{gather}
x^2 \ge 0,
\end{gather}
\item \begin{gather}
x^2 \ge 0,
\end{gather}
\end{enumerate}
\end{document}
But the formulas appear in the center of the next line producing one empty line.
How can I get rid of the empty lines and align the formulas to the left? Formula numbers must stay on the right. I would like to stick to the gather environment if possible, because I find it very convenient for my purposes.

enumerateif the equations are numbered? – Skillmon Aug 14 '18 at 11:42enumeratealigned on item's number (possible duplicate) – barbara beeton Oct 01 '18 at 13:12