|
Calling Sequence
|
|
Eigenvectors(A, C, imp, out, options, outopts)
|
|
Parameters
|
|
A
|
-
|
Matrix; Matrix whose Eigenvectors are required
|
C
|
-
|
(optional) Matrix; Matrix for the generalized eigenvector problem
|
imp
|
-
|
(optional) equation of the form implicit=true or false; specify that roots of the characteristic polynomial contain implicit RootOfs or radicals
|
out
|
-
|
(optional) equation of the form output = obj where obj is one of 'values', 'vectors', or 'list', or a list containing one or more of these names; selects format of the result object
|
options
|
-
|
(optional); constructor options for the result object(s)
|
outopts
|
-
|
(optional) equation(s) of the form outputoptions[o]=list where o is one of 'values', 'vectors', or 'list'; constructor options for the specified result object
|
|
|
|
|
Description
|
|
•
|
The Eigenvectors(A) command solves the simple eigenvector problem by returning an expression sequence whose first member is a Vector V of the eigenvalues of A, and whose second member is a Matrix E whose columns are the eigenvectors of A. The ith column of E is an eigenvector associated with the ith eigenvalue of the returned Vector V.
|
|
In the simple floating-point eigenvector problem, if A has either the symmetric or the hermitian indexing function then the returned eigenvalue object has or datatype. Otherwise the returned eigenvalue object has or datatype.
|
•
|
The Eigenvectors(..) function solves the simple eigenvector problem and the generalized eigenvalue problem . The eigenvalues V[i] and the nonzero eigenvectors E[1 .. -1, i] are such that for the simple eigenvalue problem , and for the generalized problem .
|
•
|
The Eigenvectors(A, C) command solves the generalized eigenvector problem.
|
|
In the generalized floating-point eigenvector problem, if A and C have either symmetric or hermitian indexing functions and C also has the positive_definite attribute then the returned eigenvalue object has or datatype. Otherwise the returned eigenvalue object has or datatype.
|
•
|
With an eigenvalue of multiplicity , there may be fewer than linearly independent eigenvectors. In this case, the matrix is called defective. By design, the returned matrix always has full column dimension. Therefore, in the defective case, some of the columns that are returned are zero. Thus, they are not eigenvectors. With the option, output=list, only eigenvectors are returned. For more information, see LinearAlgebra[JordanForm] and LinearAlgebra[SchurForm].
|
•
|
The format in which the Eigenvectors of A are returned is determined by parameter out. By default, an expression sequence is returned as described above. In the case that the output is specified as list, a list of lists is returned. The first element of each sublist is an eigenvalue, the second element is its multiplicity, and the third element is a set of linearly independent eigenvectors corresponding to that eigenvalue.
|
•
|
The options option provides additional information (readonly, shape, storage, order, datatype, and attributes) to the Matrix or Vector constructor that builds the result(s). These options may also be provided in the form outputoptions[o]=[...], where [...] represents a Maple list. If a constructor option is provided in both the calling sequence directly and in an outputoptions[o] option, the latter takes precedence (regardless of the order).
|
•
|
This function is part of the LinearAlgebra package, and so it can be used in the form Eigenvectors(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[Eigenvectors](..).
|
|
|
Examples
|
|
>
|
|
Find the eigenvalues and eigenvectors of the Matrix .
>
|
|
| (2) |
Verify for the second eigenvalue and second eigenvector.
Find the eigenvectors of the Matrix using the option output=list.
>
|
|
>
|
|
| (5) |
Find the generalized eigenvectors of and .
>
|
|
>
|
|
>
|
|
| (6) |
A simple floating-point eigenvector problem.
>
|
|
>
|
|
| (8) |
By default, the resulting eigenvalues are given as complex numbers.
>
|
|
However, if has the indexing function, then the resulting eigenvalues are given as real floating-point numbers.
>
|
|
| (10) |
>
|
|
|
|
|