In article
<
25ecd314-f163-44e2...@vb8g2000pbb.googlegroups.com>,
Given matrix M = [[ a b c ]
[ d e f ]
[ g h i]]
The determinant is adi + bfg + cdh - afh - bdi - ceg
The permanent is adi + bfg + cdh + afh + bdi + ceg
The thing is that there are a lot of neat shortcuts to evaluating a
determinant, especially for larger square matrices, few if any of which
work for evaluating a permanent, so the number of terms of the permanent
of an n by n permanent is apparently n-factorial.
The determinant of a 5 by 5, or even larger, matrix of reasonably small
integers, can often be done by hand in a few minutes, using a variety of
simple shortcut procedures, whereas the permanent of a 5 by 5 would
require multiplying out 120 products of five integers each then adding
them up, and for a 6 by 6 there would be 720 products of 6 integers to
be added up.
--