CoCoA:Det

From ApCoCoAWiki
Revision as of 10:02, 24 October 2007 by XMLBot (talk | contribs) (pushing XML rev. 1.46, again)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Det

the determinant of a matrix

Description

This function returns the determinant of the matrix M. The resulting

type depends on the types of the entries of the matrix.

Example

  Use R ::= Q[x];
  M := Mat([[x,x^2],[x,x^3]]);
  Det(M);
x^4 - x^3
-------------------------------
  Det(Mat([[1,2],[0,5]]));
5
-------------------------------

Syntax

Det(M:MAT)

the resulting type depends on the entries of the matrix.

Minors

   <type>matrix</type>