<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Eigenvector Problem Revised</title>
    <link>http://www.mapleprimes.com/questions/41840-Eigenvector-Problem-Revised</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 14:24:35 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 14:24:35 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Eigenvector Problem Revised</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Eigenvector Problem Revised</title>
      <link>http://www.mapleprimes.com/questions/41840-Eigenvector-Problem-Revised</link>
    </image>
    <item>
      <title>Eigenvalues are correct</title>
      <link>http://www.mapleprimes.com/questions/41840-Eigenvector-Problem-Revised?ref=Feed:MaplePrimes:Eigenvector Problem Revised:Comments#answer78161</link>
      <itunes:summary>The eigenvalues returned are complex.  For &lt;maple&gt;theta&lt;/maple&gt; real, &lt;maple&gt;cos(theta)^2-1&lt;/maple&gt; is negative, so its square root is usually complex.

The Eigenvectors are quite complicated, since they depend on whether &lt;maple&gt;sin(theta)&lt;/maple) is positive or negative.  It is unsurprising that such functionality is, as of yet, unimplemented.</itunes:summary>
      <description>The eigenvalues returned are complex.  For &lt;maple&gt;theta&lt;/maple&gt; real, &lt;maple&gt;cos(theta)^2-1&lt;/maple&gt; is negative, so its square root is usually complex.

The Eigenvectors are quite complicated, since they depend on whether &lt;maple&gt;sin(theta)&lt;/maple) is positive or negative.  It is unsurprising that such functionality is, as of yet, unimplemented.</description>
      <guid>78161</guid>
      <pubDate>Sun, 18 Feb 2007 08:20:27 Z</pubDate>
      <itunes:author>JacquesC</itunes:author>
      <author>JacquesC</author>
    </item>
    <item>
      <title>Pen and Paper</title>
      <link>http://www.mapleprimes.com/questions/41840-Eigenvector-Problem-Revised?ref=Feed:MaplePrimes:Eigenvector Problem Revised:Comments#answer78159</link>
      <itunes:summary>Does that mean I can only find these eigenvectors
by hand ?</itunes:summary>
      <description>Does that mean I can only find these eigenvectors
by hand ?</description>
      <guid>78159</guid>
      <pubDate>Sun, 18 Feb 2007 22:21:46 Z</pubDate>
      <itunes:author>dcasimir</itunes:author>
      <author>dcasimir</author>
    </item>
    <item>
      <title>Thanks, A Lot to Digest</title>
      <link>http://www.mapleprimes.com/questions/41840-Eigenvector-Problem-Revised?ref=Feed:MaplePrimes:Eigenvector Problem Revised:Comments#answer78157</link>
      <itunes:summary>Thanks,


I'll admit I didn't get it on the first reading, but it gives me something to mull over for awhile and possibly help with my understanding.

v/r,

Dan</itunes:summary>
      <description>Thanks,


I'll admit I didn't get it on the first reading, but it gives me something to mull over for awhile and possibly help with my understanding.

v/r,

Dan</description>
      <guid>78157</guid>
      <pubDate>Mon, 19 Feb 2007 02:48:31 Z</pubDate>
      <itunes:author>dcasimir</itunes:author>
      <author>dcasimir</author>
    </item>
    <item>
      <title>A way to coax the eigenvectors out</title>
      <link>http://www.mapleprimes.com/questions/41840-Eigenvector-Problem-Revised?ref=Feed:MaplePrimes:Eigenvector Problem Revised:Comments#comment85908</link>
      <itunes:summary>Try asking Maple for the eigenvectors of this matrix:

M:=Matrix([[c,-sqrt(1-c^2)],[sqrt(1-c^2),c]]);

Eigenvectors(M,output=list);

Then put c=cos(theta).

This seems to give a fairly general form.
</itunes:summary>
      <description>Try asking Maple for the eigenvectors of this matrix:

M:=Matrix([[c,-sqrt(1-c^2)],[sqrt(1-c^2),c]]);

Eigenvectors(M,output=list);

Then put c=cos(theta).

This seems to give a fairly general form.
</description>
      <guid>85908</guid>
      <pubDate>Mon, 19 Feb 2007 03:05:36 Z</pubDate>
      <itunes:author>Alex
 Smith
</itunes:author>
      <author>Alex
 Smith
</author>
    </item>
    <item>
      <title>How Do I Substitute In the Cosine Function ?</title>
      <link>http://www.mapleprimes.com/questions/41840-Eigenvector-Problem-Revised?ref=Feed:MaplePrimes:Eigenvector Problem Revised:Comments#comment91177</link>
      <itunes:summary>Thanks.

Another question.

How would I put the cosine function into the 
Eigenvectors output, that contains 
"RootOf" expressions ?

would the "op" or "subsop" operator be useful ?

</itunes:summary>
      <description>Thanks.

Another question.

How would I put the cosine function into the 
Eigenvectors output, that contains 
"RootOf" expressions ?

would the "op" or "subsop" operator be useful ?

</description>
      <guid>91177</guid>
      <pubDate>Tue, 20 Feb 2007 07:21:34 Z</pubDate>
      <itunes:author>dcasimir</itunes:author>
      <author>dcasimir</author>
    </item>
    <item>
      <title>eval or subs</title>
      <link>http://www.mapleprimes.com/questions/41840-Eigenvector-Problem-Revised?ref=Feed:MaplePrimes:Eigenvector Problem Revised:Comments#comment91178</link>
      <itunes:summary>I would use eval, as follows:

&lt;pre&gt;
eval( MyExpression, c=cos(theta) );
&lt;/pre&gt;

You could use subs, with the syntax:

&lt;pre&gt;
subs( c=cos(theta), MyExpression );
&lt;/pre&gt;

There are some minor technical differences, but I find the eval fits my usage best.

A third option is to create a function, with unapply as follows:

&lt;pre&gt;
MyFunction := unapply( MyExpression, c );
MyFunction( cos(theta) );
&lt;/pre&gt;

I hope this is useful,

Doug
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu       
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu/~meade/
&lt;/pre&gt;</itunes:summary>
      <description>I would use eval, as follows:

&lt;pre&gt;
eval( MyExpression, c=cos(theta) );
&lt;/pre&gt;

You could use subs, with the syntax:

&lt;pre&gt;
subs( c=cos(theta), MyExpression );
&lt;/pre&gt;

There are some minor technical differences, but I find the eval fits my usage best.

A third option is to create a function, with unapply as follows:

&lt;pre&gt;
MyFunction := unapply( MyExpression, c );
MyFunction( cos(theta) );
&lt;/pre&gt;

I hope this is useful,

Doug
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu       
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu/~meade/
&lt;/pre&gt;</description>
      <guid>91178</guid>
      <pubDate>Tue, 20 Feb 2007 08:04:22 Z</pubDate>
      <itunes:author>Doug Meade</itunes:author>
      <author>Doug Meade</author>
    </item>
  </channel>
</rss>