Path Property of Directed Acyclic Graphsdoes this complete directed graph have this property?Graphs: First Order Characterisation Of A pathProve that if $r(x)≠r(y)$ for every 2 distinct vertices $x$ and $y$ of $D$ then $D$ contain a Hamiltonian path.Path cover in directed graphsLabelings of infinite directed acyclic graphsShortest path in a graph with weighted edges and verticesA question about a labeled directed graphTransform Node-Labeled Graph to equivalent Edge-LabeledLet $G = (V,E)$ be a tree, then $G$ is a caterpillar graph $iff$ The line graph of $G$ contains a Hamiltonian path.Does a finite, strongly-connected, labeled digraph with no non-trivial automorphism always have a unique path?

Did arcade monitors have same pixel aspect ratio as TV sets?

2.8 Why are collections grayed out? How can I open them?

What does chmod -u do?

Is it better practice to read straight from sheet music rather than memorize it?

Electoral considerations aside, what are potential benefits, for the US, of policy changes proposed by the tweet recognizing Golan annexation?

What is this cable/device?

What should you do when eye contact makes your subordinate uncomfortable?

Which one is correct as adjective “protruding” or “protruded”?

Creepy dinosaur pc game identification

Why is so much work done on numerical verification of the Riemann Hypothesis?

Delivering sarcasm

Is it improper etiquette to ask your opponent what his/her rating is before the game?

Biological Blimps: Propulsion

Problem with TransformedDistribution

What if a revenant (monster) gains fire resistance?

How do I find all files that end with a dot

If a character has darkvision, can they see through an area of nonmagical darkness filled with lightly obscuring gas?

Why did the Mercure fail?

Create all possible words using a set or letters

How much character growth crosses the line into breaking the character

What is the evidence for the "tyranny of the majority problem" in a direct democracy context?

How could a planet have erratic days?

Why should universal income be universal?

Loading commands from file



Path Property of Directed Acyclic Graphs


does this complete directed graph have this property?Graphs: First Order Characterisation Of A pathProve that if $r(x)≠r(y)$ for every 2 distinct vertices $x$ and $y$ of $D$ then $D$ contain a Hamiltonian path.Path cover in directed graphsLabelings of infinite directed acyclic graphsShortest path in a graph with weighted edges and verticesA question about a labeled directed graphTransform Node-Labeled Graph to equivalent Edge-LabeledLet $G = (V,E)$ be a tree, then $G$ is a caterpillar graph $iff$ The line graph of $G$ contains a Hamiltonian path.Does a finite, strongly-connected, labeled digraph with no non-trivial automorphism always have a unique path?













0












$begingroup$


Suppose we are given a directed acyclic graph $G$, and each node is assigned a label with two real numbers like in the following example. We are given a set of source vertices and a set of sink vertices. We construct a new graph where all source vertices are replaced by one vertex, all vertices reachable from the source vertices by another vertex and so forth. We then assign labels to these new vertices as follows: for the first label we take the maximum value of all the labels in that reachable set and for the second label we take the minimum value of all the lables. Like for $L_1$ we take the maximum of $(40,10)$ and the minimum of the second label that is minimum of $(8, 6)$ and thus the label of the new graph is $(40, 6)$.



enter image description here



I have written this formally as follows:



Let $G=(V,E)$ be a directed acyclic graph. Consider $source subset V$ to be source vertices which have no inward edges into them and $sink subset V$ to be sink vertices from which no outward edges are present. Consider $L_k = distance(source, v) = k$ , ie, $L_k$ is the set of vertices which are at a distance $k$ from the source vertices. Each vertex is labeled with two real numbers defined by the functions $a$ and $b$ $a : v rightarrow mathbbR$ and $b : v rightarrow mathbbR$, $forall v in V$.



