编写分段函数

编写分段函数

在此处输入图片描述

我坚持写上述分段函数。

答案1

您可以在一个环境中嵌套几个rcases环境cases

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools} % for 'rcases' env.
\usepackage[T1]{fontenc}
\usepackage{newtxtext,newtxmath} % optional
\begin{document}
\[
k(x)=
\begin{cases}
\begin{rcases}
\phantom{-}x+3, & -3\le x\le -2\\
-x-1, & -2\le x\le -1\\
0,     & \phantom{-}\text{otherwise}
\end{rcases} \text{if $k=n^2$} \\
\\[-1.5ex]
\begin{rcases}
\phantom{-}x-1, & \phantom{-}1\le x\le 2\phantom{-} \\
-x+3, & \phantom{-}2\le x\le 3 \\
0,     & \phantom{-}\text{otherwise}
\end{rcases} \text{if $k\ne n^2$}
\end{cases}
\]
\end{document}

相关内容