Can sets A, B and C be transitive or does transitivity hold just for individual relations. Also does missing...
$begingroup$
Can sets A, B and C be transitive or can we describe only individual relations as being transitive. Also does missing a single relation between two sets mean we can't describe the relation as transitive?
So, the following is transitive where the operator is <= (less than or equals) between A and B and B and C
A = {1,2} B = {2,3} C = {5,6}
A <= B
Ra 1 <= 2
Rb 2 <= 2
Rc 1 <= 3
Rd 2 <= 3
B <= C
Re 2 <= 5
Rf 2 <= 6
Rg 3 <= 5
Rh 3 <= 6
because all relations between A <= B and B <= C
we can say these sets have transitivity and therefore
A <= C
however...
if we change set C to {2,5,6}
(I added an extra 2)
additional relations between B <= C are as follows
2 <= 2
// 3 <= 2 does not hold so this is not a relation in regards to the operator <= between 3 and 2
So, could we originally describe the relationship of the sets ARB -> BRC as being transitive but now we cannot?
(apologies, please correct any incorrect terminology, I'm self learning this stuff and I have never studied this stuff before! I may have got some of the fundamentals incorrect too)
relations equivalence-relations
$endgroup$
add a comment |
$begingroup$
Can sets A, B and C be transitive or can we describe only individual relations as being transitive. Also does missing a single relation between two sets mean we can't describe the relation as transitive?
So, the following is transitive where the operator is <= (less than or equals) between A and B and B and C
A = {1,2} B = {2,3} C = {5,6}
A <= B
Ra 1 <= 2
Rb 2 <= 2
Rc 1 <= 3
Rd 2 <= 3
B <= C
Re 2 <= 5
Rf 2 <= 6
Rg 3 <= 5
Rh 3 <= 6
because all relations between A <= B and B <= C
we can say these sets have transitivity and therefore
A <= C
however...
if we change set C to {2,5,6}
(I added an extra 2)
additional relations between B <= C are as follows
2 <= 2
// 3 <= 2 does not hold so this is not a relation in regards to the operator <= between 3 and 2
So, could we originally describe the relationship of the sets ARB -> BRC as being transitive but now we cannot?
(apologies, please correct any incorrect terminology, I'm self learning this stuff and I have never studied this stuff before! I may have got some of the fundamentals incorrect too)
relations equivalence-relations
$endgroup$
add a comment |
$begingroup$
Can sets A, B and C be transitive or can we describe only individual relations as being transitive. Also does missing a single relation between two sets mean we can't describe the relation as transitive?
So, the following is transitive where the operator is <= (less than or equals) between A and B and B and C
A = {1,2} B = {2,3} C = {5,6}
A <= B
Ra 1 <= 2
Rb 2 <= 2
Rc 1 <= 3
Rd 2 <= 3
B <= C
Re 2 <= 5
Rf 2 <= 6
Rg 3 <= 5
Rh 3 <= 6
because all relations between A <= B and B <= C
we can say these sets have transitivity and therefore
A <= C
however...
if we change set C to {2,5,6}
(I added an extra 2)
additional relations between B <= C are as follows
2 <= 2
// 3 <= 2 does not hold so this is not a relation in regards to the operator <= between 3 and 2
So, could we originally describe the relationship of the sets ARB -> BRC as being transitive but now we cannot?
(apologies, please correct any incorrect terminology, I'm self learning this stuff and I have never studied this stuff before! I may have got some of the fundamentals incorrect too)
relations equivalence-relations
$endgroup$
Can sets A, B and C be transitive or can we describe only individual relations as being transitive. Also does missing a single relation between two sets mean we can't describe the relation as transitive?
So, the following is transitive where the operator is <= (less than or equals) between A and B and B and C
A = {1,2} B = {2,3} C = {5,6}
A <= B
Ra 1 <= 2
Rb 2 <= 2
Rc 1 <= 3
Rd 2 <= 3
B <= C
Re 2 <= 5
Rf 2 <= 6
Rg 3 <= 5
Rh 3 <= 6
because all relations between A <= B and B <= C
we can say these sets have transitivity and therefore
A <= C
however...
if we change set C to {2,5,6}
(I added an extra 2)
additional relations between B <= C are as follows
2 <= 2
// 3 <= 2 does not hold so this is not a relation in regards to the operator <= between 3 and 2
So, could we originally describe the relationship of the sets ARB -> BRC as being transitive but now we cannot?
(apologies, please correct any incorrect terminology, I'm self learning this stuff and I have never studied this stuff before! I may have got some of the fundamentals incorrect too)
relations equivalence-relations
relations equivalence-relations
asked Jan 9 at 16:40
orangesherbertorangesherbert
1033
1033
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
You need to define what you mean by one set being less than or equal to another. It seems your definition is that all elements of the first set are less than or equal to all the elements of the second, so $A le B$ is the same as $max(A) le min(B)$ for finite sets. That is a fine definition of a relation between sets of numbers.
Now we can ask if this relation is transitive across all sets of sets. Your example does not show that it is not transitive across all sets of sets because with the changed $C$ you do not have $B le C$. In fact it is, because given $Ale B$ and $B le C$ we can show that $A le C$ by invoking the definition. We are given $max (A) le min (B)$ and $max (B) le min (C)$. Then $max (A) le min (B)le max (B) le min (C)$ and we have shown that $A le C$
$endgroup$
$begingroup$
Is it transitive due to the definition of the relationship between the sets or/and due to the individual elements and the operator? I don't follow how it is transitive
$endgroup$
– orangesherbert
Jan 9 at 17:35
$begingroup$
We defined the relationship between sets based on the relationships between the elements. It is a partial order because there are sets that cannot be compared, like ${1,5}$ and ${2,4}$. We need the definition of the relationship between sets and the transitivity of $le$ on numbers to make the proof work. My last two sentences are the proof. The next to last translates what we are given about the sets to statements about numbers based on the definition. The last then uses that to establish what we need to say $A le C$
$endgroup$
– Ross Millikan
Jan 9 at 17:48
$begingroup$
I read your answer and your comment yesterday and they made no sense, I read them today and they are crystal clear. I guess I just needed to let it digest a little in my brain. Many thanks, yes, I guess it is all about that definition of one set being less than or equal to the other; I could define that operator in different ways.
$endgroup$
– orangesherbert
Jan 10 at 13: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%2f3067677%2fcan-sets-a-b-and-c-be-transitive-or-does-transitivity-hold-just-for-individual%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
$begingroup$
You need to define what you mean by one set being less than or equal to another. It seems your definition is that all elements of the first set are less than or equal to all the elements of the second, so $A le B$ is the same as $max(A) le min(B)$ for finite sets. That is a fine definition of a relation between sets of numbers.
Now we can ask if this relation is transitive across all sets of sets. Your example does not show that it is not transitive across all sets of sets because with the changed $C$ you do not have $B le C$. In fact it is, because given $Ale B$ and $B le C$ we can show that $A le C$ by invoking the definition. We are given $max (A) le min (B)$ and $max (B) le min (C)$. Then $max (A) le min (B)le max (B) le min (C)$ and we have shown that $A le C$
$endgroup$
$begingroup$
Is it transitive due to the definition of the relationship between the sets or/and due to the individual elements and the operator? I don't follow how it is transitive
$endgroup$
– orangesherbert
Jan 9 at 17:35
$begingroup$
We defined the relationship between sets based on the relationships between the elements. It is a partial order because there are sets that cannot be compared, like ${1,5}$ and ${2,4}$. We need the definition of the relationship between sets and the transitivity of $le$ on numbers to make the proof work. My last two sentences are the proof. The next to last translates what we are given about the sets to statements about numbers based on the definition. The last then uses that to establish what we need to say $A le C$
$endgroup$
– Ross Millikan
Jan 9 at 17:48
$begingroup$
I read your answer and your comment yesterday and they made no sense, I read them today and they are crystal clear. I guess I just needed to let it digest a little in my brain. Many thanks, yes, I guess it is all about that definition of one set being less than or equal to the other; I could define that operator in different ways.
$endgroup$
– orangesherbert
Jan 10 at 13:59
add a comment |
$begingroup$
You need to define what you mean by one set being less than or equal to another. It seems your definition is that all elements of the first set are less than or equal to all the elements of the second, so $A le B$ is the same as $max(A) le min(B)$ for finite sets. That is a fine definition of a relation between sets of numbers.
Now we can ask if this relation is transitive across all sets of sets. Your example does not show that it is not transitive across all sets of sets because with the changed $C$ you do not have $B le C$. In fact it is, because given $Ale B$ and $B le C$ we can show that $A le C$ by invoking the definition. We are given $max (A) le min (B)$ and $max (B) le min (C)$. Then $max (A) le min (B)le max (B) le min (C)$ and we have shown that $A le C$
$endgroup$
$begingroup$
Is it transitive due to the definition of the relationship between the sets or/and due to the individual elements and the operator? I don't follow how it is transitive
$endgroup$
– orangesherbert
Jan 9 at 17:35
$begingroup$
We defined the relationship between sets based on the relationships between the elements. It is a partial order because there are sets that cannot be compared, like ${1,5}$ and ${2,4}$. We need the definition of the relationship between sets and the transitivity of $le$ on numbers to make the proof work. My last two sentences are the proof. The next to last translates what we are given about the sets to statements about numbers based on the definition. The last then uses that to establish what we need to say $A le C$
$endgroup$
– Ross Millikan
Jan 9 at 17:48
$begingroup$
I read your answer and your comment yesterday and they made no sense, I read them today and they are crystal clear. I guess I just needed to let it digest a little in my brain. Many thanks, yes, I guess it is all about that definition of one set being less than or equal to the other; I could define that operator in different ways.
$endgroup$
– orangesherbert
Jan 10 at 13:59
add a comment |
$begingroup$
You need to define what you mean by one set being less than or equal to another. It seems your definition is that all elements of the first set are less than or equal to all the elements of the second, so $A le B$ is the same as $max(A) le min(B)$ for finite sets. That is a fine definition of a relation between sets of numbers.
Now we can ask if this relation is transitive across all sets of sets. Your example does not show that it is not transitive across all sets of sets because with the changed $C$ you do not have $B le C$. In fact it is, because given $Ale B$ and $B le C$ we can show that $A le C$ by invoking the definition. We are given $max (A) le min (B)$ and $max (B) le min (C)$. Then $max (A) le min (B)le max (B) le min (C)$ and we have shown that $A le C$
$endgroup$
You need to define what you mean by one set being less than or equal to another. It seems your definition is that all elements of the first set are less than or equal to all the elements of the second, so $A le B$ is the same as $max(A) le min(B)$ for finite sets. That is a fine definition of a relation between sets of numbers.
Now we can ask if this relation is transitive across all sets of sets. Your example does not show that it is not transitive across all sets of sets because with the changed $C$ you do not have $B le C$. In fact it is, because given $Ale B$ and $B le C$ we can show that $A le C$ by invoking the definition. We are given $max (A) le min (B)$ and $max (B) le min (C)$. Then $max (A) le min (B)le max (B) le min (C)$ and we have shown that $A le C$
answered Jan 9 at 17:02
Ross MillikanRoss Millikan
295k23198371
295k23198371
$begingroup$
Is it transitive due to the definition of the relationship between the sets or/and due to the individual elements and the operator? I don't follow how it is transitive
$endgroup$
– orangesherbert
Jan 9 at 17:35
$begingroup$
We defined the relationship between sets based on the relationships between the elements. It is a partial order because there are sets that cannot be compared, like ${1,5}$ and ${2,4}$. We need the definition of the relationship between sets and the transitivity of $le$ on numbers to make the proof work. My last two sentences are the proof. The next to last translates what we are given about the sets to statements about numbers based on the definition. The last then uses that to establish what we need to say $A le C$
$endgroup$
– Ross Millikan
Jan 9 at 17:48
$begingroup$
I read your answer and your comment yesterday and they made no sense, I read them today and they are crystal clear. I guess I just needed to let it digest a little in my brain. Many thanks, yes, I guess it is all about that definition of one set being less than or equal to the other; I could define that operator in different ways.
$endgroup$
– orangesherbert
Jan 10 at 13:59
add a comment |
$begingroup$
Is it transitive due to the definition of the relationship between the sets or/and due to the individual elements and the operator? I don't follow how it is transitive
$endgroup$
– orangesherbert
Jan 9 at 17:35
$begingroup$
We defined the relationship between sets based on the relationships between the elements. It is a partial order because there are sets that cannot be compared, like ${1,5}$ and ${2,4}$. We need the definition of the relationship between sets and the transitivity of $le$ on numbers to make the proof work. My last two sentences are the proof. The next to last translates what we are given about the sets to statements about numbers based on the definition. The last then uses that to establish what we need to say $A le C$
$endgroup$
– Ross Millikan
Jan 9 at 17:48
$begingroup$
I read your answer and your comment yesterday and they made no sense, I read them today and they are crystal clear. I guess I just needed to let it digest a little in my brain. Many thanks, yes, I guess it is all about that definition of one set being less than or equal to the other; I could define that operator in different ways.
$endgroup$
– orangesherbert
Jan 10 at 13:59
$begingroup$
Is it transitive due to the definition of the relationship between the sets or/and due to the individual elements and the operator? I don't follow how it is transitive
$endgroup$
– orangesherbert
Jan 9 at 17:35
$begingroup$
Is it transitive due to the definition of the relationship between the sets or/and due to the individual elements and the operator? I don't follow how it is transitive
$endgroup$
– orangesherbert
Jan 9 at 17:35
$begingroup$
We defined the relationship between sets based on the relationships between the elements. It is a partial order because there are sets that cannot be compared, like ${1,5}$ and ${2,4}$. We need the definition of the relationship between sets and the transitivity of $le$ on numbers to make the proof work. My last two sentences are the proof. The next to last translates what we are given about the sets to statements about numbers based on the definition. The last then uses that to establish what we need to say $A le C$
$endgroup$
– Ross Millikan
Jan 9 at 17:48
$begingroup$
We defined the relationship between sets based on the relationships between the elements. It is a partial order because there are sets that cannot be compared, like ${1,5}$ and ${2,4}$. We need the definition of the relationship between sets and the transitivity of $le$ on numbers to make the proof work. My last two sentences are the proof. The next to last translates what we are given about the sets to statements about numbers based on the definition. The last then uses that to establish what we need to say $A le C$
$endgroup$
– Ross Millikan
Jan 9 at 17:48
$begingroup$
I read your answer and your comment yesterday and they made no sense, I read them today and they are crystal clear. I guess I just needed to let it digest a little in my brain. Many thanks, yes, I guess it is all about that definition of one set being less than or equal to the other; I could define that operator in different ways.
$endgroup$
– orangesherbert
Jan 10 at 13:59
$begingroup$
I read your answer and your comment yesterday and they made no sense, I read them today and they are crystal clear. I guess I just needed to let it digest a little in my brain. Many thanks, yes, I guess it is all about that definition of one set being less than or equal to the other; I could define that operator in different ways.
$endgroup$
– orangesherbert
Jan 10 at 13: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%2f3067677%2fcan-sets-a-b-and-c-be-transitive-or-does-transitivity-hold-just-for-individual%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