Consider a new graph $G'=(V',E')$ where $|V'| = k$. and each vertex in this graph corresponds to a set $L_i$ of the graph $G$, ie, there is a bijective function $f:L_i rightarrow v_i$, $forall i, 1leq i leq k $. The edge set $E'$ of this graph is defined as $(v_i, v_i+1, forall i, 1 leq i leq k-1$. Thus, this new graph is a path graph. Similar to the original graph, each vertex in this graph is labeled with two real numbers defined by the functions $a' : v' rightarrow mathbbR$ and $b' : v' rightarrow mathbbR$ where $a'(v_i') = maxa(v), forall v in L_i$ and $b'(v_i') = minb(v), forall v in L_i$, $forall 1 leq i leq k$.



Is this formalism correct? Now we need to show that if there is a particular vertex in the new graph such that its first label value is $ge x$ then there is a path in the original graph also where there is a vertex whose first label is $ge x$. Like for instance in the example above, if $x$ is say $50$, then the third vertex in the new graph has the first label as $60 ge 50$. There is a path is the original graph where the first label is also $60 ge 50$. If this is not true provide a counterexample. I have again written this formally below.



Prove that if in the path graph $G'$ there is a vertex $v'$ such that $a'(v') geq x$ then there is a path $v in G$ from source to sink such there is a vertex $v$ where $a(v) geq x$ and if in the path graph $G'$ there is a vertex $v'$ such that $b'(v') leq x$ then there is a path $v in G$ from source to sink such there is a vertex $v$ where $b(v) leq x$ or provide a counterexample. Is this formal definition correct?



Attempt : I tried to find a counterexample but could not find any. So for the proof attempt I tried arguing on the basis of the paths. For the first case, if in the path graph $G'$ there is a vertex $v'$ such that $a'(v') geq x$, then let us label this path as $v_0, v_1, v_2...v_k$ and the first vertex where the label $a'$ of the vertex $ge x$ be $v_n$. Assume for the purpose of contradiction that such a path does not exist in the original graph $G$. This means that the first label of all paths in the original graph $G lt x$. When building the new graph $G'$ we assigned the label of the vertex as the maximum value of all the labels in $L_i$. As a result of this construction, we have built the new graph $G'$ and obtained a vertex where its first label is $geq$x. For this vertex to be present in the new graph $G'$ it would have to be present in the original graph $G$ as well otherwise it could not be present in the new graph $G'$. This contradicts our claim that that such a path does not exist in the original graph $G$.



Is this proof correct or am I missing something or am I on the wrong track here?










share|cite|improve this question









