linalg(deprecated)
permanent
compute the permanent of a matrix
Calling Sequence
Parameters
Description
Examples
permanent(A)
A
-
square matrix
Important: The linalg package has been deprecated. Use the superseding command LinearAlgebra[Permanent], instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
The permanent of a matrix is computed in a way similar to the determinant. The permanent of an arbitrary 2x2 matrix, abcd, is ad+bc. To compute the permanent of larger matrices, minor expansion is used in the same manner as when computing determinants, only without alternating sign while expanding along a row or column.
The command with(linalg,permanent) allows the use of the abbreviated form of this command.
withlinalg:
A≔matrix1,2,3,4,5,6,7,8,9
A≔123456789
permanentA
450
B≔matrixa,b,c,d,e,f,g,h,i
B≔abcdefghi
permanentB
aei+afh+bdi+bfg+cdh+ceg
See Also
linalg(deprecated)[det]
LinearAlgebra
Download Help Document