Why does an orthogonal matrix have the property $Q^T Q = Q Q^T = I$?
$begingroup$
According to Wikipedia, an orthogonal matrix is a square matrix whose columns and rows are orthonormal vectors. It also says that this definition is equivalent to saying that an orthogonal matrix $Q$ is a matrix for which $Q^T Q = Q Q^T = I$, where $I$ is the identity matrix. Why are these definitions equivalent?
linear-algebra matrices
$endgroup$
add a comment |
$begingroup$
According to Wikipedia, an orthogonal matrix is a square matrix whose columns and rows are orthonormal vectors. It also says that this definition is equivalent to saying that an orthogonal matrix $Q$ is a matrix for which $Q^T Q = Q Q^T = I$, where $I$ is the identity matrix. Why are these definitions equivalent?
linear-algebra matrices
$endgroup$
3
$begingroup$
If you write out matrix multiplication, it turns out that you’re computing a bunch of dot products of the columns of $Q$.
$endgroup$
– Michael Burr
Dec 21 '18 at 14:07
$begingroup$
See math.stackexchange.com/questions/2028990/…
$endgroup$
– Widawensen
Dec 21 '18 at 14:46
add a comment |
$begingroup$
According to Wikipedia, an orthogonal matrix is a square matrix whose columns and rows are orthonormal vectors. It also says that this definition is equivalent to saying that an orthogonal matrix $Q$ is a matrix for which $Q^T Q = Q Q^T = I$, where $I$ is the identity matrix. Why are these definitions equivalent?
linear-algebra matrices
$endgroup$
According to Wikipedia, an orthogonal matrix is a square matrix whose columns and rows are orthonormal vectors. It also says that this definition is equivalent to saying that an orthogonal matrix $Q$ is a matrix for which $Q^T Q = Q Q^T = I$, where $I$ is the identity matrix. Why are these definitions equivalent?
linear-algebra matrices
linear-algebra matrices
asked Dec 21 '18 at 14:04
K. ClaessonK. Claesson
17110
17110
3
$begingroup$
If you write out matrix multiplication, it turns out that you’re computing a bunch of dot products of the columns of $Q$.
$endgroup$
– Michael Burr
Dec 21 '18 at 14:07
$begingroup$
See math.stackexchange.com/questions/2028990/…
$endgroup$
– Widawensen
Dec 21 '18 at 14:46
add a comment |
3
$begingroup$
If you write out matrix multiplication, it turns out that you’re computing a bunch of dot products of the columns of $Q$.
$endgroup$
– Michael Burr
Dec 21 '18 at 14:07
$begingroup$
See math.stackexchange.com/questions/2028990/…
$endgroup$
– Widawensen
Dec 21 '18 at 14:46
3
3
$begingroup$
If you write out matrix multiplication, it turns out that you’re computing a bunch of dot products of the columns of $Q$.
$endgroup$
– Michael Burr
Dec 21 '18 at 14:07
$begingroup$
If you write out matrix multiplication, it turns out that you’re computing a bunch of dot products of the columns of $Q$.
$endgroup$
– Michael Burr
Dec 21 '18 at 14:07
$begingroup$
See math.stackexchange.com/questions/2028990/…
$endgroup$
– Widawensen
Dec 21 '18 at 14:46
$begingroup$
See math.stackexchange.com/questions/2028990/…
$endgroup$
– Widawensen
Dec 21 '18 at 14:46
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
The $(i,j)$ entry of $Q^{T}Q$ is the dot product of the $i$-th column of $Q$ with the $j$-th column of $Q$. Since $Q$ is orthogonal, these will be $0$ when $ineq j$, and $1$ when $i=j$ (because the columns are unit vectors). Therefore $Q^{T}Q$ has ones on the diagonal and zeros everywhere else, so it's the identity matrix.
$endgroup$
add a comment |
$begingroup$
As pwerth noted, in the product $Q^top Q$, the $(i,j)$-entry is simply the inner product of the $i$-th column of $Q$ with the $j$-th column. It is worth noting however that this implies that $QQ^top$ is also the identity. This is because when a square matrix has a left-inverse, this left-inverse is immediately a right-inverse also.
The reason why this is interesting is because this makes a big use of the finite-dimensionality of the vector space we work over (in this case, $mathbb{R}^n$, with $n$ the size of $Q$). For more details, see this question, where you'll also find a counterexample in the infinite dimensional case.
$endgroup$
add a comment |
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%2f3048523%2fwhy-does-an-orthogonal-matrix-have-the-property-qt-q-q-qt-i%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
The $(i,j)$ entry of $Q^{T}Q$ is the dot product of the $i$-th column of $Q$ with the $j$-th column of $Q$. Since $Q$ is orthogonal, these will be $0$ when $ineq j$, and $1$ when $i=j$ (because the columns are unit vectors). Therefore $Q^{T}Q$ has ones on the diagonal and zeros everywhere else, so it's the identity matrix.
$endgroup$
add a comment |
$begingroup$
The $(i,j)$ entry of $Q^{T}Q$ is the dot product of the $i$-th column of $Q$ with the $j$-th column of $Q$. Since $Q$ is orthogonal, these will be $0$ when $ineq j$, and $1$ when $i=j$ (because the columns are unit vectors). Therefore $Q^{T}Q$ has ones on the diagonal and zeros everywhere else, so it's the identity matrix.
$endgroup$
add a comment |
$begingroup$
The $(i,j)$ entry of $Q^{T}Q$ is the dot product of the $i$-th column of $Q$ with the $j$-th column of $Q$. Since $Q$ is orthogonal, these will be $0$ when $ineq j$, and $1$ when $i=j$ (because the columns are unit vectors). Therefore $Q^{T}Q$ has ones on the diagonal and zeros everywhere else, so it's the identity matrix.
$endgroup$
The $(i,j)$ entry of $Q^{T}Q$ is the dot product of the $i$-th column of $Q$ with the $j$-th column of $Q$. Since $Q$ is orthogonal, these will be $0$ when $ineq j$, and $1$ when $i=j$ (because the columns are unit vectors). Therefore $Q^{T}Q$ has ones on the diagonal and zeros everywhere else, so it's the identity matrix.
edited Dec 21 '18 at 14:44
David C. Ullrich
61k43994
61k43994
answered Dec 21 '18 at 14:09
pwerthpwerth
3,243417
3,243417
add a comment |
add a comment |
$begingroup$
As pwerth noted, in the product $Q^top Q$, the $(i,j)$-entry is simply the inner product of the $i$-th column of $Q$ with the $j$-th column. It is worth noting however that this implies that $QQ^top$ is also the identity. This is because when a square matrix has a left-inverse, this left-inverse is immediately a right-inverse also.
The reason why this is interesting is because this makes a big use of the finite-dimensionality of the vector space we work over (in this case, $mathbb{R}^n$, with $n$ the size of $Q$). For more details, see this question, where you'll also find a counterexample in the infinite dimensional case.
$endgroup$
add a comment |
$begingroup$
As pwerth noted, in the product $Q^top Q$, the $(i,j)$-entry is simply the inner product of the $i$-th column of $Q$ with the $j$-th column. It is worth noting however that this implies that $QQ^top$ is also the identity. This is because when a square matrix has a left-inverse, this left-inverse is immediately a right-inverse also.
The reason why this is interesting is because this makes a big use of the finite-dimensionality of the vector space we work over (in this case, $mathbb{R}^n$, with $n$ the size of $Q$). For more details, see this question, where you'll also find a counterexample in the infinite dimensional case.
$endgroup$
add a comment |
$begingroup$
As pwerth noted, in the product $Q^top Q$, the $(i,j)$-entry is simply the inner product of the $i$-th column of $Q$ with the $j$-th column. It is worth noting however that this implies that $QQ^top$ is also the identity. This is because when a square matrix has a left-inverse, this left-inverse is immediately a right-inverse also.
The reason why this is interesting is because this makes a big use of the finite-dimensionality of the vector space we work over (in this case, $mathbb{R}^n$, with $n$ the size of $Q$). For more details, see this question, where you'll also find a counterexample in the infinite dimensional case.
$endgroup$
As pwerth noted, in the product $Q^top Q$, the $(i,j)$-entry is simply the inner product of the $i$-th column of $Q$ with the $j$-th column. It is worth noting however that this implies that $QQ^top$ is also the identity. This is because when a square matrix has a left-inverse, this left-inverse is immediately a right-inverse also.
The reason why this is interesting is because this makes a big use of the finite-dimensionality of the vector space we work over (in this case, $mathbb{R}^n$, with $n$ the size of $Q$). For more details, see this question, where you'll also find a counterexample in the infinite dimensional case.
answered Dec 21 '18 at 17:27
SvanNSvanN
2,0661422
2,0661422
add a comment |
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.
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%2f3048523%2fwhy-does-an-orthogonal-matrix-have-the-property-qt-q-q-qt-i%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
3
$begingroup$
If you write out matrix multiplication, it turns out that you’re computing a bunch of dot products of the columns of $Q$.
$endgroup$
– Michael Burr
Dec 21 '18 at 14:07
$begingroup$
See math.stackexchange.com/questions/2028990/…
$endgroup$
– Widawensen
Dec 21 '18 at 14:46