|  |  D.14.1.40 arrCharPoly Procedure from libraryarr.lib(see  arr_lib).
 
Example:Usage:
arrCharPoly(arr A)
Return:
[intvec] coefficients of the characteristic polynomial of A in increasing order
Remarks:
The algorithm only returns the coefficients of the characteristic polynomial since they
are whole numbers but the basering could be something different.
 See also:
 arrCharPoly;
 arrPoincare.|  | LIB "arr.lib";
ring R = 0,(x,y,z,u,v),dp;
arr A = arrBraid(5);
intvec v = arrCharPoly(A);
x*(x-1)*(x-2)*(x-3)*(x-4);
==> x5-10x4+35x3-50x2+24x
v;
==> 24,-50,35,-10,1
 | 
 
 |