如何在 Overleaf 中写出指数分布

如何在 Overleaf 中写出指数分布

我是 overleaf 的新手,在 overleaf 中编写指数分布函数时遇到了困难。 指数分布

有人能帮我分享一些关于如何写它的见解吗?提前谢谢了!

答案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}

在此处输入图片描述

相关内容