What is the best way to prove: Prove every x is Q.

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
3
down vote

favorite
1












The example question is "prove that every integer that is divisible by 10 must be an even integer".



However this can be generalized to prove that every x is Q, where is a statement such as "must be an even integer". So what is the best way to approach this proof? Contradiction, contrapositive, direct?



My thinking was:



Question translates to $forall A(10k=Arightarrow A = 2c)$, such that $kinmathbb Z,cinmathbb Z$ (also can someone tell me if this way of translating the question is correct)



From there:



Let B be some number that is divisible by 10. In other words, $B=10K$, where $Kinmathbb Z$



$B = 2(5K)\B=2P$



Therefore, B is even because for some B, divisible by 10, B must be even by the definition of even numbers.



Is this form the best way to prove these types of questions? Does this count as a proof by contradiction?



Edit: Or would a proof by induction work best here? In that case how would this question be proven (I have an idea; just need a confirmation)?







share|cite|improve this question


















  • 1




    What do you mean with "every $x$ is $Q$"? What is $Q$?
    – Cornman
    Aug 24 at 20:51










  • Q is just some statement, for example, "must be an even integer".
    – user2793618
    Aug 24 at 22:42














up vote
3
down vote

favorite
1












The example question is "prove that every integer that is divisible by 10 must be an even integer".



However this can be generalized to prove that every x is Q, where is a statement such as "must be an even integer". So what is the best way to approach this proof? Contradiction, contrapositive, direct?



My thinking was:



Question translates to $forall A(10k=Arightarrow A = 2c)$, such that $kinmathbb Z,cinmathbb Z$ (also can someone tell me if this way of translating the question is correct)



From there:



Let B be some number that is divisible by 10. In other words, $B=10K$, where $Kinmathbb Z$



$B = 2(5K)\B=2P$



Therefore, B is even because for some B, divisible by 10, B must be even by the definition of even numbers.



Is this form the best way to prove these types of questions? Does this count as a proof by contradiction?



Edit: Or would a proof by induction work best here? In that case how would this question be proven (I have an idea; just need a confirmation)?







share|cite|improve this question


















  • 1




    What do you mean with "every $x$ is $Q$"? What is $Q$?
    – Cornman
    Aug 24 at 20:51










  • Q is just some statement, for example, "must be an even integer".
    – user2793618
    Aug 24 at 22:42












up vote
3
down vote

favorite
1









up vote
3
down vote

favorite
1






1





The example question is "prove that every integer that is divisible by 10 must be an even integer".



However this can be generalized to prove that every x is Q, where is a statement such as "must be an even integer". So what is the best way to approach this proof? Contradiction, contrapositive, direct?



My thinking was:



Question translates to $forall A(10k=Arightarrow A = 2c)$, such that $kinmathbb Z,cinmathbb Z$ (also can someone tell me if this way of translating the question is correct)



From there:



Let B be some number that is divisible by 10. In other words, $B=10K$, where $Kinmathbb Z$



$B = 2(5K)\B=2P$



Therefore, B is even because for some B, divisible by 10, B must be even by the definition of even numbers.



Is this form the best way to prove these types of questions? Does this count as a proof by contradiction?



Edit: Or would a proof by induction work best here? In that case how would this question be proven (I have an idea; just need a confirmation)?







share|cite|improve this question














The example question is "prove that every integer that is divisible by 10 must be an even integer".



However this can be generalized to prove that every x is Q, where is a statement such as "must be an even integer". So what is the best way to approach this proof? Contradiction, contrapositive, direct?



My thinking was:



Question translates to $forall A(10k=Arightarrow A = 2c)$, such that $kinmathbb Z,cinmathbb Z$ (also can someone tell me if this way of translating the question is correct)



From there:



Let B be some number that is divisible by 10. In other words, $B=10K$, where $Kinmathbb Z$



$B = 2(5K)\B=2P$



Therefore, B is even because for some B, divisible by 10, B must be even by the definition of even numbers.



Is this form the best way to prove these types of questions? Does this count as a proof by contradiction?



Edit: Or would a proof by induction work best here? In that case how would this question be proven (I have an idea; just need a confirmation)?









