我该如何写概率密度函数?

我该如何写概率密度函数?

我正在尝试写类似的东西:

等式图

我不确定如何让方程式与一侧的 y 帽堆叠在一起。

答案1

我找到了一个解决方案cases

\documentclass{article} % or some other suitable document class
\usepackage{amsmath} % for 'cases' environment
\begin{document}
\[
   \hat{y} = \begin{cases}
               1 & \text{ if } \sigma (\beta_0 + \beta_1 x) > \frac{1}{2} \\
               0 & \text{ if } \sigma (\beta_0 + \beta_1 x) \leq \frac{1}{2}
             \end{cases}
\]
\end{document}

相关内容