Prove $sum_{i=1}^n a_i$ = $sum_{i=2}^{n+1} a_{i-1}$
Given $sum_{i=1}^n a_i$ = $sum_{i=2}^{n+1} a_{i-1}$
How would you show this true for all n ∈ N and $a_1, a_2, . . . , a_n$ ∈ R?
I know it is obviously true because i would just use a substitution like i=j-1 then summing j-1 from 2 to n+1 gives the same result but not really sure how to show this. It seems like an induction problem to me but im not sure, how is this done? Thanks
summation
add a comment |
Given $sum_{i=1}^n a_i$ = $sum_{i=2}^{n+1} a_{i-1}$
How would you show this true for all n ∈ N and $a_1, a_2, . . . , a_n$ ∈ R?
I know it is obviously true because i would just use a substitution like i=j-1 then summing j-1 from 2 to n+1 gives the same result but not really sure how to show this. It seems like an induction problem to me but im not sure, how is this done? Thanks
summation
1
The substitution works.
– xbh
Dec 3 '18 at 9:09
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Dec 3 '18 at 9:09
add a comment |
Given $sum_{i=1}^n a_i$ = $sum_{i=2}^{n+1} a_{i-1}$
How would you show this true for all n ∈ N and $a_1, a_2, . . . , a_n$ ∈ R?
I know it is obviously true because i would just use a substitution like i=j-1 then summing j-1 from 2 to n+1 gives the same result but not really sure how to show this. It seems like an induction problem to me but im not sure, how is this done? Thanks
summation
Given $sum_{i=1}^n a_i$ = $sum_{i=2}^{n+1} a_{i-1}$
How would you show this true for all n ∈ N and $a_1, a_2, . . . , a_n$ ∈ R?
I know it is obviously true because i would just use a substitution like i=j-1 then summing j-1 from 2 to n+1 gives the same result but not really sure how to show this. It seems like an induction problem to me but im not sure, how is this done? Thanks
summation
summation
edited Dec 3 '18 at 9:10
Arjang
5,56862363
5,56862363
asked Dec 3 '18 at 9:02
Harry
253
253
1
The substitution works.
– xbh
Dec 3 '18 at 9:09
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Dec 3 '18 at 9:09
add a comment |
1
The substitution works.
– xbh
Dec 3 '18 at 9:09
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Dec 3 '18 at 9:09
1
1
The substitution works.
– xbh
Dec 3 '18 at 9:09
The substitution works.
– xbh
Dec 3 '18 at 9:09
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Dec 3 '18 at 9:09
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Dec 3 '18 at 9:09
add a comment |
2 Answers
2
active
oldest
votes
Yes, you can prove the claim by induction. For that, you must first analyse what the claim even is. In your case, you only have one variable, $n$ ($i$ is bound inside the sum), so clearly, induction will run on $n$, and the claim $P(n)$ will be
$$sum_{i=1}^n a_i = sum_{i=2}^{n+1} a_{i-1}$$
Also, for this proof, you will need to remember the definition of what $$sum_{i=1}^n a_i$$ is. Remember that this expression is defined recursively, i.e.
- $sum_{i=1}^1 a_i = a_1$
- $sum_{i=1}^n a_i = sum_{i=1}^{n-1} a_i + a_n$
The induction has two parts.
Part 1:
You need to prove $P(1)$. This part should be really easy. All you have to do is correctly write out what $P(1)$ means, and use the definitions of sums. In particular, you will use property 1 from above in this step.
Part 2:
Here, you assume that $P(n)$ is true, and you prove the statement $P(n+1)$. Again, correctly writing out $P(n)$ and $P(n+1)$ will get you 99% of the way there. In particular, in this step, property 2 from above will be useful.
add a comment |
Prove that
$F(n):= sum_{i=1}^{n}a_i-sum_{i=2}^{n+1}a_{i-1}= 0$ , for $n in mathbb{Z^+}$ by induction.
1) $n=1$√.
2) Hypothesis $F(n)=0$.
3) Step for $n+1$.
$F(n+1)=$
$sum_{i=1}^{n+1}a_i - sum_{i=2}^{n+2}a_{i-1}=$
$sum_{i=1}^{n}a_i +a_{n+1}$
$- sum_{i=2}^{n+1}a_{i-1}- a_{n+1}=$
$F(n)+(a_{n+1}-a_{n+1})=0$,
since $F(n)=0$ by hypothesis, and the second summand is zero.
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%2f3023810%2fprove-sum-i-1n-a-i-sum-i-2n1-a-i-1%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
Yes, you can prove the claim by induction. For that, you must first analyse what the claim even is. In your case, you only have one variable, $n$ ($i$ is bound inside the sum), so clearly, induction will run on $n$, and the claim $P(n)$ will be
$$sum_{i=1}^n a_i = sum_{i=2}^{n+1} a_{i-1}$$
Also, for this proof, you will need to remember the definition of what $$sum_{i=1}^n a_i$$ is. Remember that this expression is defined recursively, i.e.
- $sum_{i=1}^1 a_i = a_1$
- $sum_{i=1}^n a_i = sum_{i=1}^{n-1} a_i + a_n$
The induction has two parts.
Part 1:
You need to prove $P(1)$. This part should be really easy. All you have to do is correctly write out what $P(1)$ means, and use the definitions of sums. In particular, you will use property 1 from above in this step.
Part 2:
Here, you assume that $P(n)$ is true, and you prove the statement $P(n+1)$. Again, correctly writing out $P(n)$ and $P(n+1)$ will get you 99% of the way there. In particular, in this step, property 2 from above will be useful.
add a comment |
Yes, you can prove the claim by induction. For that, you must first analyse what the claim even is. In your case, you only have one variable, $n$ ($i$ is bound inside the sum), so clearly, induction will run on $n$, and the claim $P(n)$ will be
$$sum_{i=1}^n a_i = sum_{i=2}^{n+1} a_{i-1}$$
Also, for this proof, you will need to remember the definition of what $$sum_{i=1}^n a_i$$ is. Remember that this expression is defined recursively, i.e.
- $sum_{i=1}^1 a_i = a_1$
- $sum_{i=1}^n a_i = sum_{i=1}^{n-1} a_i + a_n$
The induction has two parts.
Part 1:
You need to prove $P(1)$. This part should be really easy. All you have to do is correctly write out what $P(1)$ means, and use the definitions of sums. In particular, you will use property 1 from above in this step.
Part 2:
Here, you assume that $P(n)$ is true, and you prove the statement $P(n+1)$. Again, correctly writing out $P(n)$ and $P(n+1)$ will get you 99% of the way there. In particular, in this step, property 2 from above will be useful.
add a comment |
Yes, you can prove the claim by induction. For that, you must first analyse what the claim even is. In your case, you only have one variable, $n$ ($i$ is bound inside the sum), so clearly, induction will run on $n$, and the claim $P(n)$ will be
$$sum_{i=1}^n a_i = sum_{i=2}^{n+1} a_{i-1}$$
Also, for this proof, you will need to remember the definition of what $$sum_{i=1}^n a_i$$ is. Remember that this expression is defined recursively, i.e.
- $sum_{i=1}^1 a_i = a_1$
- $sum_{i=1}^n a_i = sum_{i=1}^{n-1} a_i + a_n$
The induction has two parts.
Part 1:
You need to prove $P(1)$. This part should be really easy. All you have to do is correctly write out what $P(1)$ means, and use the definitions of sums. In particular, you will use property 1 from above in this step.
Part 2:
Here, you assume that $P(n)$ is true, and you prove the statement $P(n+1)$. Again, correctly writing out $P(n)$ and $P(n+1)$ will get you 99% of the way there. In particular, in this step, property 2 from above will be useful.
Yes, you can prove the claim by induction. For that, you must first analyse what the claim even is. In your case, you only have one variable, $n$ ($i$ is bound inside the sum), so clearly, induction will run on $n$, and the claim $P(n)$ will be
$$sum_{i=1}^n a_i = sum_{i=2}^{n+1} a_{i-1}$$
Also, for this proof, you will need to remember the definition of what $$sum_{i=1}^n a_i$$ is. Remember that this expression is defined recursively, i.e.
- $sum_{i=1}^1 a_i = a_1$
- $sum_{i=1}^n a_i = sum_{i=1}^{n-1} a_i + a_n$
The induction has two parts.
Part 1:
You need to prove $P(1)$. This part should be really easy. All you have to do is correctly write out what $P(1)$ means, and use the definitions of sums. In particular, you will use property 1 from above in this step.
Part 2:
Here, you assume that $P(n)$ is true, and you prove the statement $P(n+1)$. Again, correctly writing out $P(n)$ and $P(n+1)$ will get you 99% of the way there. In particular, in this step, property 2 from above will be useful.
answered Dec 3 '18 at 9:11
5xum
89.6k393161
89.6k393161
add a comment |
add a comment |
Prove that
$F(n):= sum_{i=1}^{n}a_i-sum_{i=2}^{n+1}a_{i-1}= 0$ , for $n in mathbb{Z^+}$ by induction.
1) $n=1$√.
2) Hypothesis $F(n)=0$.
3) Step for $n+1$.
$F(n+1)=$
$sum_{i=1}^{n+1}a_i - sum_{i=2}^{n+2}a_{i-1}=$
$sum_{i=1}^{n}a_i +a_{n+1}$
$- sum_{i=2}^{n+1}a_{i-1}- a_{n+1}=$
$F(n)+(a_{n+1}-a_{n+1})=0$,
since $F(n)=0$ by hypothesis, and the second summand is zero.
add a comment |
Prove that
$F(n):= sum_{i=1}^{n}a_i-sum_{i=2}^{n+1}a_{i-1}= 0$ , for $n in mathbb{Z^+}$ by induction.
1) $n=1$√.
2) Hypothesis $F(n)=0$.
3) Step for $n+1$.
$F(n+1)=$
$sum_{i=1}^{n+1}a_i - sum_{i=2}^{n+2}a_{i-1}=$
$sum_{i=1}^{n}a_i +a_{n+1}$
$- sum_{i=2}^{n+1}a_{i-1}- a_{n+1}=$
$F(n)+(a_{n+1}-a_{n+1})=0$,
since $F(n)=0$ by hypothesis, and the second summand is zero.
add a comment |
Prove that
$F(n):= sum_{i=1}^{n}a_i-sum_{i=2}^{n+1}a_{i-1}= 0$ , for $n in mathbb{Z^+}$ by induction.
1) $n=1$√.
2) Hypothesis $F(n)=0$.
3) Step for $n+1$.
$F(n+1)=$
$sum_{i=1}^{n+1}a_i - sum_{i=2}^{n+2}a_{i-1}=$
$sum_{i=1}^{n}a_i +a_{n+1}$
$- sum_{i=2}^{n+1}a_{i-1}- a_{n+1}=$
$F(n)+(a_{n+1}-a_{n+1})=0$,
since $F(n)=0$ by hypothesis, and the second summand is zero.
Prove that
$F(n):= sum_{i=1}^{n}a_i-sum_{i=2}^{n+1}a_{i-1}= 0$ , for $n in mathbb{Z^+}$ by induction.
1) $n=1$√.
2) Hypothesis $F(n)=0$.
3) Step for $n+1$.
$F(n+1)=$
$sum_{i=1}^{n+1}a_i - sum_{i=2}^{n+2}a_{i-1}=$
$sum_{i=1}^{n}a_i +a_{n+1}$
$- sum_{i=2}^{n+1}a_{i-1}- a_{n+1}=$
$F(n)+(a_{n+1}-a_{n+1})=0$,
since $F(n)=0$ by hypothesis, and the second summand is zero.
answered Dec 3 '18 at 9:44
Peter Szilas
10.7k2720
10.7k2720
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%2f3023810%2fprove-sum-i-1n-a-i-sum-i-2n1-a-i-1%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
1
The substitution works.
– xbh
Dec 3 '18 at 9:09
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Dec 3 '18 at 9:09