• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/46

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

46 Cards in this Set

  • Front
  • Back

an edge associated to a set {u, v}, where u
and v are vertices

undirected edge

an edge associated to an ordered pair (u, v),
where u and v are vertices

directed edge

distinct edges connecting the same vertices

multiple edges

an edge connecting a vertex with itself

loop

an undirected graph with no multiple edges or loops

simple graph

an undirected graph that may contain multiple edges but no loops

multigraph

and undirected graph that may contain multiple edges and loops

pseudograph

a set of vertices together with a set of directed edges each of which is associated with an order pair of vertices

directed graph

a graph with directed edges that may contain multiple directed edges

directed multigraph

a directed graph without loops or multiple directed edges

simple directed graph

adjacent

two vertices are adjacent if there is an edge between them

incident

an edge is incident with a vertex if the vertex is an endpoint of that edge

deg v(degree of the vertex v in an undirected graph)

the number of edges incident with v with loops counted twice

deg = 2*|E|

deg v-

edges coming in

deg v+

edges going out

how many vertices does Kn have?

n vertices

how many edges does Kn have?

n(n-1)/2

how many vertices does Cn have?

n

how many edges does Cn have?

n

how many vertices does Wn have?

n+1

how many edges does Wn have?

2n

how many vertices does Km,n have?

m+n

how many edges does km,n have?

m*n

How many vertices does Qn have?

2^n

How many edges does Qn have?

n*2^(n-1)

For which values of n is Kn bipartite?

1 or 2

For which values of n is Cn bipartite?

even

For which values of n is Wn bipartite?

none

For which values of n is Qn bipartite?

all values of n

Let G = (V, E) be a graph.


A sequence of vertices v0, v1, . . . , vn in V
such that {vi−1, vi} ∈ E for i = 1, 2, . . . n is:

A path

A path where v0 = vn is called a

circuit

A path of length n is a path with

n edges

A path is simple if

no vertex or edge is repeated


(with the exception of the first and last vertex).

A simple path which is also a circuit is called a

cycle

A simple graph is called connected if

there is a path between any two distinct vertices

If G is a connected graph, then there is a

simple path between every pair of distinct points.

The maximally connected subgraphs of a graph G are called:

the connected components of G

If one can remove a vertex and all edges incident to it and produce a graph with more connected components than the original graph, then we call that vertex a

cut vertex

A graph without cut vertices is called

non-separable

If one can remove an edge and produce a graph with more connected components than the original graph, then we call that edge

a cut edge

A connected multigraph has an Euler path (which is not an Euler
circuit) if and only if it has exactly two vertices of

odd degree

A connected multigraph has an Euler circuit if and only if each of
its vertices has

an even degree

A Euler path in a multigraph G is a path that traverses every edge
exactly

once

An Euler path which is also a circuit is called an
Euler

circuit

A _______________ is a simple undirected graph in which every pair of distinct vertices is connected by a unique edge

complete graph

If two simple graphs G1 = (V1, E1) and G2 = (V2, E2) are
isomorphic, then the following are true:

Same number of vertices


Same number of edges


Corresponding vertices have same degree


If one is bipartite so is the other


If one is a complete graph so is the other


If one is a complete bipartite so is the other


If one has Cn cycles then so does the other.