Podcast
Questions and Answers
What is the sum of degrees of all vertices of a graph?
What is the sum of degrees of all vertices of a graph?
The sum of degrees of all vertices in a graph is twice the number of edges. This is known as the Handshaking Lemma.
What is the definition of a directed graph?
What is the definition of a directed graph?
A directed graph is a graph where every edge has a direction associated with it. This means that each edge has a starting vertex (tail) and an ending vertex (head), unlike undirected graphs where edges connect vertices without a specified direction.
Which of the following is NOT a valid type of walk in a graph?
Which of the following is NOT a valid type of walk in a graph?
Which of these descriptions correctly defines a cycle in a graph?
Which of these descriptions correctly defines a cycle in a graph?
Signup and view all the answers
Which of the following statements BEST describes the relationship between a subgraph and an induced subgraph?
Which of the following statements BEST describes the relationship between a subgraph and an induced subgraph?
Signup and view all the answers
What is the definition of the diameter of a connected graph?
What is the definition of the diameter of a connected graph?
Signup and view all the answers
What is the definition of a geodesic in a graph?
What is the definition of a geodesic in a graph?
Signup and view all the answers
Signup and view all the answers
Flashcards
Graph
Graph
A graph G = (V, E) consists of vertices V and edges E.
Vertices
Vertices
The finite set of points in a graph, represented as V.
Edges
Edges
The finite set of connections between vertices in a graph, represented as E.
Order of a Graph
Order of a Graph
Signup and view all the flashcards
Size of a Graph
Size of a Graph
Signup and view all the flashcards
Adjacent Vertices
Adjacent Vertices
Signup and view all the flashcards
Incident Edges
Incident Edges
Signup and view all the flashcards
Degree of a Vertex
Degree of a Vertex
Signup and view all the flashcards
Sum of Degrees
Sum of Degrees
Signup and view all the flashcards
Directed Graph
Directed Graph
Signup and view all the flashcards
Undirected Graph
Undirected Graph
Signup and view all the flashcards
Walk
Walk
Signup and view all the flashcards
Trail
Trail
Signup and view all the flashcards
Path
Path
Signup and view all the flashcards
Circuit
Circuit
Signup and view all the flashcards
Cycle
Cycle
Signup and view all the flashcards
Odd Cycle
Odd Cycle
Signup and view all the flashcards
Even Cycle
Even Cycle
Signup and view all the flashcards
Connected Graph
Connected Graph
Signup and view all the flashcards
Subgraph
Subgraph
Signup and view all the flashcards
Proper Subgraph
Proper Subgraph
Signup and view all the flashcards
Induced Subgraph
Induced Subgraph
Signup and view all the flashcards
Geodesic
Geodesic
Signup and view all the flashcards
Distance Between Vertices
Distance Between Vertices
Signup and view all the flashcards
Diameter of Graph
Diameter of Graph
Signup and view all the flashcards
Theorem 1.6
Theorem 1.6
Signup and view all the flashcards
Circuit Properties
Circuit Properties
Signup and view all the flashcards
Adjacent Vertices Properties
Adjacent Vertices Properties
Signup and view all the flashcards
Signup and view all the flashcards
Study Notes
Math 428 - Graphs and Graph Models
- Graphs are represented as ordered pairs G = (V, E). V is a finite, non-empty set of vertices, and E is a finite set of edges. Edges are defined by connected pairs of vertices.
- The order (n) of a graph is the number of vertices. The size (m) is the number of edges.
- Vertices are adjacent if they are connected by an edge.
- An edge (a,b) is incident to vertices a and b.
- The degree of vertex u (deg(u)) is the number of vertices adjacent to u.
Handshaking Lemma
- For any graph, the sum of the degrees of all vertices is equal to twice the number of edges. Mathematically, ∑ deg(u) = 2m, where the sum is taken over all vertices in the graph.
Types of Graphs
- Directed graph: Edges have a direction.
- Undirected graph: Edges do not have a direction.
Walks, Trails, Paths, Circuits, and Cycles
- A walk is a sequence of vertices where consecutive vertices are adjacent. Edges can be repeated.
- A trail is a walk where no edges are repeated.
- A path is a walk where no vertices are repeated.
- A circuit is a closed trail with length 3 or more.
- A cycle is a circuit where no vertex repeats except the first and last vertex. Odd cycles have odd length, and even cycles have even length.
Determining Walk Type
- Applying the definitions above, determine if given walks are paths, trails, circuits, and/or cycles.
Subgraphs
- A subgraph V* = (V*, E*) of a graph G = (V, E) is a graph where V* is a subset of V and E* is a subset of E.
- A subgraph G* is a proper subgraph if V* is a strict subset of V or E* is a strict subset of E (i.e., not all vertices or edges are included).
- An induced subgraph F of G includes all edges (u,v) of G, where u and v are vertices in F.
Connected Graphs
- A connected graph is a graph where every two vertices are connected by some path. A disconnected graph has more than one component.
Distance and Diameter
- The distance between vertices u and v is the smallest length of any path from u to v. This is denoted by d(u,v).
- The diameter of a connected graph G (diam(G)) is the greatest distance between any two vertices in G.
Geodesic
- A u-v geodesic is a u-v path of length d(u,v).
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Related Documents
Description
Explore the fundamental concepts of Graph Theory in this Math 428 quiz. Topics include the representation of graphs, the Handshaking Lemma, and the definitions of walks, trails, paths, circuits, and cycles. Test your understanding of directed and undirected graphs and their properties.