share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Aug 24 at 21:02









Cornman

2,70421228




2,70421228










asked Aug 24 at 20:46









user2793618

957




957







  • 1




    What do you mean with "every $x$ is $Q$"? What is $Q$?
    – Cornman
    Aug 24 at 20:51










  • Q is just some statement, for example, "must be an even integer".
    – user2793618
    Aug 24 at 22:42












  • 1




    What do you mean with "every $x$ is $Q$"? What is $Q$?
    – Cornman
    Aug 24 at 20:51










  • Q is just some statement, for example, "must be an even integer".
    – user2793618
    Aug 24 at 22:42







1




1




What do you mean with "every $x$ is $Q$"? What is $Q$?
– Cornman
Aug 24 at 20:51




What do you mean with "every $x$ is $Q$"? What is $Q$?
– Cornman
Aug 24 at 20:51












Q is just some statement, for example, "must be an even integer".
– user2793618
Aug 24 at 22:42




Q is just some statement, for example, "must be an even integer".
– user2793618
Aug 24 at 22:42










2 Answers
2






active

oldest

votes

















up vote
3
down vote



accepted











So what is the best way to approach this proof? Contradiction, contrapositive, direct?




I think there is no "best way" to approach a proof.
But most of the time a direct proof should be tried first, because they are most of the time more clear and have other advantages over a proof by contradiction, for example.



Like that a direct proof can give you an algorithm which you can use or implement.



Your translation of the question seems fine to me.
Your proof also looks good, but it is not a proof by contradiction. That would be a direct proof.



A proof is generaly build like this. You assume, that $A$ holds and then you conclude $B$. $ARightarrow B$.
$A$ is here the statement, that you have an integer $k$, which is divisable by $10$. And you want to conclude $B$, which is that $k$ has to be divisable by $2$.



In a proof by contradiction you assume, that not $B$ holds and conclude that not $A$ holds. $neg BRightarrow neg A$.



It is $ARightarrow Bleftrightarrow neg BRightarrow neg A$.



EDIT: (For the following note the answer of Arsen Berk)



[A proof by induction does not work here.
First of all you are working over the integers, but induction is for statements over the natural numbers.
Also I can not imagine how the inductive step should work out here.
There is no link to this task and induction.]






share|cite|improve this answer


















  • 1




    Induction can work here by redefining the numbers that we are examining. OP defines the number as $B = 10K$ for example, where we can use induction on $K$ from $1$ to $n$ to examine the positive integers. But if we define the number as $B = -10K$, then, again, we can use induction on $K$ to examine the negative numbers. $B = 0$ is the trivial case so, maybe not in one case, but in three cases, we can complete our induction on $mathbbZ$.
    – ArsenBerk
    Aug 24 at 21:04







  • 2




    @ArsenBerk Thanks. Yeah I thought about that and of course it is true, but I think you should definitly not proof this by induction. :) I was about to comment this question under your answer. But what ever works, I guess. One should not go to crazy about induction as a newcomer in math, I think.
    – Cornman
    Aug 24 at 21:09






  • 2




    Yes, you are right about induction's unsuitability for this case. That's why I also said "I don't think an inductive argument is needed for this kind of proof" :) After you mentioned it, I also realized that we would have three cases to consider while doing induction so that is really crazy.
    – ArsenBerk
    Aug 24 at 21:14






  • 1




    @user2793618 You are right. $neg BRightarrowneg A$ would be the structure of a proof by contraposition. A proof by contradiction reads kinda like that. Let $A$ be true. Suppose $B$ is wrong. Then holds $neg B$. Bla bla bla. This would be a contradiction. Therefor the assumtion is wrong. I mixed that up. Thanks for pointing that out.
    – Cornman
    Aug 25 at 2:37






  • 1




    @user2793618 When a statement holds for every natural number, and you want to proof it. You can do this by induction. But it is not necessary and also not all the time possible. Sometimes induction is a good choice, sometimes it is not. Sometimes induction work, or a direct proof. In general it is up to you. I have never heard, that a direct proof requires a free variable. Not an expert on proof-theory.
    – Cornman
    Aug 25 at 2:40

















