A Symmetric bilinear variation for self congruence?
$begingroup$
--edited--
May I know the group or condition that satisfies $$S^T A S = A$$ possibly when $A_{ntimes n}$ is symmetric?
Meanwhile, below is an example for $S_{3times 3}$.
MATLAB code:
A = [2.9603 1.3855 1.8212 %symmetric
1.3855 4.7366 1.2824
1.8212 1.2824 2.653];
S = [-0.29412 -0.35451 0.71379
0.15026 1.0698 0.18701
1.15 -0.0036714 0.17226];
S'*A*S % returns symmetric matrix A as 'ans' below
% it's off a bit as I intentionally rounded the elements in the
% matrices above for the sake of communicating this.
% ans =
% 2.9604 1.3856 1.8212
% 1.3856 4.7367 1.2824
% 1.8212 1.2824 2.653
Thanks in advance.
bilinear-form
$endgroup$
|
show 1 more comment
$begingroup$
--edited--
May I know the group or condition that satisfies $$S^T A S = A$$ possibly when $A_{ntimes n}$ is symmetric?
Meanwhile, below is an example for $S_{3times 3}$.
MATLAB code:
A = [2.9603 1.3855 1.8212 %symmetric
1.3855 4.7366 1.2824
1.8212 1.2824 2.653];
S = [-0.29412 -0.35451 0.71379
0.15026 1.0698 0.18701
1.15 -0.0036714 0.17226];
S'*A*S % returns symmetric matrix A as 'ans' below
% it's off a bit as I intentionally rounded the elements in the
% matrices above for the sake of communicating this.
% ans =
% 2.9604 1.3856 1.8212
% 1.3856 4.7367 1.2824
% 1.8212 1.2824 2.653
Thanks in advance.
bilinear-form
$endgroup$
$begingroup$
What do you mean by "group or condition"? Isn't $S^T A S = A$ precisely the condition on $S$? Note that if $A$ is too general, namely degenerate, then the set of $S$ satisfying the above condition won't form a group as they won't always be invertible (e.g. $A = 0$ puts no constraint on S). If $A$ is invertible and of signature (p,q), then by use of the spectral theorem one can show that the group of those $S$ satisfying $S^TAS = A$ is conjugated to the "orthogonal group in signature (p,q)", $O(p,q)$. But perhaps are you imposing other constraints on $S$, such as being symplectic?
$endgroup$
– Jordan Payette
Nov 29 '18 at 14:03
$begingroup$
@JordanPayette, thanks for the insight on spectral theorem. The conditions are that $A$ is Symmetric, positive definite, and invertible. No, it is not symplectic since simplectic matrices are of the order $2n times 2n$. That makes sense now. I do appreciate.
$endgroup$
– Kay
Nov 29 '18 at 17:21
$begingroup$
Of course $S$ can't be symplectic if your matrices are of odd size, but you mentioned symplectic matrices and you chose the symplectic-geometry tag, so that needed precisions. If $A_{n times n}$ is positive definite, then it only has positive eigenvalues ; by the spectral theorem it's of the form $A = M^TM$ where $M = D^{1/2}Q$ where $D$ is diagonal and formed by the eigenvalues of $A$ and $Q$ is orthogonal. Note that $M$ is invertible, since $A$ is positive definite. Then ${S : S^T A S = A } = { S : MSM^{-1} in O(n)} = M^{-1} O(n) M$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 17:34
$begingroup$
@JordanPayette. Thanks for the reply. However, I honestly couldn't understand the last part: ${ S : MSM^{-1} in O(n)} = M^{-1} O(n) M$ Can you KINDLY explain with words? Thanks.
$endgroup$
– Kay
Nov 29 '18 at 20:42
$begingroup$
Write $I_n$ for the identity matrix of size n and $O(n) = { Q in M(n, mathbb{R}) : Q^TQ = I_{n}}$ for the orthogonal group in dim n. Put differently $Q$ is orthogonal iff $Q^T I_n Q = I_n$. Now by the spectral theorem, for any symmetric positive definite matrix $A$ there are $Q$ orthogonal and $D$ diagonal s.t. $$A = Q^TDQ = Q^T D^{1/2} D^{1/2} Q = (D^{1/2}Q)^T(D^{1/2}Q) = M^TM.$$ Now $S$ satisfies $S^TAS = A$ iff $S^TM^TMS = M^TM$ iff $(M^T)^{-1}S^TM^TMSM^{-1} = I$ iff $MSM^{-1} in O(n)$ iff $S = M^{-1}PM$ for some $P$ orthogonal iff $S in M^{-1}O(n)M := {M^{-1}RM : R in O(n)}$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 22:56
|
show 1 more comment
$begingroup$
--edited--
May I know the group or condition that satisfies $$S^T A S = A$$ possibly when $A_{ntimes n}$ is symmetric?
Meanwhile, below is an example for $S_{3times 3}$.
MATLAB code:
A = [2.9603 1.3855 1.8212 %symmetric
1.3855 4.7366 1.2824
1.8212 1.2824 2.653];
S = [-0.29412 -0.35451 0.71379
0.15026 1.0698 0.18701
1.15 -0.0036714 0.17226];
S'*A*S % returns symmetric matrix A as 'ans' below
% it's off a bit as I intentionally rounded the elements in the
% matrices above for the sake of communicating this.
% ans =
% 2.9604 1.3856 1.8212
% 1.3856 4.7367 1.2824
% 1.8212 1.2824 2.653
Thanks in advance.
bilinear-form
$endgroup$
--edited--
May I know the group or condition that satisfies $$S^T A S = A$$ possibly when $A_{ntimes n}$ is symmetric?
Meanwhile, below is an example for $S_{3times 3}$.
MATLAB code:
A = [2.9603 1.3855 1.8212 %symmetric
1.3855 4.7366 1.2824
1.8212 1.2824 2.653];
S = [-0.29412 -0.35451 0.71379
0.15026 1.0698 0.18701
1.15 -0.0036714 0.17226];
S'*A*S % returns symmetric matrix A as 'ans' below
% it's off a bit as I intentionally rounded the elements in the
% matrices above for the sake of communicating this.
% ans =
% 2.9604 1.3856 1.8212
% 1.3856 4.7367 1.2824
% 1.8212 1.2824 2.653
Thanks in advance.
bilinear-form
bilinear-form
edited Nov 29 '18 at 23:30
Kay
asked Nov 28 '18 at 5:57
KayKay
144
144
$begingroup$
What do you mean by "group or condition"? Isn't $S^T A S = A$ precisely the condition on $S$? Note that if $A$ is too general, namely degenerate, then the set of $S$ satisfying the above condition won't form a group as they won't always be invertible (e.g. $A = 0$ puts no constraint on S). If $A$ is invertible and of signature (p,q), then by use of the spectral theorem one can show that the group of those $S$ satisfying $S^TAS = A$ is conjugated to the "orthogonal group in signature (p,q)", $O(p,q)$. But perhaps are you imposing other constraints on $S$, such as being symplectic?
$endgroup$
– Jordan Payette
Nov 29 '18 at 14:03
$begingroup$
@JordanPayette, thanks for the insight on spectral theorem. The conditions are that $A$ is Symmetric, positive definite, and invertible. No, it is not symplectic since simplectic matrices are of the order $2n times 2n$. That makes sense now. I do appreciate.
$endgroup$
– Kay
Nov 29 '18 at 17:21
$begingroup$
Of course $S$ can't be symplectic if your matrices are of odd size, but you mentioned symplectic matrices and you chose the symplectic-geometry tag, so that needed precisions. If $A_{n times n}$ is positive definite, then it only has positive eigenvalues ; by the spectral theorem it's of the form $A = M^TM$ where $M = D^{1/2}Q$ where $D$ is diagonal and formed by the eigenvalues of $A$ and $Q$ is orthogonal. Note that $M$ is invertible, since $A$ is positive definite. Then ${S : S^T A S = A } = { S : MSM^{-1} in O(n)} = M^{-1} O(n) M$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 17:34
$begingroup$
@JordanPayette. Thanks for the reply. However, I honestly couldn't understand the last part: ${ S : MSM^{-1} in O(n)} = M^{-1} O(n) M$ Can you KINDLY explain with words? Thanks.
$endgroup$
– Kay
Nov 29 '18 at 20:42
$begingroup$
Write $I_n$ for the identity matrix of size n and $O(n) = { Q in M(n, mathbb{R}) : Q^TQ = I_{n}}$ for the orthogonal group in dim n. Put differently $Q$ is orthogonal iff $Q^T I_n Q = I_n$. Now by the spectral theorem, for any symmetric positive definite matrix $A$ there are $Q$ orthogonal and $D$ diagonal s.t. $$A = Q^TDQ = Q^T D^{1/2} D^{1/2} Q = (D^{1/2}Q)^T(D^{1/2}Q) = M^TM.$$ Now $S$ satisfies $S^TAS = A$ iff $S^TM^TMS = M^TM$ iff $(M^T)^{-1}S^TM^TMSM^{-1} = I$ iff $MSM^{-1} in O(n)$ iff $S = M^{-1}PM$ for some $P$ orthogonal iff $S in M^{-1}O(n)M := {M^{-1}RM : R in O(n)}$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 22:56
|
show 1 more comment
$begingroup$
What do you mean by "group or condition"? Isn't $S^T A S = A$ precisely the condition on $S$? Note that if $A$ is too general, namely degenerate, then the set of $S$ satisfying the above condition won't form a group as they won't always be invertible (e.g. $A = 0$ puts no constraint on S). If $A$ is invertible and of signature (p,q), then by use of the spectral theorem one can show that the group of those $S$ satisfying $S^TAS = A$ is conjugated to the "orthogonal group in signature (p,q)", $O(p,q)$. But perhaps are you imposing other constraints on $S$, such as being symplectic?
$endgroup$
– Jordan Payette
Nov 29 '18 at 14:03
$begingroup$
@JordanPayette, thanks for the insight on spectral theorem. The conditions are that $A$ is Symmetric, positive definite, and invertible. No, it is not symplectic since simplectic matrices are of the order $2n times 2n$. That makes sense now. I do appreciate.
$endgroup$
– Kay
Nov 29 '18 at 17:21
$begingroup$
Of course $S$ can't be symplectic if your matrices are of odd size, but you mentioned symplectic matrices and you chose the symplectic-geometry tag, so that needed precisions. If $A_{n times n}$ is positive definite, then it only has positive eigenvalues ; by the spectral theorem it's of the form $A = M^TM$ where $M = D^{1/2}Q$ where $D$ is diagonal and formed by the eigenvalues of $A$ and $Q$ is orthogonal. Note that $M$ is invertible, since $A$ is positive definite. Then ${S : S^T A S = A } = { S : MSM^{-1} in O(n)} = M^{-1} O(n) M$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 17:34
$begingroup$
@JordanPayette. Thanks for the reply. However, I honestly couldn't understand the last part: ${ S : MSM^{-1} in O(n)} = M^{-1} O(n) M$ Can you KINDLY explain with words? Thanks.
$endgroup$
– Kay
Nov 29 '18 at 20:42
$begingroup$
Write $I_n$ for the identity matrix of size n and $O(n) = { Q in M(n, mathbb{R}) : Q^TQ = I_{n}}$ for the orthogonal group in dim n. Put differently $Q$ is orthogonal iff $Q^T I_n Q = I_n$. Now by the spectral theorem, for any symmetric positive definite matrix $A$ there are $Q$ orthogonal and $D$ diagonal s.t. $$A = Q^TDQ = Q^T D^{1/2} D^{1/2} Q = (D^{1/2}Q)^T(D^{1/2}Q) = M^TM.$$ Now $S$ satisfies $S^TAS = A$ iff $S^TM^TMS = M^TM$ iff $(M^T)^{-1}S^TM^TMSM^{-1} = I$ iff $MSM^{-1} in O(n)$ iff $S = M^{-1}PM$ for some $P$ orthogonal iff $S in M^{-1}O(n)M := {M^{-1}RM : R in O(n)}$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 22:56
$begingroup$
What do you mean by "group or condition"? Isn't $S^T A S = A$ precisely the condition on $S$? Note that if $A$ is too general, namely degenerate, then the set of $S$ satisfying the above condition won't form a group as they won't always be invertible (e.g. $A = 0$ puts no constraint on S). If $A$ is invertible and of signature (p,q), then by use of the spectral theorem one can show that the group of those $S$ satisfying $S^TAS = A$ is conjugated to the "orthogonal group in signature (p,q)", $O(p,q)$. But perhaps are you imposing other constraints on $S$, such as being symplectic?
$endgroup$
– Jordan Payette
Nov 29 '18 at 14:03
$begingroup$
What do you mean by "group or condition"? Isn't $S^T A S = A$ precisely the condition on $S$? Note that if $A$ is too general, namely degenerate, then the set of $S$ satisfying the above condition won't form a group as they won't always be invertible (e.g. $A = 0$ puts no constraint on S). If $A$ is invertible and of signature (p,q), then by use of the spectral theorem one can show that the group of those $S$ satisfying $S^TAS = A$ is conjugated to the "orthogonal group in signature (p,q)", $O(p,q)$. But perhaps are you imposing other constraints on $S$, such as being symplectic?
$endgroup$
– Jordan Payette
Nov 29 '18 at 14:03
$begingroup$
@JordanPayette, thanks for the insight on spectral theorem. The conditions are that $A$ is Symmetric, positive definite, and invertible. No, it is not symplectic since simplectic matrices are of the order $2n times 2n$. That makes sense now. I do appreciate.
$endgroup$
– Kay
Nov 29 '18 at 17:21
$begingroup$
@JordanPayette, thanks for the insight on spectral theorem. The conditions are that $A$ is Symmetric, positive definite, and invertible. No, it is not symplectic since simplectic matrices are of the order $2n times 2n$. That makes sense now. I do appreciate.
$endgroup$
– Kay
Nov 29 '18 at 17:21
$begingroup$
Of course $S$ can't be symplectic if your matrices are of odd size, but you mentioned symplectic matrices and you chose the symplectic-geometry tag, so that needed precisions. If $A_{n times n}$ is positive definite, then it only has positive eigenvalues ; by the spectral theorem it's of the form $A = M^TM$ where $M = D^{1/2}Q$ where $D$ is diagonal and formed by the eigenvalues of $A$ and $Q$ is orthogonal. Note that $M$ is invertible, since $A$ is positive definite. Then ${S : S^T A S = A } = { S : MSM^{-1} in O(n)} = M^{-1} O(n) M$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 17:34
$begingroup$
Of course $S$ can't be symplectic if your matrices are of odd size, but you mentioned symplectic matrices and you chose the symplectic-geometry tag, so that needed precisions. If $A_{n times n}$ is positive definite, then it only has positive eigenvalues ; by the spectral theorem it's of the form $A = M^TM$ where $M = D^{1/2}Q$ where $D$ is diagonal and formed by the eigenvalues of $A$ and $Q$ is orthogonal. Note that $M$ is invertible, since $A$ is positive definite. Then ${S : S^T A S = A } = { S : MSM^{-1} in O(n)} = M^{-1} O(n) M$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 17:34
$begingroup$
@JordanPayette. Thanks for the reply. However, I honestly couldn't understand the last part: ${ S : MSM^{-1} in O(n)} = M^{-1} O(n) M$ Can you KINDLY explain with words? Thanks.
$endgroup$
– Kay
Nov 29 '18 at 20:42
$begingroup$
@JordanPayette. Thanks for the reply. However, I honestly couldn't understand the last part: ${ S : MSM^{-1} in O(n)} = M^{-1} O(n) M$ Can you KINDLY explain with words? Thanks.
$endgroup$
– Kay
Nov 29 '18 at 20:42
$begingroup$
Write $I_n$ for the identity matrix of size n and $O(n) = { Q in M(n, mathbb{R}) : Q^TQ = I_{n}}$ for the orthogonal group in dim n. Put differently $Q$ is orthogonal iff $Q^T I_n Q = I_n$. Now by the spectral theorem, for any symmetric positive definite matrix $A$ there are $Q$ orthogonal and $D$ diagonal s.t. $$A = Q^TDQ = Q^T D^{1/2} D^{1/2} Q = (D^{1/2}Q)^T(D^{1/2}Q) = M^TM.$$ Now $S$ satisfies $S^TAS = A$ iff $S^TM^TMS = M^TM$ iff $(M^T)^{-1}S^TM^TMSM^{-1} = I$ iff $MSM^{-1} in O(n)$ iff $S = M^{-1}PM$ for some $P$ orthogonal iff $S in M^{-1}O(n)M := {M^{-1}RM : R in O(n)}$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 22:56
$begingroup$
Write $I_n$ for the identity matrix of size n and $O(n) = { Q in M(n, mathbb{R}) : Q^TQ = I_{n}}$ for the orthogonal group in dim n. Put differently $Q$ is orthogonal iff $Q^T I_n Q = I_n$. Now by the spectral theorem, for any symmetric positive definite matrix $A$ there are $Q$ orthogonal and $D$ diagonal s.t. $$A = Q^TDQ = Q^T D^{1/2} D^{1/2} Q = (D^{1/2}Q)^T(D^{1/2}Q) = M^TM.$$ Now $S$ satisfies $S^TAS = A$ iff $S^TM^TMS = M^TM$ iff $(M^T)^{-1}S^TM^TMSM^{-1} = I$ iff $MSM^{-1} in O(n)$ iff $S = M^{-1}PM$ for some $P$ orthogonal iff $S in M^{-1}O(n)M := {M^{-1}RM : R in O(n)}$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 22:56
|
show 1 more comment
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f3016775%2fa-symmetric-bilinear-variation-for-self-congruence%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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%2f3016775%2fa-symmetric-bilinear-variation-for-self-congruence%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
$begingroup$
What do you mean by "group or condition"? Isn't $S^T A S = A$ precisely the condition on $S$? Note that if $A$ is too general, namely degenerate, then the set of $S$ satisfying the above condition won't form a group as they won't always be invertible (e.g. $A = 0$ puts no constraint on S). If $A$ is invertible and of signature (p,q), then by use of the spectral theorem one can show that the group of those $S$ satisfying $S^TAS = A$ is conjugated to the "orthogonal group in signature (p,q)", $O(p,q)$. But perhaps are you imposing other constraints on $S$, such as being symplectic?
$endgroup$
– Jordan Payette
Nov 29 '18 at 14:03
$begingroup$
@JordanPayette, thanks for the insight on spectral theorem. The conditions are that $A$ is Symmetric, positive definite, and invertible. No, it is not symplectic since simplectic matrices are of the order $2n times 2n$. That makes sense now. I do appreciate.
$endgroup$
– Kay
Nov 29 '18 at 17:21
$begingroup$
Of course $S$ can't be symplectic if your matrices are of odd size, but you mentioned symplectic matrices and you chose the symplectic-geometry tag, so that needed precisions. If $A_{n times n}$ is positive definite, then it only has positive eigenvalues ; by the spectral theorem it's of the form $A = M^TM$ where $M = D^{1/2}Q$ where $D$ is diagonal and formed by the eigenvalues of $A$ and $Q$ is orthogonal. Note that $M$ is invertible, since $A$ is positive definite. Then ${S : S^T A S = A } = { S : MSM^{-1} in O(n)} = M^{-1} O(n) M$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 17:34
$begingroup$
@JordanPayette. Thanks for the reply. However, I honestly couldn't understand the last part: ${ S : MSM^{-1} in O(n)} = M^{-1} O(n) M$ Can you KINDLY explain with words? Thanks.
$endgroup$
– Kay
Nov 29 '18 at 20:42
$begingroup$
Write $I_n$ for the identity matrix of size n and $O(n) = { Q in M(n, mathbb{R}) : Q^TQ = I_{n}}$ for the orthogonal group in dim n. Put differently $Q$ is orthogonal iff $Q^T I_n Q = I_n$. Now by the spectral theorem, for any symmetric positive definite matrix $A$ there are $Q$ orthogonal and $D$ diagonal s.t. $$A = Q^TDQ = Q^T D^{1/2} D^{1/2} Q = (D^{1/2}Q)^T(D^{1/2}Q) = M^TM.$$ Now $S$ satisfies $S^TAS = A$ iff $S^TM^TMS = M^TM$ iff $(M^T)^{-1}S^TM^TMSM^{-1} = I$ iff $MSM^{-1} in O(n)$ iff $S = M^{-1}PM$ for some $P$ orthogonal iff $S in M^{-1}O(n)M := {M^{-1}RM : R in O(n)}$.
$endgroup$
– Jordan Payette
Nov 29 '18 at 22:56