[Tex/LaTex] Multiline curly braces

bracesmath-modematrices

I know how to draw the following multiline matrix using brackets on both sides:

$$\begin{bmatrix}1&5&-3\\-2&-13&8\\3&-3&1\end{bmatrix}$$

The question is, how do I do it with curly braces? I know how to do curly braces on the left side (using cases), but how do I get the curly braces on both sides? I'm writing this in the Jupyter notebook version 5.7.8.

Best Answer

With Bmatrix from amsmath:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
   \begin{Bmatrix} 
      1 &   5 & -3 \\
     -2 & -13 &  8 \\
      3 &  -3 &  1
   \end{Bmatrix}
\]

\end{document}
Related Question