LieAlgebras[RepresentationEigenvector] - find a simultaneous eigenvector for the representation of a solvable Lie algebra
Calling Sequences
RepresentationEigenvector()
Parameters
- a representation of a solvable Lie algebra on a vector space
|
Description
|
|
•
|
If is a representation of a solvable Lie algebra , then a fundamental theorem due to Lie (see, for example, Fulton and Harris, page 125 or Varadarajan, page 200) asserts that there is a vector such that for all . The eigenvector is called a simultaneous eigenvector for the representation . The vector may be complex and will, in general, not be unique.
|
•
|
Let be the given basis for . The program RepresentationEigenvector() returns the list of eigenvalues and the simultaneous eigenvector .
|
•
|
The program RepresentationEigenvector() works as follows. First a change of basis is made using the program AscendingIdealsBasis so that in the new basis the subalgebra spanned by is an ideal in the subalgebra . Then an eigenspace for the linear transformation is found. This space is invariant under so the program next finds a subspace which is a eigenspace for and so on.
|
|
|
|
|
V >
|
with(DifferentialGeometry): with(LieAlgebras): with(Library):
|
Example 1.
First we define a representation of a 4 dimensional algebra.
>
|
L1 := LieAlgebraData([[x2, x4] = x1, [x3 ,x4] = x3], [x1, x2, x3, x4], Alg1);
|
| (2.1) |
Alg1 >
|
DGsetup([x1, x2, x3, x4], V);
|
V >
|
M1 := [Matrix([[0, 0, 0, 0], [0, 0, 0, - 1], [0, 0, 0, 0], [0, 0, 0, 0]]), Matrix([[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, - 1], [0, 0, 0, 0]]), Matrix([[0, 0, 0, 1], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]), Matrix([[- 1, 0, 0, 0], [0, 0, - 1, 0], [0, 0, 0, 0], [0, 0, 0, 0]])]:
|
V >
|
rho1 := Representation(Alg1, V, M1);
|
Calculate a common eigenvector. The program returns the eigenvalues and the eigenvectors.
Alg1 >
|
RepresentationEigenvector(rho1);
|
| (2.4) |
V >
|
seq(ApplyRepresentation(rho1, v, D_x1), v = [e1, e2, e3, e4]);
|
| (2.5) |
We remark that this representation admits an invariant vector which is also a simultaneous eigenvector with eigenvalues .
Example 2.
When there is more than one simultaneous eigenvector, the one found by the procedure RepresentationEigenvector may depend upon the basis chosen for the representation space. For example, if we change basis for the representation space in Example 1, the program returns a vector with eigenvalues - that is, an invariant vector.
V >
|
P := Matrix([[1, 0, 1, 0], [0, 1, - 1, 0], [2, 0, 1, - 2], [1, 2, 0, 1]]);
|
V >
|
rho2 := ChangeRepresentationBasis(rho1, P, "Range", V);
|
Alg1 >
|
y := RepresentationEigenvector(rho2);
|
| (2.7) |
V >
|
seq(ApplyRepresentation(rho2, v, y[2][1]), v = [e1, e2, e3, e4]);
|
| (2.8) |
Example 3.
Here we give a simple example where one of the eigenvalues is complex.
V >
|
L := Retrieve("Winternitz", 1, [3, 7], Alg2);
|
| (2.9) |
Alg2 >
|
DGsetup([x1, x2, x3], V2):
|
V2 >
|
rho3 := Representation(Alg2, V2, Adjoint(Alg2));
|
Alg2 >
|
y := RepresentationEigenvector(rho3);
|
| (2.10) |
V2 >
|
seq(ApplyRepresentation(rho3, v, y[2][1]), v = [e1, e2, e3]);
|
| (2.11) |
Example 4.
We redo Example 1 with a change of basis for the algebra. We also set infolevel[RepresentationEigenvector] = 2 so that the sequence of common eigenvectors is displayed.
Alg1 >
|
B := evalDG([e1 - e3 + 2*e4, e3, e2 + 2*e4, e1 - e3 + e4]);
|
| (2.12) |
Alg1 >
|
L4 := LieAlgebraData(B, Alg4);
|
| (2.13) |
Alg1 >
|
DGsetup(L4, [f], [alpha]);
|
Alg4 >
|
rho4 := ChangeRepresentationBasis(rho2, B, Alg4);
|
Alg4 >
|
infolevel[RepresentationEigenvector] := 3:
|
Alg4 >
|
y := RepresentationEigenvector(rho4);
|
The common eigenspace for the first 1 vectors is [-D_x1+D_x4, D_x3, -2*D_x1+D_x2]
The common eigenspace for the first 2 vectors is [-4/3*D_x1+D_x2+4/3*D_x3-2/3*D_x4]
The common eigenspace for the first 3 vectors is [-4/3*D_x1+D_x2+4/3*D_x3-2/3*D_x4]
The common eigenspace for the first 4 vectors is [-4/3*D_x1+D_x2+4/3*D_x3-2/3*D_x4]
| |
| (2.15) |
V >
|
seq(ApplyRepresentation(rho4, f||i, y[2][1]) &minus (y[1][i] &mult y[2][1]), i = 1..4);
|
| (2.16) |
|
|
|
|
|
|