Consider this standard MWE:
\documentclass[11pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usetheme{default}
\begin{document}
\begin{frame}
\begin{itemize}
\item Equation 1 here:
\begin{equation}
Pr( Y= n) = \frac{e^{-7}\times 7^n}{n!}
\end{equation}
\item Equation 2 here:
\begin{equation}
Pr( Y= n) = \dfrac{e^{-7}\times 7^n}{n!}
\end{equation}
\end{itemize}
\end{frame}
\end{document}
It produces:
I want to achieve this:
I can do it manually adding \vspace{-1.05cm} before both equations.
Instead, I would like this to be done automatically.
Notice I want to preserve the equation number, so using inline $ equation $ at the \item level is not enough (plus it would need manual centering, depending on equation length.
Is there a way to achieve what I want?
Related posts that haven't helped me are this one and this one.