up vote
3
down vote













I think your proof does not count as proof by contradiction, it is more like direct way of proving it and if you can think the direct way, in my opinion, it is clear enough (but it is a matter of style so I can't say this is the "best" way). Induction would also work here, but in your direct way, the argument is simple and clear enough to be understood so I don't think an inductive argument is needed for this kind of proof.



Since you asked it, proof by contradiction would be as the following:



Suppose, for a contradiction, that $x in mathbbZ$ and $x$ is divisible by $10$ but $x$ is not even. But since $10 = 2cdot 5$, we need to have $2|x$ and $5|x$. But if $2|x$, then $x$ is an even integer, which is a contradiction as required. Therefore, $x$ must be an even integer.






share|cite|improve this answer




















  • Thanks! So my logic was that since it asked for every integer, I figured a proof by contradiction would be best because you only have to prove one instance of something. I suppose I'm confused on when to use contradiction because doesn't doing a direct proof assumes that you only examine one instance of an integer, not all?
    – user2793618
    Aug 25 at 2:19











  • Also what can be improved?
    – user2793618
    Aug 25 at 2:21






  • 1




    In direct proof, what we do is not examining one instance actually. We generalize the form of that instance (like numbers that are divisible by $10$ are in the form of $10k$) and when we prove it for that form, we actually prove it for all instances of that form instead of a single example or examining the argument case by case.
    – ArsenBerk
    Aug 25 at 6:30











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',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2893536%2fwhat-is-the-best-way-to-prove-prove-every-x-is-q%23new-answer', 'question_page');

);

Post as a guest






























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
3
down vote



accepted











So what is the best way to approach this proof? Contradiction, contrapositive, direct?




I think there is no "best way" to approach a proof.
But most of the time a direct proof should be tried first, because they are most of the time more clear and have other advantages over a proof by contradiction, for example.



Like that a direct proof can give you an algorithm which you can use or implement.



Your translation of the question seems fine to me.
Your proof also looks good, but it is not a proof by contradiction. That would be a direct proof.



A proof is generaly build like this. You assume, that $A$ holds and then you conclude $B$. $ARightarrow B$.
$A$ is here the statement, that you have an integer $k$, which is divisable by $10$. And you want to conclude $B$, which is that $k$ has to be divisable by $2$.



In a proof by contradiction you assume, that not $B$ holds and conclude that not $A$ holds. $neg BRightarrow neg A$.



It is $ARightarrow Bleftrightarrow neg BRightarrow neg A$.



EDIT: (For the following note the answer of Arsen Berk)



[A proof by induction does not work here.
First of all you are working over the integers, but induction is for statements over the natural numbers.
Also I can not imagine how the inductive step should work out here.
There is no link to this task and induction.]






share|cite|improve this answer


















  • 1




    Induction can work here by redefining the numbers that we are examining. OP defines the number as $B = 10K$ for example, where we can use induction on $K$ from $1$ to $n$ to examine the positive integers. But if we define the number as $B = -10K$, then, again, we can use induction on $K$ to examine the negative numbers. $B = 0$ is the trivial case so, maybe not in one case, but in three cases, we can complete our induction on $mathbbZ$.
    – ArsenBerk
    Aug 24 at 21:04







  • 2




    @ArsenBerk Thanks. Yeah I thought about that and of course it is true, but I think you should definitly not proof this by induction. :) I was about to comment this question under your answer. But what ever works, I guess. One should not go to crazy about induction as a newcomer in math, I think.
    – Cornman
    Aug 24 at 21:09






  • 2




    Yes, you are right about induction's unsuitability for this case. That's why I also said "I don't think an inductive argument is needed for this kind of proof" :) After you mentioned it, I also realized that we would have three cases to consider while doing induction so that is really crazy.
    – ArsenBerk
    Aug 24 at 21:14






  • 1




    @user2793618 You are right. $neg BRightarrowneg A$ would be the structure of a proof by contraposition. A proof by contradiction reads kinda like that. Let $A$ be true. Suppose $B$ is wrong. Then holds $neg B$. Bla bla bla. This would be a contradiction. Therefor the assumtion is wrong. I mixed that up. Thanks for pointing that out.
    – Cornman
    Aug 25 at 2:37






  • 1




    @user2793618 When a statement holds for every natural number, and you want to proof it. You can do this by induction. But it is not necessary and also not all the time possible. Sometimes induction is a good choice, sometimes it is not. Sometimes induction work, or a direct proof. In general it is up to you. I have never heard, that a direct proof requires a free variable. Not an expert on proof-theory.
    – Cornman
    Aug 25 at 2:40














