answersLogoWhite

0


Best Answer

The term "cyclic graph" is not well-defined.

If you mean a graph that is not acyclic, then the answer is 3. That would be the union of a complete graph on 3 vertices and any number of isolated vertices.

If you mean a graph that is (isomorphic to) a cycle, then the answer is n.

If you are really asking the maximum number of edges, then that would be the triangle numbers such as n (n-1) /2.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many minimum edges in a Cyclic graph with n vertices?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

The minimum number of edges in a connected cyclic graph on n vertices is?

n-1


What is the significance of a minimum edge cover in graph theory and how does it impact the overall structure of a graph?

A minimum edge cover in graph theory is a set of edges that covers all the vertices in a graph with the fewest number of edges possible. It is significant because it helps identify the smallest number of edges needed to connect all the vertices in a graph. This impacts the overall structure of a graph by showing the essential connections between vertices and highlighting the relationships within the graph.


What is the role of the vertex cover greedy algorithm in optimizing the selection of vertices to form a minimum vertex cover in a graph?

The vertex cover greedy algorithm helps in selecting the minimum number of vertices in a graph to cover all edges. It works by choosing vertices that cover the most uncovered edges at each step, leading to an efficient way to find a minimum vertex cover.


The minimum number of edges in a connected graph on n vertices is?

n-1 (o-o-o-o-o)


Is the complete graph on 5 vertices planar?

No, the complete graph of 5 vertices is non planar. because we cant make any such complete graph which draw without cross over the edges . if there exist any crossing with respect to edges then the graph is non planar.Note:- a graph which contain minimum one edge from one vertex to another is called as complete graph...


Can there be a graph with 8 vertices and 29 edges?

Yes.


What is subgraph in given graph?

If all the vertices and edges of a graph A are in graph B then graph A is a sub graph of B.


What is a drawing graph?

A drawing of a graph or network diagram is a pictorial representation of the vertices and edges of a graph. This drawing should not be confused with the graph itself: very different layouts can correspond to the same graph. In the abstract, all that matters is which pairs of vertices are connected by edges.


How can the vertex cover problem be reduced to the set cover problem?

The vertex cover problem can be reduced to the set cover problem by representing each vertex in the graph as a set of edges incident to that vertex. This transformation allows us to find a minimum set of sets that cover all the edges in the graph, which is equivalent to finding a minimum set of vertices that cover all the edges in the graph.


What is the largest number of vertices in a graph with 35 edges if all vertices are of degree at least 3?

11......


What are parallel edges?

- Two or more edges that join the same pair of vertices in a graph. Also known as multiple edges.


What is the runtime complexity of Kruskal's algorithm for finding the minimum spanning tree of a graph?

The runtime complexity of Kruskal's algorithm is O(E log V), where E is the number of edges and V is the number of vertices in the graph.