WLJS LogoWLJS Notebook

Permanent

Permanent[m] gives the permanent of the square matrix m.

Examples

Compute the permanent of a matrix:

Permanent[{{a, b}, {c, d}}]
(* a d + b c *)

Permanent of a numeric matrix:

Permanent[{{1, 2}, {3, 4}}]
(* 10 *)

Please visit the official Wolfram Language Reference for more details.

On this page