up vote
3
down vote



accepted











So what is the best way to approach this proof? Contradiction, contrapositive, direct?




I think there is no "best way" to approach a proof.
But most of the time a direct proof should be tried first, because they are most of the time more clear and have other advantages over a proof by contradiction, for example.



Like that a direct proof can give you an algorithm which you can use or implement.



Your translation of the question seems fine to me.
Your proof also looks good, but it is not a proof by contradiction. That would be a direct proof.



A proof is generaly build like this. You assume, that $A$ holds and then you conclude $B$. $ARightarrow B$.
$A$ is here the statement, that you have an integer $k$, which is divisable by $10$. And you want to conclude $B$, which is that $k$ has to be divisable by $2$.



In a proof by contradiction you assume, that not $B$ holds and conclude that not $A$ holds. $neg BRightarrow neg A$.



It is $ARightarrow Bleftrightarrow neg BRightarrow neg A$.



EDIT: (For the following note the answer of Arsen Berk)



[A proof by induction does not work here.
First of all you are working over the integers, but induction is for statements over the natural numbers.
Also I can not imagine how the inductive step should work out here.
There is no link to this task and induction.]






share|cite|improve this answer


















  • 1




    Induction can work here by redefining the numbers that we are examining. OP defines the number as $B = 10K$ for example, where we can use induction on $K$ from $1$ to $n$ to examine the positive integers. But if we define the number as $B = -10K$, then, again, we can use induction on $K$ to examine the negative numbers. $B = 0$ is the trivial case so, maybe not in one case, but in three cases, we can complete our induction on $mathbbZ$.
    – ArsenBerk
    Aug 24 at 21:04







  • 2




    @ArsenBerk Thanks. Yeah I thought about that and of course it is true, but I think you should definitly not proof this by induction. :) I was about to comment this question under your answer. But what ever works, I guess. One should not go to crazy about induction as a newcomer in math, I think.
    – Cornman
    Aug 24 at 21:09






  • 2




    Yes, you are right about induction's unsuitability for this case. That's why I also said "I don't think an inductive argument is needed for this kind of proof" :) After you mentioned it, I also realized that we would have three cases to consider while doing induction so that is really crazy.
    – ArsenBerk
    Aug 24 at 21:14






  • 1




    @user2793618 You are right. $neg BRightarrowneg A$ would be the structure of a proof by contraposition. A proof by contradiction reads kinda like that. Let $A$ be true. Suppose $B$ is wrong. Then holds $neg B$. Bla bla bla. This would be a contradiction. Therefor the assumtion is wrong. I mixed that up. Thanks for pointing that out.
    – Cornman
    Aug 25 at 2:37






  • 1




    @user2793618 When a statement holds for every natural number, and you want to proof it. You can do this by induction. But it is not necessary and also not all the time possible. Sometimes induction is a good choice, sometimes it is not. Sometimes induction work, or a direct proof. In general it is up to you. I have never heard, that a direct proof requires a free variable. Not an expert on proof-theory.
    – Cornman
    Aug 25 at 2:40












up vote
3
down vote



accepted







up vote
3
down vote



accepted







So what is the best way to approach this proof? Contradiction, contrapositive, direct?




I think there is no "best way" to approach a proof.
But most of the time a direct proof should be tried first, because they are most of the time more clear and have other advantages over a proof by contradiction, for example.



Like that a direct proof can give you an algorithm which you can use or implement.



Your translation of the question seems fine to me.
Your proof also looks good, but it is not a proof by contradiction. That would be a direct proof.



A proof is generaly build like this. You assume, that $A$ holds and then you conclude $B$. $ARightarrow B$.
$A$ is here the statement, that you have an integer $k$, which is divisable by $10$. And you want to conclude $B$, which is that $k$ has to be divisable by $2$.



