Final Flashcards

1
Q

A vertex set 𝑉

A

A collection of points,vertices are dots,

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

An edge set 𝐸

A

A collection of unordered pairs of vertices representing connections between them
edges are lines connecting these dots.

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

A walk from vertex
𝑣1To 𝑣𝑛
​

A

is a sequence of edges

{V1,V2}{V2,V3},…{Vn-1,Vn}

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

A circuit is a walk where the start and end vertices are the same:

A

A circuit is a walk where the start and end vertices are the same:

V1=Vn

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

A path

A

is a walk in which no vertex is revisited

Vi/=Vj for all i and j

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

Cycle:

A

A cycle is a special type of circuit with these properties:
It starts and ends at the same vertex (𝑣
1
=
𝑣
𝑛
v
1
​
=v
n).

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

A walk vs A path

A

A walk may revisit vertices and edges, while a path cannot revisit vertices.

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

A circuit and a cycle

A

A circuit revisits the starting vertex and has a direction, while a cycle is undirected and only revisits the start/end vertex.

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

A path from x to y is a walk in G that has no repeated veritices

A

A path from x to y is a walk in G that has no repeated veritices

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

A trail from x to y is an open walk in G in which each edge appears no more than it multiplicity

A

A trail from x to y is an open walk in G in which each edge appears no more than it multiplicity

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

A circuit from x to x is a closed walk in G in which each edge appears no more than its multiplicity

A

A circuit from x to x is a closed walk in G in which each edge appears no more than its multiplicity

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

Euler Trail

A

Visit every edge exactly one, doesn’t necessarily start and end at the same vertex

The graph must be connected
Has exactly 2 vertices must have an odd degree

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

Euler circuit

A

Visit every edge once
Starts and ends at the same vertex
Graphs must be connected
Vertices have an even degree

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

Let G(V, E) be a multi-graph

A

G is a tree if G is connected and does not contain a cycle
G is a forest if G does not contain a cycle (every component of a forest is a tree)
A vertex of deg 1 is called a leaf or pendant vertex

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

If T=(V, E) is a tree with leaf v the T-v is a tree

A

If T=(V, E) is a tree with leaf v the T-v is a tree

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

If T=(V, E) is a tree and u, v∈ V are distinct, there is a unique path in T with ends u,v

A

If T=(V, E) is a tree and u, v∈ V are distinct, there is a unique path in T with ends u,v

17
Q

Main properties of tree

A

If T= (V, E) is a tree the |V|=|E|+1
If G=(V,E) is a forest with K trees then |V|=|E|+K

18
Q

If G=(V, E) satisfies|V|=|E|+1 then G must have a vertex of deg 0 or at least two degrees of 1

A

If G=(V, E) satisfies|V|=|E|+1 then G must have a vertex of deg 0 or at least two degrees of 1

19
Q

Every tree T=(V, E) with |V|>2 has at least 2 leaves

A

Every tree T=(V, E) with |V|>2 has at least 2 leaves

20
Q

Deg sum formla

A

Ξ£deg(V)=2.|E|

21
Q

Characterization of trees

let G=(V, E) be a multigraph

A
  1. G is connected and has no cycle
  2. G is connected and |V|=|E|+1
  3. G has no cycle and |V|=|E|+1
  4. There is a unique path between every pair of vertices in G
22
Q

Bipartite graph

A

if we can partition the vertices into 2 non-empty subset V1 and V2 such that

1) V1^V2=DNE
2) V1vV2=v
3) every edge in E is incident with one vertex in V1 and one vertex in V2

23
Q

Km,n

|V1|=n and |V2|=m

A

of edges = n.m

24
Q

How many edges are in a path on n vertices

A

n-1

25
Q

How many edges are in a cycle on n vertices

A

n

26
Q

How many edges are in Kn?

A

nC2

27
Q

How many edges are in Km,n?

A

n.m

28
Q

How many graphs are there with vertices {1,…n}?

A

We can choose from nC2 edgesβ€”->

29
Q

How many graphs have n vertices and m edges?

A

(nC2)Cm

30
Q

Let V1 and V2 be disjoint with |V1|=n1 and |V2|=n2

how many graphs have bipartition (V1, V2)?

A

2^(n1.n2)

31
Q

Let V1 and V2 be disjoint with |V1|=n1 and |V2|=n2

how many graphs have bipartition (V1, V2) with m edges?

A

(n1.n2) C m

32
Q

How many spanning subgraphs do Kn1, n2 have?

A

2^(n1.n2)

33
Q

How many spanning subgraphs do Kn1,n2 have exactly m edges?

A

(n1.n2) C m

34
Q

induced subgraph

A
35
Q

If G=(V, E) is a graph with |V|=n, how many induced subgraphs does G have?

A

Guess 2^n, correct!

An induced subgraph is determined by the vertex V’cC and 2 different V’ give different subgraphs.

of subsets V’ is a subset of V is indeed 2^n

36
Q
A