$endgroup$
















    0












    $begingroup$


    Suppose we are given a directed acyclic graph $G$, and each node is assigned a label with two real numbers like in the following example. We are given a set of source vertices and a set of sink vertices. We construct a new graph where all source vertices are replaced by one vertex, all vertices reachable from the source vertices by another vertex and so forth. We then assign labels to these new vertices as follows: for the first label we take the maximum value of all the labels in that reachable set and for the second label we take the minimum value of all the lables. Like for $L_1$ we take the maximum of $(40,10)$ and the minimum of the second label that is minimum of $(8, 6)$ and thus the label of the new graph is $(40, 6)$.



    enter image description here



    I have written this formally as follows:



    Let $G=(V,E)$ be a directed acyclic graph. Consider $source subset V$ to be source vertices which have no inward edges into them and $sink subset V$ to be sink vertices from which no outward edges are present. Consider $L_k = distance(source, v) = k$ , ie, $L_k$ is the set of vertices which are at a distance $k$ from the source vertices. Each vertex is labeled with two real numbers defined by the functions $a$ and $b$ $a : v rightarrow mathbbR$ and $b : v rightarrow mathbbR$, $forall v in V$.



    Consider a new graph $G'=(V',E')$ where $|V'| = k$. and each vertex in this graph corresponds to a set $L_i$ of the graph $G$, ie, there is a bijective function $f:L_i rightarrow v_i$, $forall i, 1leq i leq k $. The edge set $E'$ of this graph is defined as $(v_i, v_i+1, forall i, 1 leq i leq k-1$. Thus, this new graph is a path graph. Similar to the original graph, each vertex in this graph is labeled with two real numbers defined by the functions $a' : v' rightarrow mathbbR$ and $b' : v' rightarrow mathbbR$ where $a'(v_i') = maxa(v), forall v in L_i$ and $b'(v_i') = minb(v), forall v in L_i$, $forall 1 leq i leq k$.



    Is this formalism correct? Now we need to show that if there is a particular vertex in the new graph such that its first label value is $ge x$ then there is a path in the original graph also where there is a vertex whose first label is $ge x$. Like for instance in the example above, if $x$ is say $50$, then the third vertex in the new graph has the first label as $60 ge 50$. There is a path is the original graph where the first label is also $60 ge 50$. If this is not true provide a counterexample. I have again written this formally below.



    Prove that if in the path graph $G'$ there is a vertex $v'$ such that $a'(v') geq x$ then there is a path $v in G$ from source to sink such there is a vertex $v$ where $a(v) geq x$ and if in the path graph $G'$ there is a vertex $v'$ such that $b'(v') leq x$ then there is a path $v in G$ from source to sink such there is a vertex $v$ where $b(v) leq x$ or provide a counterexample. Is this formal definition correct?



    Attempt : I tried to find a counterexample but could not find any. So for the proof attempt I tried arguing on the basis of the paths. For the first case, if in the path graph $G'$ there is a vertex $v'$ such that $a'(v') geq x$, then let us label this path as $v_0, v_1, v_2...v_k$ and the first vertex where the label $a'$ of the vertex $ge x$ be $v_n$. Assume for the purpose of contradiction that such a path does not exist in the original graph $G$. This means that the first label of all paths in the original graph $G lt x$. When building the new graph $G'$ we assigned the label of the vertex as the maximum value of all the labels in $L_i$. As a result of this construction, we have built the new graph $G'$ and obtained a vertex where its first label is $geq$x. For this vertex to be present in the new graph $G'$ it would have to be present in the original graph $G$ as well otherwise it could not be present in the new graph $G'$. This contradicts our claim that that such a path does not exist in the original graph $G$.



    Is this proof correct or am I missing something or am I on the wrong track here?










    share|cite|improve this question









    $endgroup$














      0












      0








      0


      1



      $begingroup$


      Suppose we are given a directed acyclic graph $G$, and each node is assigned a label with two real numbers like in the following example. We are given a set of source vertices and a set of sink vertices. We construct a new graph where all source vertices are replaced by one vertex, all vertices reachable from the source vertices by another vertex and so forth. We then assign labels to these new vertices as follows: for the first label we take the maximum value of all the labels in that reachable set and for the second label we take the minimum value of all the lables. Like for $L_1$ we take the maximum of $(40,10)$ and the minimum of the second label that is minimum of $(8, 6)$ and thus the label of the new graph is $(40, 6)$.



      enter image description here



      I have written this formally as follows:



      Let $G=(V,E)$ be a directed acyclic graph. Consider $source subset V$ to be source vertices which have no inward edges into them and $sink subset V$ to be sink vertices from which no outward edges are present. Consider $L_k = distance(source, v) = k$ , ie, $L_k$ is the set of vertices which are at a distance $k$ from the source vertices. Each vertex is labeled with two real numbers defined by the functions $a$ and $b$ $a : v rightarrow mathbbR$ and $b : v rightarrow mathbbR$, $forall v in V$.



      Consider a new graph $G'=(V',E')$ where $|V'| = k$. and each vertex in this graph corresponds to a set $L_i$ of the graph $G$, ie, there is a bijective function $f:L_i rightarrow v_i$, $forall i, 1leq i leq k $. The edge set $E'$ of this graph is defined as $(v_i, v_i+1, forall i, 1 leq i leq k-1$. Thus, this new graph is a path graph. Similar to the original graph, each vertex in this graph is labeled with two real numbers defined by the functions $a' : v' rightarrow mathbbR$ and $b' : v' rightarrow mathbbR$ where $a'(v_i') = maxa(v), forall v in L_i$ and $b'(v_i') = minb(v), forall v in L_i$, $forall 1 leq i leq k$.



      Is this formalism correct? Now we need to show that if there is a particular vertex in the new graph such that its first label value is $ge x$ then there is a path in the original graph also where there is a vertex whose first label is $ge x$. Like for instance in the example above, if $x$ is say $50$, then the third vertex in the new graph has the first label as $60 ge 50$. There is a path is the original graph where the first label is also $60 ge 50$. If this is not true provide a counterexample. I have again written this formally below.



      Prove that if in the path graph $G'$ there is a vertex $v'$ such that $a'(v') geq x$ then there is a path $v in G$ from source to sink such there is a vertex $v$ where $a(v) geq x$ and if in the path graph $G'$ there is a vertex $v'$ such that $b'(v') leq x$ then there is a path $v in G$ from source to sink such there is a vertex $v$ where $b(v) leq x$ or provide a counterexample. Is this formal definition correct?



      Attempt : I tried to find a counterexample but could not find any. So for the proof attempt I tried arguing on the basis of the paths. For the first case, if in the path graph $G'$ there is a vertex $v'$ such that $a'(v') geq x$, then let us label this path as $v_0, v_1, v_2...v_k$ and the first vertex where the label $a'$ of the vertex $ge x$ be $v_n$. Assume for the purpose of contradiction that such a path does not exist in the original graph $G$. This means that the first label of all paths in the original graph $G lt x$. When building the new graph $G'$ we assigned the label of the vertex as the maximum value of all the labels in $L_i$. As a result of this construction, we have built the new graph $G'$ and obtained a vertex where its first label is $geq$x. For this vertex to be present in the new graph $G'$ it would have to be present in the original graph $G$ as well otherwise it could not be present in the new graph $G'$. This contradicts our claim that that such a path does not exist in the original graph $G$.



      Is this proof correct or am I missing something or am I on the wrong track here?










      share|cite|improve this question









      $endgroup$




      Suppose we are given a directed acyclic graph $G$, and each node is assigned a label with two real numbers like in the following example. We are given a set of source vertices and a set of sink vertices. We construct a new graph where all source vertices are replaced by one vertex, all vertices reachable from the source vertices by another vertex and so forth. We then assign labels to these new vertices as follows: for the first label we take the maximum value of all the labels in that reachable set and for the second label we take the minimum value of all the lables. Like for $L_1$ we take the maximum of $(40,10)$ and the minimum of the second label that is minimum of $(8, 6)$ and thus the label of the new graph is $(40, 6)$.



      enter image description here



      I have written this formally as follows:



      Let $G=(V,E)$ be a directed acyclic graph. Consider $source subset V$ to be source vertices which have no inward edges into them and $sink subset V$ to be sink vertices from which no outward edges are present. Consider $L_k = distance(source, v) = k$ , ie, $L_k$ is the set of vertices which are at a distance $k$ from the source vertices. Each vertex is labeled with two real numbers defined by the functions $a$ and $b$ $a : v rightarrow mathbbR$ and $b : v rightarrow mathbbR$, $forall v in V$.



      Consider a new graph $G'=(V',E')$ where $|V'| = k$. and each vertex in this graph corresponds to a set $L_i$ of the graph $G$, ie, there is a bijective function $f:L_i rightarrow v_i$, $forall i, 1leq i leq k $. The edge set $E'$ of this graph is defined as $(v_i, v_i+1, forall i, 1 leq i leq k-1$. Thus, this new graph is a path graph. Similar to the original graph, each vertex in this graph is labeled with two real numbers defined by the functions $a' : v' rightarrow mathbbR$ and $b' : v' rightarrow mathbbR$ where $a'(v_i') = maxa(v), forall v in L_i$ and $b'(v_i') = minb(v), forall v in L_i$, $forall 1 leq i leq k$.



      Is this formalism correct? Now we need to show that if there is a particular vertex in the new graph such that its first label value is $ge x$ then there is a path in the original graph also where there is a vertex whose first label is $ge x$. Like for instance in the example above, if $x$ is say $50$, then the third vertex in the new graph has the first label as $60 ge 50$. There is a path is the original graph where the first label is also $60 ge 50$. If this is not true provide a counterexample. I have again written this formally below.



      Prove that if in the path graph $G'$ there is a vertex $v'$ such that $a'(v') geq x$ then there is a path $v in G$ from source to sink such there is a vertex $v$ where $a(v) geq x$ and if in the path graph $G'$ there is a vertex $v'$ such that $b'(v') leq x$ then there is a path $v in G$ from source to sink such there is a vertex $v$ where $b(v) leq x$ or provide a counterexample. Is this formal definition correct?



      Attempt : I tried to find a counterexample but could not find any. So for the proof attempt I tried arguing on the basis of the paths. For the first case, if in the path graph $G'$ there is a vertex $v'$ such that $a'(v') geq x$, then let us label this path as $v_0, v_1, v_2...v_k$ and the first vertex where the label $a'$ of the vertex $ge x$ be $v_n$. Assume for the purpose of contradiction that such a path does not exist in the original graph $G$. This means that the first label of all paths in the original graph $G lt x$. When building the new graph $G'$ we assigned the label of the vertex as the maximum value of all the labels in $L_i$. As a result of this construction, we have built the new graph $G'$ and obtained a vertex where its first label is $geq$x. For this vertex to be present in the new graph $G'$ it would have to be present in the original graph $G$ as well otherwise it could not be present in the new graph $G'$. This contradicts our claim that that such a path does not exist in the original graph $G$.



      Is this proof correct or am I missing something or am I on the wrong track here?







      graph-theory directed-graphs






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Mar 15 at 17:14









      kauraykauray

      19010




      19010




















          0






          active

          oldest

          votes











          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
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3149561%2fpath-property-of-directed-acyclic-graphs%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3149561%2fpath-property-of-directed-acyclic-graphs%23new-answer', 'question_page');

          );

          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







          Popular posts from this blog

          Solar Wings Breeze Design and development Specifications (Breeze) References Navigation menu1368-485X"Hang glider: Breeze (Solar Wings)"e

          Kathakali Contents Etymology and nomenclature History Repertoire Songs and musical instruments Traditional plays Styles: Sampradayam Training centers and awards Relationship to other dance forms See also Notes References External links Navigation menueThe Illustrated Encyclopedia of Hinduism: A-MSouth Asian Folklore: An EncyclopediaRoutledge International Encyclopedia of Women: Global Women's Issues and KnowledgeKathakali Dance-drama: Where Gods and Demons Come to PlayKathakali Dance-drama: Where Gods and Demons Come to PlayKathakali Dance-drama: Where Gods and Demons Come to Play10.1353/atj.2005.0004The Illustrated Encyclopedia of Hinduism: A-MEncyclopedia of HinduismKathakali Dance-drama: Where Gods and Demons Come to PlaySonic Liturgy: Ritual and Music in Hindu Tradition"The Mirror of Gesture"Kathakali Dance-drama: Where Gods and Demons Come to Play"Kathakali"Indian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceMedieval Indian Literature: An AnthologyThe Oxford Companion to Indian TheatreSouth Asian Folklore: An Encyclopedia : Afghanistan, Bangladesh, India, Nepal, Pakistan, Sri LankaThe Rise of Performance Studies: Rethinking Richard Schechner's Broad SpectrumIndian Theatre: Traditions of PerformanceModern Asian Theatre and Performance 1900-2000Critical Theory and PerformanceBetween Theater and AnthropologyKathakali603847011Indian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceBetween Theater and AnthropologyBetween Theater and AnthropologyNambeesan Smaraka AwardsArchivedThe Cambridge Guide to TheatreRoutledge International Encyclopedia of Women: Global Women's Issues and KnowledgeThe Garland Encyclopedia of World Music: South Asia : the Indian subcontinentThe Ethos of Noh: Actors and Their Art10.2307/1145740By Means of Performance: Intercultural Studies of Theatre and Ritual10.1017/s204912550000100xReconceiving the Renaissance: A Critical ReaderPerformance TheoryListening to Theatre: The Aural Dimension of Beijing Opera10.2307/1146013Kathakali: The Art of the Non-WorldlyOn KathakaliKathakali, the dance theatreThe Kathakali Complex: Performance & StructureKathakali Dance-Drama: Where Gods and Demons Come to Play10.1093/obo/9780195399318-0071Drama and Ritual of Early Hinduism"In the Shadow of Hollywood Orientalism: Authentic East Indian Dancing"10.1080/08949460490274013Sanskrit Play Production in Ancient IndiaIndian Music: History and StructureBharata, the Nāṭyaśāstra233639306Table of Contents2238067286469807Dance In Indian Painting10.2307/32047833204783Kathakali Dance-Theatre: A Visual Narrative of Sacred Indian MimeIndian Classical Dance: The Renaissance and BeyondKathakali: an indigenous art-form of Keralaeee

          Method to test if a number is a perfect power? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Detecting perfect squares faster than by extracting square rooteffective way to get the integer sequence A181392 from oeisA rarely mentioned fact about perfect powersHow many numbers such $n$ are there that $n<100,lfloorsqrtn rfloor mid n$Check perfect squareness by modulo division against multiple basesFor what pair of integers $(a,b)$ is $3^a + 7^b$ a perfect square.Do there exist any positive integers $n$ such that $lfloore^nrfloor$ is a perfect power? What is the probability that one exists?finding perfect power factors of an integerProve that the sequence contains a perfect square for any natural number $m $ in the domain of $f$ .Counting Perfect Powers