Is there an efficient method to find all the self-inverse matrices with integers in a given range?
up vote
4
down vote
favorite
Given $n$ and a range, for example $[-10,10]$, is there an efficient method to find
all $n times n$-matrices $A$ with integers in the given range, which are self-inverse (that means the equation $A=A^{-1}$ holds)?
Some necessary conditions for $A$:
- $det(A)=-1$ or $det(A)=1$
- $A$ has no eigenvalues other than $-1$ and $1$
The minimal polynomial of $A$ divides $x^2-1$
With $A$, the matrices $-A$ , $A^T$ and $B^{-1}AB$ for any invertible matrix B
are also self-inverse.
So, is there a method to find the matrices systematically without checking
all possible matrices, which would be infeasible for, lets say $n = 4$ and
range $[-10,10]$?
linear-algebra matrices inverse
add a comment |
up vote
4
down vote
favorite
Given $n$ and a range, for example $[-10,10]$, is there an efficient method to find
all $n times n$-matrices $A$ with integers in the given range, which are self-inverse (that means the equation $A=A^{-1}$ holds)?
Some necessary conditions for $A$:
- $det(A)=-1$ or $det(A)=1$
- $A$ has no eigenvalues other than $-1$ and $1$
The minimal polynomial of $A$ divides $x^2-1$
With $A$, the matrices $-A$ , $A^T$ and $B^{-1}AB$ for any invertible matrix B
are also self-inverse.
So, is there a method to find the matrices systematically without checking
all possible matrices, which would be infeasible for, lets say $n = 4$ and
range $[-10,10]$?
linear-algebra matrices inverse
See also my related question, if the only eigenvalues of a self-inverse matrix are -1 and 1.
– Peter
Jun 13 '14 at 10:43
Without loss of generality, we can assume $a_{11}ge0$ and $a_{12}ge a_{21}$ to reduce the number of matrices.
– Peter
Jun 13 '14 at 10:53
add a comment |
up vote
4
down vote
favorite
up vote
4
down vote
favorite
Given $n$ and a range, for example $[-10,10]$, is there an efficient method to find
all $n times n$-matrices $A$ with integers in the given range, which are self-inverse (that means the equation $A=A^{-1}$ holds)?
Some necessary conditions for $A$:
- $det(A)=-1$ or $det(A)=1$
- $A$ has no eigenvalues other than $-1$ and $1$
The minimal polynomial of $A$ divides $x^2-1$
With $A$, the matrices $-A$ , $A^T$ and $B^{-1}AB$ for any invertible matrix B
are also self-inverse.
So, is there a method to find the matrices systematically without checking
all possible matrices, which would be infeasible for, lets say $n = 4$ and
range $[-10,10]$?
linear-algebra matrices inverse
Given $n$ and a range, for example $[-10,10]$, is there an efficient method to find
all $n times n$-matrices $A$ with integers in the given range, which are self-inverse (that means the equation $A=A^{-1}$ holds)?
Some necessary conditions for $A$:
- $det(A)=-1$ or $det(A)=1$
- $A$ has no eigenvalues other than $-1$ and $1$
The minimal polynomial of $A$ divides $x^2-1$
With $A$, the matrices $-A$ , $A^T$ and $B^{-1}AB$ for any invertible matrix B
are also self-inverse.
So, is there a method to find the matrices systematically without checking
all possible matrices, which would be infeasible for, lets say $n = 4$ and
range $[-10,10]$?
linear-algebra matrices inverse
linear-algebra matrices inverse
edited Jun 9 '15 at 3:56
Ken
3,60151728
3,60151728
asked Jun 13 '14 at 10:39
Peter
46.3k1039125
46.3k1039125
See also my related question, if the only eigenvalues of a self-inverse matrix are -1 and 1.
– Peter
Jun 13 '14 at 10:43
Without loss of generality, we can assume $a_{11}ge0$ and $a_{12}ge a_{21}$ to reduce the number of matrices.
– Peter
Jun 13 '14 at 10:53
add a comment |
See also my related question, if the only eigenvalues of a self-inverse matrix are -1 and 1.
– Peter
Jun 13 '14 at 10:43
Without loss of generality, we can assume $a_{11}ge0$ and $a_{12}ge a_{21}$ to reduce the number of matrices.
– Peter
Jun 13 '14 at 10:53
See also my related question, if the only eigenvalues of a self-inverse matrix are -1 and 1.
– Peter
Jun 13 '14 at 10:43
See also my related question, if the only eigenvalues of a self-inverse matrix are -1 and 1.
– Peter
Jun 13 '14 at 10:43
Without loss of generality, we can assume $a_{11}ge0$ and $a_{12}ge a_{21}$ to reduce the number of matrices.
– Peter
Jun 13 '14 at 10:53
Without loss of generality, we can assume $a_{11}ge0$ and $a_{12}ge a_{21}$ to reduce the number of matrices.
– Peter
Jun 13 '14 at 10:53
add a comment |
2 Answers
2
active
oldest
votes
up vote
2
down vote
accepted
This doesn't seem to have been studied much in the literature. The latest paper at MathSciNet was by Robert Hanson, titled "Self-Inverse Integer Matrices" (College Mathematics Journal, Vol 16, No 3 (Jun 1985), pp. 198-198). He proves that you can generate all self-inverse integer matrices by starting with a matrix of the form $left[begin{array}{c}I&A\ 0&-Iend{array}right]$ ($A$ is a rectangular matrix), and calculating $BAB^{-1}$, where $B$ ranges over all matrices you get from the identity matrix by doing the following row operations:
- Swapping two rows
- Adding a multiple of one row to another row
- Multiplying all the entries in a row by -1
I'm not sure this helps much. Maybe you can limit the row operations once you know the matrix $A$.
add a comment |
up vote
-3
down vote
I think the number is infinite...
because all possible rotation angles (a) are possible (analogy with spin in Quantum mechanics) for n=2 we can write in general the matrix [cos(a), sin(a)](line 1) [sin(a), -cos(a)] (line 2)
Zeno Toffano (France)
the matrix you propose do not necessarily have integer coefficients (except for a finite number of $a$)
– Surb
Jan 6 '16 at 10:58
1
The number cannot be infinite because I have a finite range (with DISCRETE entries) and a finite matrix.
– Peter
Jan 6 '16 at 20:18
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
This doesn't seem to have been studied much in the literature. The latest paper at MathSciNet was by Robert Hanson, titled "Self-Inverse Integer Matrices" (College Mathematics Journal, Vol 16, No 3 (Jun 1985), pp. 198-198). He proves that you can generate all self-inverse integer matrices by starting with a matrix of the form $left[begin{array}{c}I&A\ 0&-Iend{array}right]$ ($A$ is a rectangular matrix), and calculating $BAB^{-1}$, where $B$ ranges over all matrices you get from the identity matrix by doing the following row operations:
- Swapping two rows
- Adding a multiple of one row to another row
- Multiplying all the entries in a row by -1
I'm not sure this helps much. Maybe you can limit the row operations once you know the matrix $A$.
add a comment |
up vote
2
down vote
accepted
This doesn't seem to have been studied much in the literature. The latest paper at MathSciNet was by Robert Hanson, titled "Self-Inverse Integer Matrices" (College Mathematics Journal, Vol 16, No 3 (Jun 1985), pp. 198-198). He proves that you can generate all self-inverse integer matrices by starting with a matrix of the form $left[begin{array}{c}I&A\ 0&-Iend{array}right]$ ($A$ is a rectangular matrix), and calculating $BAB^{-1}$, where $B$ ranges over all matrices you get from the identity matrix by doing the following row operations:
- Swapping two rows
- Adding a multiple of one row to another row
- Multiplying all the entries in a row by -1
I'm not sure this helps much. Maybe you can limit the row operations once you know the matrix $A$.
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
This doesn't seem to have been studied much in the literature. The latest paper at MathSciNet was by Robert Hanson, titled "Self-Inverse Integer Matrices" (College Mathematics Journal, Vol 16, No 3 (Jun 1985), pp. 198-198). He proves that you can generate all self-inverse integer matrices by starting with a matrix of the form $left[begin{array}{c}I&A\ 0&-Iend{array}right]$ ($A$ is a rectangular matrix), and calculating $BAB^{-1}$, where $B$ ranges over all matrices you get from the identity matrix by doing the following row operations:
- Swapping two rows
- Adding a multiple of one row to another row
- Multiplying all the entries in a row by -1
I'm not sure this helps much. Maybe you can limit the row operations once you know the matrix $A$.
This doesn't seem to have been studied much in the literature. The latest paper at MathSciNet was by Robert Hanson, titled "Self-Inverse Integer Matrices" (College Mathematics Journal, Vol 16, No 3 (Jun 1985), pp. 198-198). He proves that you can generate all self-inverse integer matrices by starting with a matrix of the form $left[begin{array}{c}I&A\ 0&-Iend{array}right]$ ($A$ is a rectangular matrix), and calculating $BAB^{-1}$, where $B$ ranges over all matrices you get from the identity matrix by doing the following row operations:
- Swapping two rows
- Adding a multiple of one row to another row
- Multiplying all the entries in a row by -1
I'm not sure this helps much. Maybe you can limit the row operations once you know the matrix $A$.
answered Aug 11 '15 at 0:04
Christopher Carl Heckman
3,917920
3,917920
add a comment |
add a comment |
up vote
-3
down vote
I think the number is infinite...
because all possible rotation angles (a) are possible (analogy with spin in Quantum mechanics) for n=2 we can write in general the matrix [cos(a), sin(a)](line 1) [sin(a), -cos(a)] (line 2)
Zeno Toffano (France)
the matrix you propose do not necessarily have integer coefficients (except for a finite number of $a$)
– Surb
Jan 6 '16 at 10:58
1
The number cannot be infinite because I have a finite range (with DISCRETE entries) and a finite matrix.
– Peter
Jan 6 '16 at 20:18
add a comment |
up vote
-3
down vote
I think the number is infinite...
because all possible rotation angles (a) are possible (analogy with spin in Quantum mechanics) for n=2 we can write in general the matrix [cos(a), sin(a)](line 1) [sin(a), -cos(a)] (line 2)
Zeno Toffano (France)
the matrix you propose do not necessarily have integer coefficients (except for a finite number of $a$)
– Surb
Jan 6 '16 at 10:58
1
The number cannot be infinite because I have a finite range (with DISCRETE entries) and a finite matrix.
– Peter
Jan 6 '16 at 20:18
add a comment |
up vote
-3
down vote
up vote
-3
down vote
I think the number is infinite...
because all possible rotation angles (a) are possible (analogy with spin in Quantum mechanics) for n=2 we can write in general the matrix [cos(a), sin(a)](line 1) [sin(a), -cos(a)] (line 2)
Zeno Toffano (France)
I think the number is infinite...
because all possible rotation angles (a) are possible (analogy with spin in Quantum mechanics) for n=2 we can write in general the matrix [cos(a), sin(a)](line 1) [sin(a), -cos(a)] (line 2)
Zeno Toffano (France)
answered Jan 6 '16 at 10:38
Zeno
1
1
the matrix you propose do not necessarily have integer coefficients (except for a finite number of $a$)
– Surb
Jan 6 '16 at 10:58
1
The number cannot be infinite because I have a finite range (with DISCRETE entries) and a finite matrix.
– Peter
Jan 6 '16 at 20:18
add a comment |
the matrix you propose do not necessarily have integer coefficients (except for a finite number of $a$)
– Surb
Jan 6 '16 at 10:58
1
The number cannot be infinite because I have a finite range (with DISCRETE entries) and a finite matrix.
– Peter
Jan 6 '16 at 20:18
the matrix you propose do not necessarily have integer coefficients (except for a finite number of $a$)
– Surb
Jan 6 '16 at 10:58
the matrix you propose do not necessarily have integer coefficients (except for a finite number of $a$)
– Surb
Jan 6 '16 at 10:58
1
1
The number cannot be infinite because I have a finite range (with DISCRETE entries) and a finite matrix.
– Peter
Jan 6 '16 at 20:18
The number cannot be infinite because I have a finite range (with DISCRETE entries) and a finite matrix.
– Peter
Jan 6 '16 at 20:18
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f832728%2fis-there-an-efficient-method-to-find-all-the-self-inverse-matrices-with-integers%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
See also my related question, if the only eigenvalues of a self-inverse matrix are -1 and 1.
– Peter
Jun 13 '14 at 10:43
Without loss of generality, we can assume $a_{11}ge0$ and $a_{12}ge a_{21}$ to reduce the number of matrices.
– Peter
Jun 13 '14 at 10:53