0

Am Trying To Typeset An EQUATION That Has 3 Braces As Per The Image BELOW (https://i.stack.imgur.com/52VXJ.jpg) I have managed to type it using the left and right bracesenter image description here

1 Answers1

1

Try to use amsmath's pmatrix environment instead of tabular, as described in other answers.

\documentclass{article}
\usepackage{amsmath}
\begin{document}

 \begin{equation}
   \begin{pmatrix}
     1 & x_1 & \cdots \\
     \vdots & \vdots & \vdots
   \end{pmatrix}
   \begin{pmatrix}
      a_1 \\
      a_2\\
      \vdots
   \end{pmatrix}
   =
   \begin{pmatrix}
     y_n \\
     f_1 \\
     \vdots
   \end{pmatrix}
 \end{equation)

\end{document}

example

johk95
  • 127