I have done plenty of research, and I haven't found a solution that suits what I'm looking for (this closed question by needs for clarity is what I'm looking for). I want to center-align multiple steps of a math solving equation aligned by their first character. Something like:
\begin{frame}{Convergence [Lecture 2.5]}
Law of Large Numbers (LLN)
[ & \text{If } X_1, X_2, .., X_n \text{ are } \iid \text{ and } E[X_i]=\mu \text{ then:} \
& \overline{X}n=\frac{1}{n}\sum{i=1}^{n}X_i \
& \overline{X}_n \xrightarrow{d} \mu \text{ (strong LLN)}
& \overline{X}_n \xrightarrow{P} \mu \text{ (weak LLN)}]
\end{frame}
Where this equation as a whole is centered but aligned to &. I was using $$ but I found that wasn't a good practice as it was deprecated. Also, I found that [\\..\\] was a good practice to write equations so I'm using that form, and I'm trying to find a way to use it with & to align (example), but it seems to only work with \begin{align} where I prefer to use [\\..\\] because is more compact. Another way I tried is using [\\..\\] for each line of the equation, but it seems illogic the alineation would work as they are separated "displays of equations".
Any suggestions?
PS: I'm aiming to write latex following efficient good practices, if you find something in my equation that should be better or more efficient, please feel free to post with the answer to the problem.

\[ ...\]is "more compact", as you put it, than\begin{align*}...\end{align*}, it does not allow you to use&symbols to perform an alignment of the type you appear to envisage. – Mico Jun 19 '21 at 07:27\["as that is for single lined equations. You can have a mult-lined construct within it such as a matrix or\begin{aligned}but\\at the top level in\[is simply user error. – David Carlisle Jun 19 '21 at 08:32