Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem...

13
Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References

Transcript of Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem...

Page 1: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

Agenda:Problem statement

Graph Construction

Relation to graph problem

Special Property

Problem solution

References

Page 2: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

BAND WIDTH ALLOCATION USING GRAPH THEORY

GOVARDHANA SHRAVAN

Page 3: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

Problem Definition:A township has to be setup with few radio FM towers in a cost effective way where they have to setup with minimum number of frequency ranges and it has to be taken care that the neighbour intersecting tower should have different frequency. We have to design a problem such that the adjacent towers should not collide with the frequency

Page 4: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

1

2

53

4

Page 5: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

1

5

4

2

3

Page 6: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

Graph construction:1

2

4

35

Page 7: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

Relation to a graph problem:

In the given problem let us represent the graph to be a chordal graph.

G = (V,E) is a finite undirected graph with vertex set V and edge set E, |V| =

n,

A simple Graph G is triangulated if every cycle of length > 3 has an edge joining 2 nonadjacent vertices of the cycle. The edge is called a chord, and triangulated graphs are also called chordal graphs.

Page 8: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

Special property: A perfect vertex elimination scheme of a graph G is an ordering {v1, v2, v3, ..., v n } such that for 1 ≤ i ≤ n-1, vi is a simplicial vertex of the subgraph of G induced by {vi, vi+1, vi+2, ..., v n }. It is also called a perfect scheme.

A perfect elimination ordering in a graph is an ordering of the vertices of the graph such that, for each vertex v, v and the neighbors of v that occur after v in the order form a clique. A graph is chordal if and only if it has a perfect elimination ordering

Page 9: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

Problem solution:

For the graph with perfect elimination order, we use coloring property in order to find the solution.The vertices of the graph are colored in such a way that no two adjacent vertices are of same color. The vertex A is colored with green color. So if then the vertices 2,3,4 are adjacent to vertex 1 as well as each other so they are colored blue, red and black respectievely. Then the vertex 5 is colored again with either green or black so that minimum number of colors are used.In our graph 4 colors are used. So minimum number of frequencies required to setup for the township are 4.

Page 10: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

Chromatic number = 4

1

5

4

3

2

Page 11: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

General solution:

In a paper presented by A. Graf, M. Stumpf, and G. Weibenfels on coloring unit disk graphs, UD graphs are the intersection graphs of equal sized disks in plane. Coloring of UD graph problems arise in the study of channel assignment problem in broadcast networks. It is shown that coloring a UD graph remains NP-complete for any fixed number of colors k ≥ 3. furthermore, a new 3-approximation algorithm for the problem is presented which is based on network flow and matching techniques.

Page 13: Agenda: Problem statement Graph Construction Relation to graph problem Special Property Problem solution References.

Queries?