From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,2b8382e0387f53c5 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!x7g2000vbk.googlegroups.com!not-for-mail From: marius63 Newsgroups: comp.lang.ada Subject: Re: Eigenvalues to find roots of polynomials Date: Tue, 26 Jul 2011 07:07:53 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <3ec148c9-a033-40a1-bc32-1aa52867478a@e35g2000yqc.googlegroups.com> <12rqoo5jd0lqy$.1kgmuqfqym6z2$.dlg@40tude.net> NNTP-Posting-Host: 188.82.29.171 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1311689273 11622 127.0.0.1 (26 Jul 2011 14:07:53 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 26 Jul 2011 14:07:53 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: x7g2000vbk.googlegroups.com; posting-host=188.82.29.171; posting-account=3cDqWgoAAAAZXc8D3pDqwa77IryJ2nnY User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-Header-Order: LECRUANKH X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_4_11; en) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/4.1.3 Safari/533.19.4,gzip(gfe) Xref: g2news2.google.com comp.lang.ada:21333 Date: 2011-07-26T07:07:53-07:00 List-Id: > > -- =A0 =A0| =A0 -A(1)/A(0) =A0 -A(2)/A(0) =A0 -A(3)/A(0) =A0 ... =A0 -A= (N)/A(0) =A0 | > > -- =A0 =A0| =A0 =A0 =A0 =A01 =A0 =A0 =A0 =A0 =A0 =A00 =A0 =A0 =A0 =A0 = =A0 =A00 =A0 =A0 =A0 ... =A0 =A0 =A0 =A00 =A0 =A0 =A0 | > > -- =A0 =A0| =A0 =A0 =A0 =A00 =A0 =A0 =A0 =A0 =A0 =A01 =A0 =A0 =A0 =A0 = =A0 =A00 =A0 =A0 =A0 ... =A0 =A0 =A0 =A00 =A0 =A0 =A0 | > > -- =A0 =A0| =A0 =A0 =A0 ... =A0 =A0 =A0 =A0 =A0... =A0 =A0 =A0 =A0 =A0 = 1 =A0 =A0 =A0 ... =A0 =A0 =A0 =A00 =A0 =A0 =A0 | > > -- =A0 =A0|_ =A0 =A0 =A0 0 =A0 =A0 =A0 =A0 =A0 =A00 =A0 =A0 =A0 =A0 =A0= =A00 =A0 =A0 =A0 ... =A0 =A0 =A0 =A00 =A0 =A0 =A0_| > > The matrix passed to Eigenvalues (ARM G.3.2) must be Hermitian. The above > matrix is not Hermitian. > > P.S. A matrix M is Hermitian if M (I,J) if the complex conjugate of M > (J,I)), i.e. Re (M(I,J)) =3D Re (M(J,I)) and Im (M(I,J)) =3D -Im (M(J,I)) > (Dmitry A. Kazakov) I suspected that. I couldn't tell an hermitian matrix from a hamiltonian gargle blaster so when the program did not raise Argument_Error I assumed the matrix was kosher enough. It seems not. (So, Ada Eigenvalues is not a very good way to find roots, is it?) Thanks.