Primjer 2:  Izračunajte determinantu matrice ( 2    3    4    6  )            7    8    5    2            2    3    1    1            3    5    4    -1

In[5]:=

Det[{{2, 3, 4, 6}, {7, 8, 5, 2}, {2, 3, 1, 1}, {3, 5, 4, -1}}]

Out[5]=

-112

In[6]:=

MatrixForm[{{2, 3, 4, 6}, {7, 8, 5, 2}, {2, 3, 1, 1}, {3, 5, 4, -1}}]

Out[6]//MatrixForm=

( 2    3    4    6  )            7    8    5    2            2    3    1    1            3    5    4    -1

In[7]:=

Det[%]

Out[7]=

-112


Created by Mathematica  (February 23, 2006)