M4_Graph Flashcards

1
Q

study of mathematical structures called graphs that are used to model pairwise relations between objects

A

graph theory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

solved the Königsberg bridge in 1735

A

Leonhard Euler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Applications of Graph Theory (At least one)

A

Computer networks
Distinguish between two chemical compounds with the same molecular formula but different structures
Solve shortest path problems between cities
Scheduling exams and assign channels to television stations
Car navigation system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Handshaking theorem

A

2e=Summation of edges and summation of degrees then multiply the sum

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

TYPE OF GRAPH
Consists of V, a nonempty set of vertices, and E, a set of unordered pairs of distinct elements of V called edges

U–W
|_/
|/
V

A

Simple (undirected) graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  • Consists of set of vertices V, set of Edges E and a function f from E to {{u,v} | u, v, V, u is not equal to v}
    • The edges e1 and e2 are called multiple or parallel edges if f(e1)=f(e2)
    • V={u,v,w}
      E= {e1, e2, e3}

U—-W
||__/
||_/
||/
V

A

Multigraph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  • Set of vertices V and set of Edges E, that are ordered pair elements of V (directed edges)
    • G(V,E)
    • V={u, v, w}
      E={(u,v), (v,w), (w,u)}

U–W
^__/
|_/
|/
_v
V

A

Directed Graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  • Graph with weights or costs assigned to its edges
A

Weighted Graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  • Consists of set of vertices V, set of Edges E and a function f from E to {{u,v}|u,v,V}
    • The edges e1 and e2 are multiple edges if f(e1)=f(e2)
    • V={u,v,w}
      E={e1, e2, e3, e4}
      U–W <]
      ^___/
      ||_/
      ||/
      _vv
      V
A

Directed Multigraph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
  • Consists of set of vertices V, set of Edges E and a function F from E to {{u,v}|u, v , I V}
    • LOOPS ARE ALLOWED
    • V={u,v,w}
      E= {e1, e2, e3, e4}
      U–W ]
      ||___/
      ||_/
      ||/
      V
A

Pseudograph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

SPECIAL GRAPH
- Of a Graph G (V,E) is a graph H=(W, F) where
W )_ V and F (_ E

A

Subgraph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
  • The union of two simple graphs G1=(V1, E1) and G2=(V2, E2) is the simple graph with vertex set V1 U V2 and edge set E1 U E2
    The union of G1 nad G2 is denoted by G1 U G2
A

Union U

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

simple graph that contains exactly one edge between each pair of distinct vertices

A

Complete Graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The___Cn, n>=3, consists of n vertices v1, v2, …, vn and edges {v1, v2}, {v2, v3}, …, {vn-1, vn}, {vn,v1}

A

cycle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q
  • When we add an additional vertex to the cycle Cn, and connect this new vertex to each of the n vertices in Cn by adding new edges
A

Wheel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q
  • Qn
    • Graph that has vertices representing the 2^n bit strings of length n
    • Two vertices are adjacent if and only of the bit strings that they represent differ in exactly one bit position
A

N-cube

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q
  • A simple graph is called this if its vertex set V can be partitioned into two disjoint nonempty set V1 and V2
    • Such that every edge in the graph connects a vertex in V1 with a vertes in V2
A

Barpartite Graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q
  • K m.n
    • The graph that has its vertex set partitioned into two subsets of m and n vertices
    • Two vertices are connected If and only if they are in different subsets
A

Complete Barpartite Graph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

the simple graphs G1 = (V1, E1) and G2 = (V2, E2) are *** if there is a bijection (an one-to-one and onto function) f from V1 to V2 with the property that a and b are adjacent in G1 if and only if f(a) and f(b) are adjacent in G2, for all a and b in V1

A

isomorphism

20
Q
  • represents the graph such that with the help of that matrix we can draw a graph. This matrix can be denoted as [AC] As in every matrix, there are also rows and columns in incidence matrix [AC].
    • ROWS: Number of vertex or nodes
    • COLUMN: number of edges or brances
A

Incidence Matrix

21
Q
  • a square matrix used to represent a finite graph
    • Represents whether the paor of vertices are adjacent or not
    • ROWS: vertices
    • COLULMNS: vertices
A

Adjacency Matrix

22
Q

a visual representation of edges and vertices

A

Graph

23
Q

the line between two boundaries

A

Edge

24
Q

a point where two or more lines meet

A

Vertex

25
Q

Simple graph that contains exactly one edge bertween each pair of distinct vertices

A

Complete Graph

26
Q

A vertex of degree 0

A

Isolated

27
Q

Describe a loop
No of degree (undirected):
No of degree (directed):
Number of edge:
No of adjacency (undirected):
No of adjacency(directed):

A

No of degree (undirected): 2
No of degree (directed):1
Number of edge:1
No of adjacency (undirected):2
No of adjacency(directed):1
Not isolated
Same initial and terminal vertex

28
Q

Degree one

A

Pendant

29
Q
  • Connected by a line in undirected
A

Adjacent or neighbors

30
Q

Number of edges incident with it
Determined by counting the lines that touch it
Denoted vy deg(v)

A

Degree

31
Q

Starting vertex in directed

A

Initial Vertex

32
Q

End vertex in directed

A

Terminal Vertices

33
Q

Describe the adjacency
U——>V

A

U is adjacent to V
V is adjacent to U

34
Q

When the arrow is pointing at V
V is the terminal

A

In-DEGREE or deg^-(v)

35
Q

The arrow is pointing away from v
V is the initial vertex

A

Out-degree or deg^+(v)

36
Q

Two vertices joined by an edge

A

Adjacent Vertices

37
Q

Two edges that intersects at a vertex

A

Adjacent edges

38
Q

Vertex of odd degree

A

Odd vertex

39
Q

Vertex of even degree

A

Even vertex

40
Q

sequence of vertices such that each vertex is adjacent to the next. In a path, each edge can be traveled only once.

A

path

41
Q

number of edges in that path

A

length of a path

42
Q

A path that starts and ends at the same vertex

A

circuit

43
Q

A graph is connected if any two vertices can be joined by a path. If this is not possible then the graph is disconnected.

A

connected

44
Q

The connected parts of a disconnected graph are called ____.

A

components

45
Q

It is an edge in a connected graph whose removal makes it disconnected

A

Bridge

46
Q

path that travels through every edge of the graph (once and only once)
- Loop and parallels are not counted

A

Euler Path

47
Q

circuit that travels through every edge of a graph
- Loop and parallels are not counted

A

Euler Circuit