In a proof by contradiction you assume, that not $B$ holds and conclude that not $A$ holds. $neg BRightarrow neg A$.



It is $ARightarrow Bleftrightarrow neg BRightarrow neg A$.



EDIT: (For the following note the answer of Arsen Berk)



[A proof by induction does not work here.
First of all you are working over the integers, but induction is for statements over the natural numbers.
Also I can not imagine how the inductive step should work out here.
There is no link to this task and induction.]






share|cite|improve this answer















So what is the best way to approach this proof? Contradiction, contrapositive, direct?




I think there is no "best way" to approach a proof.
But most of the time a direct proof should be tried first, because they are most of the time more clear and have other advantages over a proof by contradiction, for example.



Like that a direct proof can give you an algorithm which you can use or implement.



Your translation of the question seems fine to me.
Your proof also looks good, but it is not a proof by contradiction. That would be a direct proof.



A proof is generaly build like this. You assume, that $A$ holds and then you conclude $B$. $ARightarrow B$.
$A$ is here the statement, that you have an integer $k$, which is divisable by $10$. And you want to conclude $B$, which is that $k$ has to be divisable by $2$.



In a proof by contradiction you assume, that not $B$ holds and conclude that not $A$ holds. $neg BRightarrow neg A$.



It is $ARightarrow Bleftrightarrow neg BRightarrow neg A$.



EDIT: (For the following note the answer of Arsen Berk)



[A proof by induction does not work here.
First of all you are working over the integers, but induction is for statements over the natural numbers.
Also I can not imagine how the inductive step should work out here.
There is no link to this task and induction.]







share|cite|improve this answer














share|cite|improve this answer



share|cite|improve this answer








edited Aug 24 at 21:10

























answered Aug 24 at 21:00









Cornman

2,70421228




2,70421228







  • 1




    Induction can work here by redefining the numbers that we are examining. OP defines the number as $B = 10K$ for example, where we can use induction on $K$ from $1$ to $n$ to examine the positive integers. But if we define the number as $B = -10K$, then, again, we can use induction on $K$ to examine the negative numbers. $B = 0$ is the trivial case so, maybe not in one case, but in three cases, we can complete our induction on $mathbbZ$.
    – ArsenBerk
    Aug 24 at 21:04







  • 2




    @ArsenBerk Thanks. Yeah I thought about that and of course it is true, but I think you should definitly not proof this by induction. :) I was about to comment this question under your answer. But what ever works, I guess. One should not go to crazy about induction as a newcomer in math, I think.
    – Cornman
    Aug 24 at 21:09






  • 2




    Yes, you are right about induction's unsuitability for this case. That's why I also said "I don't think an inductive argument is needed for this kind of proof" :) After you mentioned it, I also realized that we would have three cases to consider while doing induction so that is really crazy.
    – ArsenBerk
    Aug 24 at 21:14






  • 1




    @user2793618 You are right. $neg BRightarrowneg A$ would be the structure of a proof by contraposition. A proof by contradiction reads kinda like that. Let $A$ be true. Suppose $B$ is wrong. Then holds $neg B$. Bla bla bla. This would be a contradiction. Therefor the assumtion is wrong. I mixed that up. Thanks for pointing that out.
    – Cornman
    Aug 25 at 2:37






  • 1




    @user2793618 When a statement holds for every natural number, and you want to proof it. You can do this by induction. But it is not necessary and also not all the time possible. Sometimes induction is a good choice, sometimes it is not. Sometimes induction work, or a direct proof. In general it is up to you. I have never heard, that a direct proof requires a free variable. Not an expert on proof-theory.
    – Cornman
    Aug 25 at 2:40












  • 1




    Induction can work here by redefining the numbers that we are examining. OP defines the number as $B = 10K$ for example, where we can use induction on $K$ from $1$ to $n$ to examine the positive integers. But if we define the number as $B = -10K$, then, again, we can use induction on $K$ to examine the negative numbers. $B = 0$ is the trivial case so, maybe not in one case, but in three cases, we can complete our induction on $mathbbZ$.
    – ArsenBerk
    Aug 24 at 21:04







  • 2




    @ArsenBerk Thanks. Yeah I thought about that and of course it is true, but I think you should definitly not proof this by induction. :) I was about to comment this question under your answer. But what ever works, I guess. One should not go to crazy about induction as a newcomer in math, I think.
    – Cornman
    Aug 24 at 21:09






  • 2




    Yes, you are right about induction's unsuitability for this case. That's why I also said "I don't think an inductive argument is needed for this kind of proof" :) After you mentioned it, I also realized that we would have three cases to consider while doing induction so that is really crazy.
    – ArsenBerk
    Aug 24 at 21:14






  • 1




    @user2793618 You are right. $neg BRightarrowneg A$ would be the structure of a proof by contraposition. A proof by contradiction reads kinda like that. Let $A$ be true. Suppose $B$ is wrong. Then holds $neg B$. Bla bla bla. This would be a contradiction. Therefor the assumtion is wrong. I mixed that up. Thanks for pointing that out.
    – Cornman
    Aug 25 at 2:37






  • 1




    @user2793618 When a statement holds for every natural number, and you want to proof it. You can do this by induction. But it is not necessary and also not all the time possible. Sometimes induction is a good choice, sometimes it is not. Sometimes induction work, or a direct proof. In general it is up to you. I have never heard, that a direct proof requires a free variable. Not an expert on proof-theory.
    – Cornman
    Aug 25 at 2:40







