Don't Understand Double Summation with Gauss's formula
So as we know, if we have a summation from $1$ to $n$, the simple formula is
$$sum_{i=1}^n i=frac{n(n+1)}2.$$
But if we have two summations, one from $i=1$ to $n$ and another one $j>i$ to $n$, the formula we get is
$$sum_{i=1}^nsum_{j>i}^nj=frac{n(n-1)}2.$$
I'm not understanding this, how does it go from $n+1$ to $n-1$, especially since it's a double summation?
summation
add a comment |
So as we know, if we have a summation from $1$ to $n$, the simple formula is
$$sum_{i=1}^n i=frac{n(n+1)}2.$$
But if we have two summations, one from $i=1$ to $n$ and another one $j>i$ to $n$, the formula we get is
$$sum_{i=1}^nsum_{j>i}^nj=frac{n(n-1)}2.$$
I'm not understanding this, how does it go from $n+1$ to $n-1$, especially since it's a double summation?
summation
I have edited your question. You can re-edit it if my edits are not correct.
– Tianlalu
Nov 19 '18 at 3:11
add a comment |
So as we know, if we have a summation from $1$ to $n$, the simple formula is
$$sum_{i=1}^n i=frac{n(n+1)}2.$$
But if we have two summations, one from $i=1$ to $n$ and another one $j>i$ to $n$, the formula we get is
$$sum_{i=1}^nsum_{j>i}^nj=frac{n(n-1)}2.$$
I'm not understanding this, how does it go from $n+1$ to $n-1$, especially since it's a double summation?
summation
So as we know, if we have a summation from $1$ to $n$, the simple formula is
$$sum_{i=1}^n i=frac{n(n+1)}2.$$
But if we have two summations, one from $i=1$ to $n$ and another one $j>i$ to $n$, the formula we get is
$$sum_{i=1}^nsum_{j>i}^nj=frac{n(n-1)}2.$$
I'm not understanding this, how does it go from $n+1$ to $n-1$, especially since it's a double summation?
summation
summation
edited Nov 19 '18 at 3:10
Tianlalu
3,09621038
3,09621038
asked Nov 19 '18 at 3:05
reVolutionary
82
82
I have edited your question. You can re-edit it if my edits are not correct.
– Tianlalu
Nov 19 '18 at 3:11
add a comment |
I have edited your question. You can re-edit it if my edits are not correct.
– Tianlalu
Nov 19 '18 at 3:11
I have edited your question. You can re-edit it if my edits are not correct.
– Tianlalu
Nov 19 '18 at 3:11
I have edited your question. You can re-edit it if my edits are not correct.
– Tianlalu
Nov 19 '18 at 3:11
add a comment |
1 Answer
1
active
oldest
votes
I think you might be confusing two different things.
Fact 1: Define $S_n := sum_{k=1}^n k$. Then $S_n = n(n+1)/2$ for every nonnegative integer $n$.
(You can see this by induction. Certainly the formula is correct for $n = 0$. With $S_{n-1} = (n-1)n/2$, we have $S_{n} = n + S_{n-1} = (n+1)n/2$, as required.)
Then there is the following fact
Fact 2: Define $T_n = sum_{1 leq i < j leq n} 1$. Then $T_n = n(n-1)/2$.
This is just the number of tuples $(k, l)$ with $1 leq k leq n$ and $1 leq l leq n$ there are with $k < l$. That's just $binom{n}{2}$, or if you like it's also $(n^2 - n)/2 = n(n-1)/2$.
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%2f3004466%2fdont-understand-double-summation-with-gausss-formula%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think you might be confusing two different things.
Fact 1: Define $S_n := sum_{k=1}^n k$. Then $S_n = n(n+1)/2$ for every nonnegative integer $n$.
(You can see this by induction. Certainly the formula is correct for $n = 0$. With $S_{n-1} = (n-1)n/2$, we have $S_{n} = n + S_{n-1} = (n+1)n/2$, as required.)
Then there is the following fact
Fact 2: Define $T_n = sum_{1 leq i < j leq n} 1$. Then $T_n = n(n-1)/2$.
This is just the number of tuples $(k, l)$ with $1 leq k leq n$ and $1 leq l leq n$ there are with $k < l$. That's just $binom{n}{2}$, or if you like it's also $(n^2 - n)/2 = n(n-1)/2$.
add a comment |
I think you might be confusing two different things.
Fact 1: Define $S_n := sum_{k=1}^n k$. Then $S_n = n(n+1)/2$ for every nonnegative integer $n$.
(You can see this by induction. Certainly the formula is correct for $n = 0$. With $S_{n-1} = (n-1)n/2$, we have $S_{n} = n + S_{n-1} = (n+1)n/2$, as required.)
Then there is the following fact
Fact 2: Define $T_n = sum_{1 leq i < j leq n} 1$. Then $T_n = n(n-1)/2$.
This is just the number of tuples $(k, l)$ with $1 leq k leq n$ and $1 leq l leq n$ there are with $k < l$. That's just $binom{n}{2}$, or if you like it's also $(n^2 - n)/2 = n(n-1)/2$.
add a comment |
I think you might be confusing two different things.
Fact 1: Define $S_n := sum_{k=1}^n k$. Then $S_n = n(n+1)/2$ for every nonnegative integer $n$.
(You can see this by induction. Certainly the formula is correct for $n = 0$. With $S_{n-1} = (n-1)n/2$, we have $S_{n} = n + S_{n-1} = (n+1)n/2$, as required.)
Then there is the following fact
Fact 2: Define $T_n = sum_{1 leq i < j leq n} 1$. Then $T_n = n(n-1)/2$.
This is just the number of tuples $(k, l)$ with $1 leq k leq n$ and $1 leq l leq n$ there are with $k < l$. That's just $binom{n}{2}$, or if you like it's also $(n^2 - n)/2 = n(n-1)/2$.
I think you might be confusing two different things.
Fact 1: Define $S_n := sum_{k=1}^n k$. Then $S_n = n(n+1)/2$ for every nonnegative integer $n$.
(You can see this by induction. Certainly the formula is correct for $n = 0$. With $S_{n-1} = (n-1)n/2$, we have $S_{n} = n + S_{n-1} = (n+1)n/2$, as required.)
Then there is the following fact
Fact 2: Define $T_n = sum_{1 leq i < j leq n} 1$. Then $T_n = n(n-1)/2$.
This is just the number of tuples $(k, l)$ with $1 leq k leq n$ and $1 leq l leq n$ there are with $k < l$. That's just $binom{n}{2}$, or if you like it's also $(n^2 - n)/2 = n(n-1)/2$.
answered Nov 19 '18 at 3:18
Drew Brady
649315
649315
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.
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%2f3004466%2fdont-understand-double-summation-with-gausss-formula%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
I have edited your question. You can re-edit it if my edits are not correct.
– Tianlalu
Nov 19 '18 at 3:11