What is the application of Graphs?
What are the Graphs mean in this chapter?
List out the 2 types of graphs
Fill in the blank and describe G = ( _ , _ )
What does Undirected Graph have?
What is the definition of Simple Graph?
A → B → C
What edges that Multigraph have than Simple graphs?
A → B
A ← B
What edges that Pseudograph have to be called as Pseudographs? ( 2 )
⋂
A
When the graph is Simple Directed Graph?
2 Line going to the same direction
When the graph is Directed Multigraph?
What does Vertices represented in?
What does Edges represented in?
Use both Vertices and Edges to create a graph
What is Adjacent?
Node 1 and 2 are adjacent because they are connected
Node 2 and 3 are not adjacent because they are not connected by edge
It’s about a direct connection
Adjacent nodes are “next to” each other
What is Incident?
Edge e1 is incident to 1 and 2
Edge e2 is incident to 1 and 3
Node 1 is incident to e1 and e2
Node 3 is incident to e2
*It’s about an edge “touching” or being connected to a node at its end**
An incident edge “ends at” a node
What is a degree?
Calculate degree below:
1. A → B
→ C
→ D
2. ⋂ ( Loop )
A
What is degree 0 called?
What is in-degree? And list out the terminology
What is out-degree? And list out the terminology
Why does the loop at a vertex contributes 2 in degree?
Undirected
- Degree
Directed
- In-Degree
- Out-Degree
What does Handshaking Theorem calculates in Undirected Graph?
How many edges are there in a graph with 10 vertices each of degree six
10 x 6 = 2e
60 = 2e
e = 30
Total Degree = 10 x 6 since each vertices has 6 degree ( 6 + 6 + 6 + … + 6 = 60 )
How many edges are there in a graph with 5 vertices each of degree 3?
5 x 3 = 2e
15 = 2e
e = 7.5
∴ Graph doesn’t exist
Draw a simple undirected graph whose degree sequence is
1. ( 1 , 1 , 2 , 2 , 4 )
2 ———— 2
\ /
\ /
\ /
1——4——-1
1 + 2 + 2 + 1 + 4 = 2e
10 = 2e
e = 5
Draw the most number of edges first ( 4 in this question ), then extend it