


![[top]](top.gif)
Synopsis:
i1 : R = QQ[a..d] |
i2 : p = matrix {{a,b},{c,d}} |
i3 : det p |
Code:
-- ../../../Macaulay2/m2/multilin.m2:194-199
det Matrix := RingElement => options -> f -> (
if rank source f != rank target f
or not isFreeModule source f
or not isFreeModule target f
then error "expected a square matrix";
(exteriorPower(numgens source f, f, options))_(0,0))



![[top]](top.gif)