Skip to main content

Questions tagged [connected]

2 votes
0 answers
57 views

I have a problem from graph theory for which I could need some theoretical background and, if possible, ideas for an algorithm. Suppose we have a "usual" graph $G =(V,E)$ with finitely many ...
Jürgen Böhm's user avatar
1 vote
1 answer
398 views

If I start with a directed graph that is strongly connected, is there a straightforward way / algorithm to find the smallest set of edges to remove, such that the result is a directed but acyclic ...
Daniel Cherno's user avatar
2 votes
1 answer
371 views

Suppose I have an undirected graph $G=(V,E)$, and boolean variables $x_v$ (one for each vertex $v \in V$). These variables select a subset $S \subseteq V$ of vertices, namely the vertices $S=\{v \mid ...
D.W.'s user avatar
  • 169k
1 vote
3 answers
375 views

I'm attempting to solve this problem: Given an undirected connected graph $G=(V,E)$ with $\mathrm{weight}(e)>0$ for all $e \in E$, and a subset $S \subseteq V$, we define that a sub-graph $H=(V',E')...
Aishgadol's user avatar
  • 377
0 votes
0 answers
222 views

I'm asked to write an algorithm which determine all points which appear in a "edge-simple" path connecting node A and node B, i-e a path which doesn't go 2 times in the same edge, but it can ...
brandon's user avatar
1 vote
1 answer
238 views

In the answer to an earlier question "SAT algorithm for determining if a graph is disjoint" a formula is constructed that is satisfiable iff a given graph is connected. The formula uses a ...
Hendrik Jan's user avatar
  • 31.6k
2 votes
1 answer
119 views

I have a connected graph with $nk$ vertices, and would like to select $n$ disjoint induced subgraphs with $k$ vertices such that each subgraph is connected, selecting one out of all possible solutions ...
pommicket's user avatar
  • 281
0 votes
1 answer
147 views

Consider the problem of determining if a directed graph is strongly connected. How to phrase it as a language and prove that it's decidable. My Thoughts : To think of decidability given a graph I ...
Amit wadhwa's user avatar
5 votes
3 answers
2k views

I find in many references the fact that if $G$ is a connected planar graph, then for any embedding, $G^{**} \cong G$. However, all those references either say that this fact is trivial, or give the ...
Nathaniel's user avatar
  • 18.5k
3 votes
1 answer
3k views

I have an undirected unweighted graph with a single component. I want to know if removing a given node will disconnect the graph. I know that I can remove the edges to the node and then use DFS to get ...
user avatar
2 votes
1 answer
51 views

In a series graph, each edge $e_i$ exists with probability $p_i$. And if you want to examine the existence of edge $e_i$, it will cost you $c_i$. I want to test the connectivity between source $s$ and ...
aweftr's user avatar
  • 21
0 votes
1 answer
2k views

Suppose you have a connected graph and want to remove k nodes such that the result is still connected. How could you do this efficiently? It occurs to me that you ...
Addem's user avatar
  • 387
2 votes
1 answer
318 views

If a graph G(V,E) is connected the number of edges is at least the number of Vertices-1. It is pretty evident if you think about it but how do i prove it formally?
toploz's user avatar
  • 99
2 votes
0 answers
266 views

Given undirected and connected graph $G = (V,E)$. Prove for any DFS run: for any $u,v \in V$ if $u.d>v.d$ then $u.d − v.d ≥ δ(u,v)$ $δ(u,v)$-distance of a shortest path (not necessarily unique) in ...
sasha's user avatar
  • 21
1 vote
0 answers
330 views

I'm looking for an efficient solution to the problem of tracking the number of connected components in a general graph under edge deletions. General connectivity algorithms like that from Holm, ...
frcatal1's user avatar

15 30 50 per page