答案1
使用cases
(或dcases
),虽然我更喜欢写exp
,但如果您坚持使用,e
请确保它是一个直立字母,因为它是一个数字,而不是一个变量,所以使用\mathrm{e}
。
\documentclass{article}
\usepackage{amsmath,mathtools}
\begin{document}
\begin{equation}
f_X(x) =
\begin{cases}
\lambda \exp(-\lambda x) & x > 0 \\
0 & \text{otherwise.}
\end{cases}
\end{equation}
or
\begin{equation}
f_X(x) =
\begin{dcases}
\lambda \mathrm{e}^{-\lambda x} & x > 0 \\
0 & \text{otherwise.}
\end{dcases}
\end{equation}
\end{document}