Problem of rooms
A rectangle is divided into some smaller rectangles.Each two adjacent rectangles share a door which connects them.Prove that we can start from one of the small rectangles and pass them all without crossing a rectangle more than once.
discrete-mathematics graph-theory recreational-mathematics problem-solving
New contributor
add a comment |
A rectangle is divided into some smaller rectangles.Each two adjacent rectangles share a door which connects them.Prove that we can start from one of the small rectangles and pass them all without crossing a rectangle more than once.
discrete-mathematics graph-theory recreational-mathematics problem-solving
New contributor
1
What have you tried so far?
– user3482749
Jan 1 at 21:05
@user3482749 I tried to solve this problem by Induction.
– Ali Faryadras
Jan 1 at 21:09
3
And? What progress did you make?
– user3482749
Jan 1 at 21:29
add a comment |
A rectangle is divided into some smaller rectangles.Each two adjacent rectangles share a door which connects them.Prove that we can start from one of the small rectangles and pass them all without crossing a rectangle more than once.
discrete-mathematics graph-theory recreational-mathematics problem-solving
New contributor
A rectangle is divided into some smaller rectangles.Each two adjacent rectangles share a door which connects them.Prove that we can start from one of the small rectangles and pass them all without crossing a rectangle more than once.
discrete-mathematics graph-theory recreational-mathematics problem-solving
discrete-mathematics graph-theory recreational-mathematics problem-solving
New contributor
New contributor
New contributor
asked Jan 1 at 21:04
Ali FaryadrasAli Faryadras
211
211
New contributor
New contributor
1
What have you tried so far?
– user3482749
Jan 1 at 21:05
@user3482749 I tried to solve this problem by Induction.
– Ali Faryadras
Jan 1 at 21:09
3
And? What progress did you make?
– user3482749
Jan 1 at 21:29
add a comment |
1
What have you tried so far?
– user3482749
Jan 1 at 21:05
@user3482749 I tried to solve this problem by Induction.
– Ali Faryadras
Jan 1 at 21:09
3
And? What progress did you make?
– user3482749
Jan 1 at 21:29
1
1
What have you tried so far?
– user3482749
Jan 1 at 21:05
What have you tried so far?
– user3482749
Jan 1 at 21:05
@user3482749 I tried to solve this problem by Induction.
– Ali Faryadras
Jan 1 at 21:09
@user3482749 I tried to solve this problem by Induction.
– Ali Faryadras
Jan 1 at 21:09
3
3
And? What progress did you make?
– user3482749
Jan 1 at 21:29
And? What progress did you make?
– user3482749
Jan 1 at 21:29
add a comment |
2 Answers
2
active
oldest
votes
Here's a tip in the right direction. The main difficulty of an inductive argument would be the following hypothetical case:
Here, it is not obvious how to adapt the pre-existing path to to include this new rectangle. So, why not make the inductive hypothesis be that there exists a path which never exits a rectangle, $r$, from the same "side" that $r$ was entered from, avoiding this problem altogether. With that inductive hypothesis, here’s the case work:
Hopefully everything is clear now?
New contributor
Do you have another idea without using induction?
– Ali Faryadras
Jan 2 at 9:28
induction is by far most natural to me, are you still having difficulty?
– Zachary Hunter
Jan 2 at 14:22
Have you tried anything since?
– Zachary Hunter
Jan 3 at 3:20
please try to provide further guidance.
– Ali Faryadras
2 days ago
I've drawn the cases, did you understand what my inductive proposition is?
– Zachary Hunter
2 days ago
|
show 1 more comment
Convert the rectangular structure to a graph, where each door becomes a vertex and each room becomes an edge. Since each door connects exactly two rooms, each vertex is therefore of degree two. Since no vertex is of odd degree, a Eulerian cycle is possible, i.e. each room/edge/bridge can be visited without repetition.
Since rooms will generally have more than two doors, this requires thinking about "edges" that connect more than two "vertices". That is definitely not a standard concept of graphs, so the standard theorems (like the one you're appealing to) will not work.
– Henning Makholm
yesterday
And "a Eulerian cycle is possible" is too strong a conclusion anyway. There are easy room layouts that will only allow for an Eulerian trail (which may end in a different room from the one it started at).
– Henning Makholm
yesterday
Yes, I was thinking of a simple room structure which produced a simple graph.
– GarryB
10 hours ago
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
});
}
});
Ali Faryadras is a new contributor. Be nice, and check out our Code of Conduct.
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%2f3058878%2fproblem-of-rooms%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
Here's a tip in the right direction. The main difficulty of an inductive argument would be the following hypothetical case:
Here, it is not obvious how to adapt the pre-existing path to to include this new rectangle. So, why not make the inductive hypothesis be that there exists a path which never exits a rectangle, $r$, from the same "side" that $r$ was entered from, avoiding this problem altogether. With that inductive hypothesis, here’s the case work:
Hopefully everything is clear now?
New contributor
Do you have another idea without using induction?
– Ali Faryadras
Jan 2 at 9:28
induction is by far most natural to me, are you still having difficulty?
– Zachary Hunter
Jan 2 at 14:22
Have you tried anything since?
– Zachary Hunter
Jan 3 at 3:20
please try to provide further guidance.
– Ali Faryadras
2 days ago
I've drawn the cases, did you understand what my inductive proposition is?
– Zachary Hunter
2 days ago
|
show 1 more comment
Here's a tip in the right direction. The main difficulty of an inductive argument would be the following hypothetical case:
Here, it is not obvious how to adapt the pre-existing path to to include this new rectangle. So, why not make the inductive hypothesis be that there exists a path which never exits a rectangle, $r$, from the same "side" that $r$ was entered from, avoiding this problem altogether. With that inductive hypothesis, here’s the case work:
Hopefully everything is clear now?
New contributor
Do you have another idea without using induction?
– Ali Faryadras
Jan 2 at 9:28
induction is by far most natural to me, are you still having difficulty?
– Zachary Hunter
Jan 2 at 14:22
Have you tried anything since?
– Zachary Hunter
Jan 3 at 3:20
please try to provide further guidance.
– Ali Faryadras
2 days ago
I've drawn the cases, did you understand what my inductive proposition is?
– Zachary Hunter
2 days ago
|
show 1 more comment
Here's a tip in the right direction. The main difficulty of an inductive argument would be the following hypothetical case:
Here, it is not obvious how to adapt the pre-existing path to to include this new rectangle. So, why not make the inductive hypothesis be that there exists a path which never exits a rectangle, $r$, from the same "side" that $r$ was entered from, avoiding this problem altogether. With that inductive hypothesis, here’s the case work:
Hopefully everything is clear now?
New contributor
Here's a tip in the right direction. The main difficulty of an inductive argument would be the following hypothetical case:
Here, it is not obvious how to adapt the pre-existing path to to include this new rectangle. So, why not make the inductive hypothesis be that there exists a path which never exits a rectangle, $r$, from the same "side" that $r$ was entered from, avoiding this problem altogether. With that inductive hypothesis, here’s the case work:
Hopefully everything is clear now?
New contributor
edited 2 days ago
New contributor
answered Jan 2 at 6:06
Zachary HunterZachary Hunter
54110
54110
New contributor
New contributor
Do you have another idea without using induction?
– Ali Faryadras
Jan 2 at 9:28
induction is by far most natural to me, are you still having difficulty?
– Zachary Hunter
Jan 2 at 14:22
Have you tried anything since?
– Zachary Hunter
Jan 3 at 3:20
please try to provide further guidance.
– Ali Faryadras
2 days ago
I've drawn the cases, did you understand what my inductive proposition is?
– Zachary Hunter
2 days ago
|
show 1 more comment
Do you have another idea without using induction?
– Ali Faryadras
Jan 2 at 9:28
induction is by far most natural to me, are you still having difficulty?
– Zachary Hunter
Jan 2 at 14:22
Have you tried anything since?
– Zachary Hunter
Jan 3 at 3:20
please try to provide further guidance.
– Ali Faryadras
2 days ago
I've drawn the cases, did you understand what my inductive proposition is?
– Zachary Hunter
2 days ago
Do you have another idea without using induction?
– Ali Faryadras
Jan 2 at 9:28
Do you have another idea without using induction?
– Ali Faryadras
Jan 2 at 9:28
induction is by far most natural to me, are you still having difficulty?
– Zachary Hunter
Jan 2 at 14:22
induction is by far most natural to me, are you still having difficulty?
– Zachary Hunter
Jan 2 at 14:22
Have you tried anything since?
– Zachary Hunter
Jan 3 at 3:20
Have you tried anything since?
– Zachary Hunter
Jan 3 at 3:20
please try to provide further guidance.
– Ali Faryadras
2 days ago
please try to provide further guidance.
– Ali Faryadras
2 days ago
I've drawn the cases, did you understand what my inductive proposition is?
– Zachary Hunter
2 days ago
I've drawn the cases, did you understand what my inductive proposition is?
– Zachary Hunter
2 days ago
|
show 1 more comment
Convert the rectangular structure to a graph, where each door becomes a vertex and each room becomes an edge. Since each door connects exactly two rooms, each vertex is therefore of degree two. Since no vertex is of odd degree, a Eulerian cycle is possible, i.e. each room/edge/bridge can be visited without repetition.
Since rooms will generally have more than two doors, this requires thinking about "edges" that connect more than two "vertices". That is definitely not a standard concept of graphs, so the standard theorems (like the one you're appealing to) will not work.
– Henning Makholm
yesterday
And "a Eulerian cycle is possible" is too strong a conclusion anyway. There are easy room layouts that will only allow for an Eulerian trail (which may end in a different room from the one it started at).
– Henning Makholm
yesterday
Yes, I was thinking of a simple room structure which produced a simple graph.
– GarryB
10 hours ago
add a comment |
Convert the rectangular structure to a graph, where each door becomes a vertex and each room becomes an edge. Since each door connects exactly two rooms, each vertex is therefore of degree two. Since no vertex is of odd degree, a Eulerian cycle is possible, i.e. each room/edge/bridge can be visited without repetition.
Since rooms will generally have more than two doors, this requires thinking about "edges" that connect more than two "vertices". That is definitely not a standard concept of graphs, so the standard theorems (like the one you're appealing to) will not work.
– Henning Makholm
yesterday
And "a Eulerian cycle is possible" is too strong a conclusion anyway. There are easy room layouts that will only allow for an Eulerian trail (which may end in a different room from the one it started at).
– Henning Makholm
yesterday
Yes, I was thinking of a simple room structure which produced a simple graph.
– GarryB
10 hours ago
add a comment |
Convert the rectangular structure to a graph, where each door becomes a vertex and each room becomes an edge. Since each door connects exactly two rooms, each vertex is therefore of degree two. Since no vertex is of odd degree, a Eulerian cycle is possible, i.e. each room/edge/bridge can be visited without repetition.
Convert the rectangular structure to a graph, where each door becomes a vertex and each room becomes an edge. Since each door connects exactly two rooms, each vertex is therefore of degree two. Since no vertex is of odd degree, a Eulerian cycle is possible, i.e. each room/edge/bridge can be visited without repetition.
answered yesterday
GarryBGarryB
824
824
Since rooms will generally have more than two doors, this requires thinking about "edges" that connect more than two "vertices". That is definitely not a standard concept of graphs, so the standard theorems (like the one you're appealing to) will not work.
– Henning Makholm
yesterday
And "a Eulerian cycle is possible" is too strong a conclusion anyway. There are easy room layouts that will only allow for an Eulerian trail (which may end in a different room from the one it started at).
– Henning Makholm
yesterday
Yes, I was thinking of a simple room structure which produced a simple graph.
– GarryB
10 hours ago
add a comment |
Since rooms will generally have more than two doors, this requires thinking about "edges" that connect more than two "vertices". That is definitely not a standard concept of graphs, so the standard theorems (like the one you're appealing to) will not work.
– Henning Makholm
yesterday
And "a Eulerian cycle is possible" is too strong a conclusion anyway. There are easy room layouts that will only allow for an Eulerian trail (which may end in a different room from the one it started at).
– Henning Makholm
yesterday
Yes, I was thinking of a simple room structure which produced a simple graph.
– GarryB
10 hours ago
Since rooms will generally have more than two doors, this requires thinking about "edges" that connect more than two "vertices". That is definitely not a standard concept of graphs, so the standard theorems (like the one you're appealing to) will not work.
– Henning Makholm
yesterday
Since rooms will generally have more than two doors, this requires thinking about "edges" that connect more than two "vertices". That is definitely not a standard concept of graphs, so the standard theorems (like the one you're appealing to) will not work.
– Henning Makholm
yesterday
And "a Eulerian cycle is possible" is too strong a conclusion anyway. There are easy room layouts that will only allow for an Eulerian trail (which may end in a different room from the one it started at).
– Henning Makholm
yesterday
And "a Eulerian cycle is possible" is too strong a conclusion anyway. There are easy room layouts that will only allow for an Eulerian trail (which may end in a different room from the one it started at).
– Henning Makholm
yesterday
Yes, I was thinking of a simple room structure which produced a simple graph.
– GarryB
10 hours ago
Yes, I was thinking of a simple room structure which produced a simple graph.
– GarryB
10 hours ago
add a comment |
Ali Faryadras is a new contributor. Be nice, and check out our Code of Conduct.
Ali Faryadras is a new contributor. Be nice, and check out our Code of Conduct.
Ali Faryadras is a new contributor. Be nice, and check out our Code of Conduct.
Ali Faryadras is a new contributor. Be nice, and check out our Code of Conduct.
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%2f3058878%2fproblem-of-rooms%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
What have you tried so far?
– user3482749
Jan 1 at 21:05
@user3482749 I tried to solve this problem by Induction.
– Ali Faryadras
Jan 1 at 21:09
3
And? What progress did you make?
– user3482749
Jan 1 at 21:29