1




1




Induction can work here by redefining the numbers that we are examining. OP defines the number as $B = 10K$ for example, where we can use induction on $K$ from $1$ to $n$ to examine the positive integers. But if we define the number as $B = -10K$, then, again, we can use induction on $K$ to examine the negative numbers. $B = 0$ is the trivial case so, maybe not in one case, but in three cases, we can complete our induction on $mathbbZ$.
– ArsenBerk
Aug 24 at 21:04





Induction can work here by redefining the numbers that we are examining. OP defines the number as $B = 10K$ for example, where we can use induction on $K$ from $1$ to $n$ to examine the positive integers. But if we define the number as $B = -10K$, then, again, we can use induction on $K$ to examine the negative numbers. $B = 0$ is the trivial case so, maybe not in one case, but in three cases, we can complete our induction on $mathbbZ$.
– ArsenBerk
Aug 24 at 21:04





2




2




@ArsenBerk Thanks. Yeah I thought about that and of course it is true, but I think you should definitly not proof this by induction. :) I was about to comment this question under your answer. But what ever works, I guess. One should not go to crazy about induction as a newcomer in math, I think.
– Cornman
Aug 24 at 21:09




@ArsenBerk Thanks. Yeah I thought about that and of course it is true, but I think you should definitly not proof this by induction. :) I was about to comment this question under your answer. But what ever works, I guess. One should not go to crazy about induction as a newcomer in math, I think.
– Cornman
Aug 24 at 21:09




2




2




Yes, you are right about induction's unsuitability for this case. That's why I also said "I don't think an inductive argument is needed for this kind of proof" :) After you mentioned it, I also realized that we would have three cases to consider while doing induction so that is really crazy.
– ArsenBerk
Aug 24 at 21:14




Yes, you are right about induction's unsuitability for this case. That's why I also said "I don't think an inductive argument is needed for this kind of proof" :) After you mentioned it, I also realized that we would have three cases to consider while doing induction so that is really crazy.
– ArsenBerk
Aug 24 at 21:14




1




1




@user2793618 You are right. $neg BRightarrowneg A$ would be the structure of a proof by contraposition. A proof by contradiction reads kinda like that. Let $A$ be true. Suppose $B$ is wrong. Then holds $neg B$. Bla bla bla. This would be a contradiction. Therefor the assumtion is wrong. I mixed that up. Thanks for pointing that out.
– Cornman
Aug 25 at 2:37




@user2793618 You are right. $neg BRightarrowneg A$ would be the structure of a proof by contraposition. A proof by contradiction reads kinda like that. Let $A$ be true. Suppose $B$ is wrong. Then holds $neg B$. Bla bla bla. This would be a contradiction. Therefor the assumtion is wrong. I mixed that up. Thanks for pointing that out.
– Cornman
Aug 25 at 2:37




