shifting indices of summation
how come you can rewrite $$sumlimits_{j=i}^{n} j = sumlimits_{j=0}^{n-i} (i+j) = sumlimits_{j=0}^{n-i} i + sumlimits_{j=0}^{n-i} j$$ I don't understand how the indices were shifted and why you're able to do this. Is there a formula? How do you reason about the newly written summation here?
sequences-and-series summation
add a comment |
how come you can rewrite $$sumlimits_{j=i}^{n} j = sumlimits_{j=0}^{n-i} (i+j) = sumlimits_{j=0}^{n-i} i + sumlimits_{j=0}^{n-i} j$$ I don't understand how the indices were shifted and why you're able to do this. Is there a formula? How do you reason about the newly written summation here?
sequences-and-series summation
add a comment |
how come you can rewrite $$sumlimits_{j=i}^{n} j = sumlimits_{j=0}^{n-i} (i+j) = sumlimits_{j=0}^{n-i} i + sumlimits_{j=0}^{n-i} j$$ I don't understand how the indices were shifted and why you're able to do this. Is there a formula? How do you reason about the newly written summation here?
sequences-and-series summation
how come you can rewrite $$sumlimits_{j=i}^{n} j = sumlimits_{j=0}^{n-i} (i+j) = sumlimits_{j=0}^{n-i} i + sumlimits_{j=0}^{n-i} j$$ I don't understand how the indices were shifted and why you're able to do this. Is there a formula? How do you reason about the newly written summation here?
sequences-and-series summation
sequences-and-series summation
asked Dec 6 at 17:02
randomvalue
164
164
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Let $k=j-i$. When $j=i,k=0$ and when $j=n,k=n-i$. So we can write $$sumlimits_{j=i}^{n} j =sumlimits_{k=0}^{n-i} i+k $$.
Since the summation is independent of change of variable, we can replace the dummy variable $k$ by $j$ itself. Last equation follows from the distributive rule of summation.
add a comment |
Just write out what the summations mean.
$$sumlimits_{j=i}^{n} j = i+(i+1)+(i+2)+…+(i+n)$$
$$sumlimits_{j=0}^{n-i} (i+j) = (i+0)+(i+1)+(i+2)+…+(i+n)$$
$$ = i+(i+1)+(i+2)+…+(i+n)$$
If you think about it for a second, it all becomes clear. Usually, writing examples and noticing a pattern is a good way to go. (This isn’t anything “formal” but it often helps you to get the basic idea.) For example, take the following sum:
$$sum_limits{j = 5}^{12} j = 5+6+7+8+9+10+11$$
Imagine you wanted to rewrite the sum by shifting the starting point to, say, $3$.
$$3+4+5+6+7+8+9$$
But all the numbers are shifted down by $2$, so you have to write
$$(3+2)+(4+2)+(5+2)+(6+2)+(7+2)+(8+2)+(9+2)$$
$$= sumlimits_{j = 3}^{9} j+2$$
You can rewrite the summation in yet another way:
$$ = underbrace{3+4+5+6+7+8+9}_{j = 3 text{ to } j = 9}+underbrace{2+2+2+2+2+2+2}_{{j = 3 text{ to } j = 9}} = sumlimits_{j = 3}^{9} j+sumlimits_{j = 3}^{9} 2$$
which is exactly what the summation means.
$$sumlimits_{j=i}^{n} j = sumlimits_{j=i-m}^{n-m} (m+j) = sumlimits_{j=i-m}^{n-m} m + sumlimits_{j=i-m}^{n-m} j$$
For shifting down to $0$, you can generalize this as
$$sumlimits_{j=i}^{n} j = sumlimits_{j=0}^{n-i} (i+j) = sumlimits_{j=0}^{n-i} i + sumlimits_{j=0}^{n-i} j$$
add a comment |
$$n = n + 0 = n + (i-i) = i + (n-i), text{so}$$
$$ sum_{j=i}^n j = i + (i+1) + ldots + n = (i+0) + (i+1) + ldots + (i + (n - i)) = sum_{j=0}^{n-i} (i+j) $$.
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%2f3028766%2fshifting-indices-of-summation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Let $k=j-i$. When $j=i,k=0$ and when $j=n,k=n-i$. So we can write $$sumlimits_{j=i}^{n} j =sumlimits_{k=0}^{n-i} i+k $$.
Since the summation is independent of change of variable, we can replace the dummy variable $k$ by $j$ itself. Last equation follows from the distributive rule of summation.
add a comment |
Let $k=j-i$. When $j=i,k=0$ and when $j=n,k=n-i$. So we can write $$sumlimits_{j=i}^{n} j =sumlimits_{k=0}^{n-i} i+k $$.
Since the summation is independent of change of variable, we can replace the dummy variable $k$ by $j$ itself. Last equation follows from the distributive rule of summation.
add a comment |
Let $k=j-i$. When $j=i,k=0$ and when $j=n,k=n-i$. So we can write $$sumlimits_{j=i}^{n} j =sumlimits_{k=0}^{n-i} i+k $$.
Since the summation is independent of change of variable, we can replace the dummy variable $k$ by $j$ itself. Last equation follows from the distributive rule of summation.
Let $k=j-i$. When $j=i,k=0$ and when $j=n,k=n-i$. So we can write $$sumlimits_{j=i}^{n} j =sumlimits_{k=0}^{n-i} i+k $$.
Since the summation is independent of change of variable, we can replace the dummy variable $k$ by $j$ itself. Last equation follows from the distributive rule of summation.
answered Dec 6 at 17:44
Thomas Shelby
1,185116
1,185116
add a comment |
add a comment |
Just write out what the summations mean.
$$sumlimits_{j=i}^{n} j = i+(i+1)+(i+2)+…+(i+n)$$
$$sumlimits_{j=0}^{n-i} (i+j) = (i+0)+(i+1)+(i+2)+…+(i+n)$$
$$ = i+(i+1)+(i+2)+…+(i+n)$$
If you think about it for a second, it all becomes clear. Usually, writing examples and noticing a pattern is a good way to go. (This isn’t anything “formal” but it often helps you to get the basic idea.) For example, take the following sum:
$$sum_limits{j = 5}^{12} j = 5+6+7+8+9+10+11$$
Imagine you wanted to rewrite the sum by shifting the starting point to, say, $3$.
$$3+4+5+6+7+8+9$$
But all the numbers are shifted down by $2$, so you have to write
$$(3+2)+(4+2)+(5+2)+(6+2)+(7+2)+(8+2)+(9+2)$$
$$= sumlimits_{j = 3}^{9} j+2$$
You can rewrite the summation in yet another way:
$$ = underbrace{3+4+5+6+7+8+9}_{j = 3 text{ to } j = 9}+underbrace{2+2+2+2+2+2+2}_{{j = 3 text{ to } j = 9}} = sumlimits_{j = 3}^{9} j+sumlimits_{j = 3}^{9} 2$$
which is exactly what the summation means.
$$sumlimits_{j=i}^{n} j = sumlimits_{j=i-m}^{n-m} (m+j) = sumlimits_{j=i-m}^{n-m} m + sumlimits_{j=i-m}^{n-m} j$$
For shifting down to $0$, you can generalize this as
$$sumlimits_{j=i}^{n} j = sumlimits_{j=0}^{n-i} (i+j) = sumlimits_{j=0}^{n-i} i + sumlimits_{j=0}^{n-i} j$$
add a comment |
Just write out what the summations mean.
$$sumlimits_{j=i}^{n} j = i+(i+1)+(i+2)+…+(i+n)$$
$$sumlimits_{j=0}^{n-i} (i+j) = (i+0)+(i+1)+(i+2)+…+(i+n)$$
$$ = i+(i+1)+(i+2)+…+(i+n)$$
If you think about it for a second, it all becomes clear. Usually, writing examples and noticing a pattern is a good way to go. (This isn’t anything “formal” but it often helps you to get the basic idea.) For example, take the following sum:
$$sum_limits{j = 5}^{12} j = 5+6+7+8+9+10+11$$
Imagine you wanted to rewrite the sum by shifting the starting point to, say, $3$.
$$3+4+5+6+7+8+9$$
But all the numbers are shifted down by $2$, so you have to write
$$(3+2)+(4+2)+(5+2)+(6+2)+(7+2)+(8+2)+(9+2)$$
$$= sumlimits_{j = 3}^{9} j+2$$
You can rewrite the summation in yet another way:
$$ = underbrace{3+4+5+6+7+8+9}_{j = 3 text{ to } j = 9}+underbrace{2+2+2+2+2+2+2}_{{j = 3 text{ to } j = 9}} = sumlimits_{j = 3}^{9} j+sumlimits_{j = 3}^{9} 2$$
which is exactly what the summation means.
$$sumlimits_{j=i}^{n} j = sumlimits_{j=i-m}^{n-m} (m+j) = sumlimits_{j=i-m}^{n-m} m + sumlimits_{j=i-m}^{n-m} j$$
For shifting down to $0$, you can generalize this as
$$sumlimits_{j=i}^{n} j = sumlimits_{j=0}^{n-i} (i+j) = sumlimits_{j=0}^{n-i} i + sumlimits_{j=0}^{n-i} j$$
add a comment |
Just write out what the summations mean.
$$sumlimits_{j=i}^{n} j = i+(i+1)+(i+2)+…+(i+n)$$
$$sumlimits_{j=0}^{n-i} (i+j) = (i+0)+(i+1)+(i+2)+…+(i+n)$$
$$ = i+(i+1)+(i+2)+…+(i+n)$$
If you think about it for a second, it all becomes clear. Usually, writing examples and noticing a pattern is a good way to go. (This isn’t anything “formal” but it often helps you to get the basic idea.) For example, take the following sum:
$$sum_limits{j = 5}^{12} j = 5+6+7+8+9+10+11$$
Imagine you wanted to rewrite the sum by shifting the starting point to, say, $3$.
$$3+4+5+6+7+8+9$$
But all the numbers are shifted down by $2$, so you have to write
$$(3+2)+(4+2)+(5+2)+(6+2)+(7+2)+(8+2)+(9+2)$$
$$= sumlimits_{j = 3}^{9} j+2$$
You can rewrite the summation in yet another way:
$$ = underbrace{3+4+5+6+7+8+9}_{j = 3 text{ to } j = 9}+underbrace{2+2+2+2+2+2+2}_{{j = 3 text{ to } j = 9}} = sumlimits_{j = 3}^{9} j+sumlimits_{j = 3}^{9} 2$$
which is exactly what the summation means.
$$sumlimits_{j=i}^{n} j = sumlimits_{j=i-m}^{n-m} (m+j) = sumlimits_{j=i-m}^{n-m} m + sumlimits_{j=i-m}^{n-m} j$$
For shifting down to $0$, you can generalize this as
$$sumlimits_{j=i}^{n} j = sumlimits_{j=0}^{n-i} (i+j) = sumlimits_{j=0}^{n-i} i + sumlimits_{j=0}^{n-i} j$$
Just write out what the summations mean.
$$sumlimits_{j=i}^{n} j = i+(i+1)+(i+2)+…+(i+n)$$
$$sumlimits_{j=0}^{n-i} (i+j) = (i+0)+(i+1)+(i+2)+…+(i+n)$$
$$ = i+(i+1)+(i+2)+…+(i+n)$$
If you think about it for a second, it all becomes clear. Usually, writing examples and noticing a pattern is a good way to go. (This isn’t anything “formal” but it often helps you to get the basic idea.) For example, take the following sum:
$$sum_limits{j = 5}^{12} j = 5+6+7+8+9+10+11$$
Imagine you wanted to rewrite the sum by shifting the starting point to, say, $3$.
$$3+4+5+6+7+8+9$$
But all the numbers are shifted down by $2$, so you have to write
$$(3+2)+(4+2)+(5+2)+(6+2)+(7+2)+(8+2)+(9+2)$$
$$= sumlimits_{j = 3}^{9} j+2$$
You can rewrite the summation in yet another way:
$$ = underbrace{3+4+5+6+7+8+9}_{j = 3 text{ to } j = 9}+underbrace{2+2+2+2+2+2+2}_{{j = 3 text{ to } j = 9}} = sumlimits_{j = 3}^{9} j+sumlimits_{j = 3}^{9} 2$$
which is exactly what the summation means.
$$sumlimits_{j=i}^{n} j = sumlimits_{j=i-m}^{n-m} (m+j) = sumlimits_{j=i-m}^{n-m} m + sumlimits_{j=i-m}^{n-m} j$$
For shifting down to $0$, you can generalize this as
$$sumlimits_{j=i}^{n} j = sumlimits_{j=0}^{n-i} (i+j) = sumlimits_{j=0}^{n-i} i + sumlimits_{j=0}^{n-i} j$$
edited Dec 6 at 19:27
answered Dec 6 at 17:46
KM101
3,958417
3,958417
add a comment |
add a comment |
$$n = n + 0 = n + (i-i) = i + (n-i), text{so}$$
$$ sum_{j=i}^n j = i + (i+1) + ldots + n = (i+0) + (i+1) + ldots + (i + (n - i)) = sum_{j=0}^{n-i} (i+j) $$.
add a comment |
$$n = n + 0 = n + (i-i) = i + (n-i), text{so}$$
$$ sum_{j=i}^n j = i + (i+1) + ldots + n = (i+0) + (i+1) + ldots + (i + (n - i)) = sum_{j=0}^{n-i} (i+j) $$.
add a comment |
$$n = n + 0 = n + (i-i) = i + (n-i), text{so}$$
$$ sum_{j=i}^n j = i + (i+1) + ldots + n = (i+0) + (i+1) + ldots + (i + (n - i)) = sum_{j=0}^{n-i} (i+j) $$.
$$n = n + 0 = n + (i-i) = i + (n-i), text{so}$$
$$ sum_{j=i}^n j = i + (i+1) + ldots + n = (i+0) + (i+1) + ldots + (i + (n - i)) = sum_{j=0}^{n-i} (i+j) $$.
answered Dec 6 at 17:40
Andrew Whelan
1,358415
1,358415
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%2f3028766%2fshifting-indices-of-summation%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