\documentclass{article}
\usepackage{amsmath} % <--- for advanced math
\begin{document}
With \verb+gather*+
\begin{gather*}
x = [1,0]^{T} \Rightarrow x^{T}Ax = \alpha > 0,\\
x = [1,0]^{T} \Rightarrow x^{T}Ax = \gamma > 0,
\end{gather*}
or \verb+gather+ when you like to have numbered equations
\begin{gather}
x = [1,0]^{T} \Rightarrow x^{T}Ax = \alpha > 0,\\
x = [1,0]^{T} \Rightarrow x^{T}Ax = \gamma > 0,
\end{gather}
Similarly with \verb+align*+
\begin{align*}
x & = [1,0]^{T} \Rightarrow x^{T}Ax = \alpha > 0,\\
x & = [1,0]^{T} \Rightarrow x^{T}Ax = \gamma > 0,
\end{align*}
or you may like to have a numbered system of equation:
\begin{equation}
\begin{aligned}
x & = [1,0]^{T} \Rightarrow x^{T}Ax = \alpha > 0,\\
x & = [1,0]^{T} \Rightarrow x^{T}Ax = \gamma > 0,
\end{aligned}
\end{equation}
\end{document}
有关详细信息,请参阅维基百科:数学和/或维基百科:高等数学