1




1




@user2793618 When a statement holds for every natural number, and you want to proof it. You can do this by induction. But it is not necessary and also not all the time possible. Sometimes induction is a good choice, sometimes it is not. Sometimes induction work, or a direct proof. In general it is up to you. I have never heard, that a direct proof requires a free variable. Not an expert on proof-theory.
– Cornman
Aug 25 at 2:40




@user2793618 When a statement holds for every natural number, and you want to proof it. You can do this by induction. But it is not necessary and also not all the time possible. Sometimes induction is a good choice, sometimes it is not. Sometimes induction work, or a direct proof. In general it is up to you. I have never heard, that a direct proof requires a free variable. Not an expert on proof-theory.
– Cornman
Aug 25 at 2:40










up vote
3
down vote













I think your proof does not count as proof by contradiction, it is more like direct way of proving it and if you can think the direct way, in my opinion, it is clear enough (but it is a matter of style so I can't say this is the "best" way). Induction would also work here, but in your direct way, the argument is simple and clear enough to be understood so I don't think an inductive argument is needed for this kind of proof.



Since you asked it, proof by contradiction would be as the following:



Suppose, for a contradiction, that $x in mathbbZ$ and $x$ is divisible by $10$ but $x$ is not even. But since $10 = 2cdot 5$, we need to have $2|x$ and $5|x$. But if $2|x$, then $x$ is an even integer, which is a contradiction as required. Therefore, $x$ must be an even integer.






share|cite|improve this answer




















  • Thanks! So my logic was that since it asked for every integer, I figured a proof by contradiction would be best because you only have to prove one instance of something. I suppose I'm confused on when to use contradiction because doesn't doing a direct proof assumes that you only examine one instance of an integer, not all?
    – user2793618
    Aug 25 at 2:19











  • Also what can be improved?
    – user2793618
    Aug 25 at 2:21






  • 1




    In direct proof, what we do is not examining one instance actually. We generalize the form of that instance (like numbers that are divisible by $10$ are in the form of $10k$) and when we prove it for that form, we actually prove it for all instances of that form instead of a single example or examining the argument case by case.
    – ArsenBerk
    Aug 25 at 6:30















up vote
3
down vote













I think your proof does not count as proof by contradiction, it is more like direct way of proving it and if you can think the direct way, in my opinion, it is clear enough (but it is a matter of style so I can't say this is the "best" way). Induction would also work here, but in your direct way, the argument is simple and clear enough to be understood so I don't think an inductive argument is needed for this kind of proof.



Since you asked it, proof by contradiction would be as the following:



Suppose, for a contradiction, that $x in mathbbZ$ and $x$ is divisible by $10$ but $x$ is not even. But since $10 = 2cdot 5$, we need to have $2|x$ and $5|x$. But if $2|x$, then $x$ is an even integer, which is a contradiction as required. Therefore, $x$ must be an even integer.






share|cite|improve this answer




















  • Thanks! So my logic was that since it asked for every integer, I figured a proof by contradiction would be best because you only have to prove one instance of something. I suppose I'm confused on when to use contradiction because doesn't doing a direct proof assumes that you only examine one instance of an integer, not all?
    – user2793618
    Aug 25 at 2:19











  • Also what can be improved?
    – user2793618
    Aug 25 at 2:21






  • 1




    In direct proof, what we do is not examining one instance actually. We generalize the form of that instance (like numbers that are divisible by $10$ are in the form of $10k$) and when we prove it for that form, we actually prove it for all instances of that form instead of a single example or examining the argument case by case.
    – ArsenBerk
    Aug 25 at 6:30













up vote
3
down vote










up vote
3
down vote









I think your proof does not count as proof by contradiction, it is more like direct way of proving it and if you can think the direct way, in my opinion, it is clear enough (but it is a matter of style so I can't say this is the "best" way). Induction would also work here, but in your direct way, the argument is simple and clear enough to be understood so I don't think an inductive argument is needed for this kind of proof.



Since you asked it, proof by contradiction would be as the following:



Suppose, for a contradiction, that $x in mathbbZ$ and $x$ is divisible by $10$ but $x$ is not even. But since $10 = 2cdot 5$, we need to have $2|x$ and $5|x$. But if $2|x$, then $x$ is an even integer, which is a contradiction as required. Therefore, $x$ must be an even integer.






share|cite|improve this answer












I think your proof does not count as proof by contradiction, it is more like direct way of proving it and if you can think the direct way, in my opinion, it is clear enough (but it is a matter of style so I can't say this is the "best" way). Induction would also work here, but in your direct way, the argument is simple and clear enough to be understood so I don't think an inductive argument is needed for this kind of proof.



Since you asked it, proof by contradiction would be as the following:



Suppose, for a contradiction, that $x in mathbbZ$ and $x$ is divisible by $10$ but $x$ is not even. But since $10 = 2cdot 5$, we need to have $2|x$ and $5|x$. But if $2|x$, then $x$ is an even integer, which is a contradiction as required. Therefore, $x$ must be an even integer.







share|cite|improve this answer












share|cite|improve this answer



share|cite|improve this answer










answered Aug 24 at 20:56









ArsenBerk

6,7351933




6,7351933











  • Thanks! So my logic was that since it asked for every integer, I figured a proof by contradiction would be best because you only have to prove one instance of something. I suppose I'm confused on when to use contradiction because doesn't doing a direct proof assumes that you only examine one instance of an integer, not all?
    – user2793618
    Aug 25 at 2:19











  • Also what can be improved?
    – user2793618
    Aug 25 at 2:21






  • 1




    In direct proof, what we do is not examining one instance actually. We generalize the form of that instance (like numbers that are divisible by $10$ are in the form of $10k$) and when we prove it for that form, we actually prove it for all instances of that form instead of a single example or examining the argument case by case.
    – ArsenBerk
    Aug 25 at 6:30

















  • Thanks! So my logic was that since it asked for every integer, I figured a proof by contradiction would be best because you only have to prove one instance of something. I suppose I'm confused on when to use contradiction because doesn't doing a direct proof assumes that you only examine one instance of an integer, not all?
    – user2793618
    Aug 25 at 2:19











  • Also what can be improved?
    – user2793618
    Aug 25 at 2:21






  • 1




    In direct proof, what we do is not examining one instance actually. We generalize the form of that instance (like numbers that are divisible by $10$ are in the form of $10k$) and when we prove it for that form, we actually prove it for all instances of that form instead of a single example or examining the argument case by case.
    – ArsenBerk
    Aug 25 at 6:30
















Thanks! So my logic was that since it asked for every integer, I figured a proof by contradiction would be best because you only have to prove one instance of something. I suppose I'm confused on when to use contradiction because doesn't doing a direct proof assumes that you only examine one instance of an integer, not all?
– user2793618
Aug 25 at 2:19





Thanks! So my logic was that since it asked for every integer, I figured a proof by contradiction would be best because you only have to prove one instance of something. I suppose I'm confused on when to use contradiction because doesn't doing a direct proof assumes that you only examine one instance of an integer, not all?
– user2793618
Aug 25 at 2:19













Also what can be improved?
– user2793618
Aug 25 at 2:21




Also what can be improved?
– user2793618
Aug 25 at 2:21




1




1




In direct proof, what we do is not examining one instance actually. We generalize the form of that instance (like numbers that are divisible by $10$ are in the form of $10k$) and when we prove it for that form, we actually prove it for all instances of that form instead of a single example or examining the argument case by case.
– ArsenBerk
Aug 25 at 6:30





In direct proof, what we do is not examining one instance actually. We generalize the form of that instance (like numbers that are divisible by $10$ are in the form of $10k$) and when we prove it for that form, we actually prove it for all instances of that form instead of a single example or examining the argument case by case.
– ArsenBerk
Aug 25 at 6:30


















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2893536%2fwhat-is-the-best-way-to-prove-prove-every-x-is-q%23new-answer', 'question_page');

);

Post as a guest













































































Comments

Popular posts from this blog

What does second last employer means? [closed]

List of Gilmore Girls characters

Confectionery