Singular
https://www.singular.uni-kl.de/forum/

Problems with eigenvals(.)
https://www.singular.uni-kl.de/forum/viewtopic.php?f=10&t=2549
Page 1 of 1

Author:  rambiz [ Tue Jul 12, 2016 2:35 pm ]
Post subject:  Problems with eigenvals(.)

Hi all,
Why can't I get the eigenvalues by the following lines?
Code:
LIB "linalg.lib";
ring r=0,x,lp;
> matrix m[2][2]=1,2,3,4;
> print(m);
1,2,
3,4
> eigenvals(m);
[1]:
   _[1]=x2-5x-2
[2]:
   1


It seems that the output is the characteristic polynomial instead of the eigenvalues. Is it because it can't be solved in the field of rational numbers?! Let's try the complex numbers as the field of coefficients.
Code:
ring r=complex,x,lp;
// ** redefining r **
> matrix m[2][2]=1,2,3,4;
> print(m);
1,2,
3,4
> eigenvals(m);
   ? not implemented
   ? error occurred in or before STDIN line 9: `    return(system("eigenvals",jet(M,0)));`

Page 1 of 1 All times are UTC + 1 hour [ DST ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/