Induction proof verification?
$begingroup$
Using induction, I have to prove that $n^2+n$ is divisible by 2.
Here's how I did it, and I wanted to know if this is considered valid. I started with $(k+1)^2+(k+1)$, and after simplifying and factoring, I got $(k+2)(k+1)$. From this, can't I just say that if $k$ is odd, then the term $(k+1)$ becomes an even number, and when an even number is multiplied by an odd number, you get an even number which is always divisible by $2$. Then, the same logic can be applied for when $k$ is even and added to the term $(k+2)$? $Q.E.D$...?
proof-verification induction
$endgroup$
add a comment |
$begingroup$
Using induction, I have to prove that $n^2+n$ is divisible by 2.
Here's how I did it, and I wanted to know if this is considered valid. I started with $(k+1)^2+(k+1)$, and after simplifying and factoring, I got $(k+2)(k+1)$. From this, can't I just say that if $k$ is odd, then the term $(k+1)$ becomes an even number, and when an even number is multiplied by an odd number, you get an even number which is always divisible by $2$. Then, the same logic can be applied for when $k$ is even and added to the term $(k+2)$? $Q.E.D$...?
proof-verification induction
$endgroup$
add a comment |
$begingroup$
Using induction, I have to prove that $n^2+n$ is divisible by 2.
Here's how I did it, and I wanted to know if this is considered valid. I started with $(k+1)^2+(k+1)$, and after simplifying and factoring, I got $(k+2)(k+1)$. From this, can't I just say that if $k$ is odd, then the term $(k+1)$ becomes an even number, and when an even number is multiplied by an odd number, you get an even number which is always divisible by $2$. Then, the same logic can be applied for when $k$ is even and added to the term $(k+2)$? $Q.E.D$...?
proof-verification induction
$endgroup$
Using induction, I have to prove that $n^2+n$ is divisible by 2.
Here's how I did it, and I wanted to know if this is considered valid. I started with $(k+1)^2+(k+1)$, and after simplifying and factoring, I got $(k+2)(k+1)$. From this, can't I just say that if $k$ is odd, then the term $(k+1)$ becomes an even number, and when an even number is multiplied by an odd number, you get an even number which is always divisible by $2$. Then, the same logic can be applied for when $k$ is even and added to the term $(k+2)$? $Q.E.D$...?
proof-verification induction
proof-verification induction
asked Dec 10 '18 at 1:38
Jon dueJon due
858
858
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
$begingroup$
There are many ways to prove this statement, but you are instructed to do so by induction. This means you must use the inductive hypothesis, i.e. will require you "capturing" something of the form $k^2+k$.
In this case:
$$(k+1)^2+(k+1) = (k^2+k)+2(k+1)$$
$endgroup$
2
$begingroup$
+1 I wish teachers would require induction only where it's the method of choice ...
$endgroup$
– Ethan Bolker
Dec 10 '18 at 1:47
add a comment |
$begingroup$
Base Case is trivial.
We assume true for $n=k$, that is: $k^2+k=2m, min Bbb Z$
Then show for $n=k+1$:
$$(k+1)^2+k+1=k^2+2k+1+k+1=k^2+3k+2$$
$$=(k^2+k)+2k+2=2m+2k+2=2(m+k+1)$$
$endgroup$
add a comment |
$begingroup$
$begin{align}{bf Hint} f(k) &= (k+1),k\
Rightarrow f(k+1) &= (k+1)(k+2)
end{align}$
$,Rightarrow f(k)$ & $f(k+1)$ have equal parity since $,k,$ & $,k+2,$ do. $ $
Therefore $,f(k),$ even $,Rightarrow, f(k+1),$ even
$endgroup$
$begingroup$
Notice no computation is needed this way (except adding 1).
$endgroup$
– Bill Dubuque
Dec 10 '18 at 1:59
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%2f3033302%2finduction-proof-verification%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
$begingroup$
There are many ways to prove this statement, but you are instructed to do so by induction. This means you must use the inductive hypothesis, i.e. will require you "capturing" something of the form $k^2+k$.
In this case:
$$(k+1)^2+(k+1) = (k^2+k)+2(k+1)$$
$endgroup$
2
$begingroup$
+1 I wish teachers would require induction only where it's the method of choice ...
$endgroup$
– Ethan Bolker
Dec 10 '18 at 1:47
add a comment |
$begingroup$
There are many ways to prove this statement, but you are instructed to do so by induction. This means you must use the inductive hypothesis, i.e. will require you "capturing" something of the form $k^2+k$.
In this case:
$$(k+1)^2+(k+1) = (k^2+k)+2(k+1)$$
$endgroup$
2
$begingroup$
+1 I wish teachers would require induction only where it's the method of choice ...
$endgroup$
– Ethan Bolker
Dec 10 '18 at 1:47
add a comment |
$begingroup$
There are many ways to prove this statement, but you are instructed to do so by induction. This means you must use the inductive hypothesis, i.e. will require you "capturing" something of the form $k^2+k$.
In this case:
$$(k+1)^2+(k+1) = (k^2+k)+2(k+1)$$
$endgroup$
There are many ways to prove this statement, but you are instructed to do so by induction. This means you must use the inductive hypothesis, i.e. will require you "capturing" something of the form $k^2+k$.
In this case:
$$(k+1)^2+(k+1) = (k^2+k)+2(k+1)$$
answered Dec 10 '18 at 1:42
David PetersonDavid Peterson
8,87621935
8,87621935
2
$begingroup$
+1 I wish teachers would require induction only where it's the method of choice ...
$endgroup$
– Ethan Bolker
Dec 10 '18 at 1:47
add a comment |
2
$begingroup$
+1 I wish teachers would require induction only where it's the method of choice ...
$endgroup$
– Ethan Bolker
Dec 10 '18 at 1:47
2
2
$begingroup$
+1 I wish teachers would require induction only where it's the method of choice ...
$endgroup$
– Ethan Bolker
Dec 10 '18 at 1:47
$begingroup$
+1 I wish teachers would require induction only where it's the method of choice ...
$endgroup$
– Ethan Bolker
Dec 10 '18 at 1:47
add a comment |
$begingroup$
Base Case is trivial.
We assume true for $n=k$, that is: $k^2+k=2m, min Bbb Z$
Then show for $n=k+1$:
$$(k+1)^2+k+1=k^2+2k+1+k+1=k^2+3k+2$$
$$=(k^2+k)+2k+2=2m+2k+2=2(m+k+1)$$
$endgroup$
add a comment |
$begingroup$
Base Case is trivial.
We assume true for $n=k$, that is: $k^2+k=2m, min Bbb Z$
Then show for $n=k+1$:
$$(k+1)^2+k+1=k^2+2k+1+k+1=k^2+3k+2$$
$$=(k^2+k)+2k+2=2m+2k+2=2(m+k+1)$$
$endgroup$
add a comment |
$begingroup$
Base Case is trivial.
We assume true for $n=k$, that is: $k^2+k=2m, min Bbb Z$
Then show for $n=k+1$:
$$(k+1)^2+k+1=k^2+2k+1+k+1=k^2+3k+2$$
$$=(k^2+k)+2k+2=2m+2k+2=2(m+k+1)$$
$endgroup$
Base Case is trivial.
We assume true for $n=k$, that is: $k^2+k=2m, min Bbb Z$
Then show for $n=k+1$:
$$(k+1)^2+k+1=k^2+2k+1+k+1=k^2+3k+2$$
$$=(k^2+k)+2k+2=2m+2k+2=2(m+k+1)$$
answered Dec 10 '18 at 1:45
Rhys HughesRhys Hughes
6,7271530
6,7271530
add a comment |
add a comment |
$begingroup$
$begin{align}{bf Hint} f(k) &= (k+1),k\
Rightarrow f(k+1) &= (k+1)(k+2)
end{align}$
$,Rightarrow f(k)$ & $f(k+1)$ have equal parity since $,k,$ & $,k+2,$ do. $ $
Therefore $,f(k),$ even $,Rightarrow, f(k+1),$ even
$endgroup$
$begingroup$
Notice no computation is needed this way (except adding 1).
$endgroup$
– Bill Dubuque
Dec 10 '18 at 1:59
add a comment |
$begingroup$
$begin{align}{bf Hint} f(k) &= (k+1),k\
Rightarrow f(k+1) &= (k+1)(k+2)
end{align}$
$,Rightarrow f(k)$ & $f(k+1)$ have equal parity since $,k,$ & $,k+2,$ do. $ $
Therefore $,f(k),$ even $,Rightarrow, f(k+1),$ even
$endgroup$
$begingroup$
Notice no computation is needed this way (except adding 1).
$endgroup$
– Bill Dubuque
Dec 10 '18 at 1:59
add a comment |
$begingroup$
$begin{align}{bf Hint} f(k) &= (k+1),k\
Rightarrow f(k+1) &= (k+1)(k+2)
end{align}$
$,Rightarrow f(k)$ & $f(k+1)$ have equal parity since $,k,$ & $,k+2,$ do. $ $
Therefore $,f(k),$ even $,Rightarrow, f(k+1),$ even
$endgroup$
$begin{align}{bf Hint} f(k) &= (k+1),k\
Rightarrow f(k+1) &= (k+1)(k+2)
end{align}$
$,Rightarrow f(k)$ & $f(k+1)$ have equal parity since $,k,$ & $,k+2,$ do. $ $
Therefore $,f(k),$ even $,Rightarrow, f(k+1),$ even
answered Dec 10 '18 at 1:57
Bill DubuqueBill Dubuque
210k29192645
210k29192645
$begingroup$
Notice no computation is needed this way (except adding 1).
$endgroup$
– Bill Dubuque
Dec 10 '18 at 1:59
add a comment |
$begingroup$
Notice no computation is needed this way (except adding 1).
$endgroup$
– Bill Dubuque
Dec 10 '18 at 1:59
$begingroup$
Notice no computation is needed this way (except adding 1).
$endgroup$
– Bill Dubuque
Dec 10 '18 at 1:59
$begingroup$
Notice no computation is needed this way (except adding 1).
$endgroup$
– Bill Dubuque
Dec 10 '18 at 1:59
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%2f3033302%2finduction-proof-verification%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