What's the correct type of brackets to use in a matrix?

1.7k Views Asked by At

I had my first day of Linear Algebra today, and we got introduced to matrices, one thing that kept nagging me though, was that I kept seeing matrices written in a few different styles, namely

$$ A = \left[ \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \end{array} \right] $$

as well as

$$ B = \left( \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \end{array} \right) $$

and on really rare occasions I've even seen

$$ C = \left\{ \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \end{array} \right\} $$

So my question is, which of these is considered most correct to use? $A$, $B$, or $C$?

2

There are 2 best solutions below

3
On BEST ANSWER

They are all used, mostly interchangeably, depending on the style of the author.

0
On

I prefer $A$. Some author $B$. I've never seen $C$.