Network Optimization
eBook - ePub

Network Optimization

  1. 256 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Network Optimization

About this book

Problems in network optimization arise in all areas of technology and industrial management. The topic of network flows has applications in diverse fields such as chemistry, engineering, management science, scheduling and transportation, to name a few. Network Optimization introduces the subject to undergraduate and graduate students in computer science, mathematics and operations research. The focus is mainly on developing the mathematical underpinnings of the techniques that make it possible to solve the several optimization problems covered in the text. The text discusses such topics as optimal branching problems, transshipment problems, shortest path problems, minimum cost flow problems, maximum flow problems, matching in bipartite and nonbipartite graphs and many applications to combinatorics. Also included is a large number of exercises.

Frequently asked questions

Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
No, books cannot be downloaded as external files, such as PDFs, for use outside of Perlego. However, you can download books within the Perlego app for offline reading on mobile or tablet. Learn more here.
Perlego offers two plans: Essential and Complete
  • Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
  • Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Both plans are available with monthly, semester, or annual billing cycles.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Yes, you can access Network Optimization by V. Balakrishnan in PDF and/or ePUB format, as well as other popular books in Mathematics & Applied Mathematics. We have over one million books available in our catalogue for you to explore.

Information

Publisher
CRC Press
Year
2019
Print ISBN
9780412556708
eBook ISBN
9781000723083

1

Trees, arborescences and branchings

1.1 SOME GRAPH THEORY CONCEPTS

Graphs and digraphs

A graph G = (V, E) consists of a finite nonempty set V and a collection E of unordered pairs from V (i.e. two-element subsets of V). Every element in V is called a vertex of the graph, and each unordered pair in E is called an edge of the graph. The edge e = {x, y} is an edge between the two vertices x and y which is incident to both x and y. Two vertices are adjacent to each other if there is an edge between them: the edge in that case is said to join the two vertices. Two or more edges that join the same pair of vertices are called parallel edges. A graph without any parallel edges is a simple graph, in which case the collection E is a set. Otherwise G is multigraph. A graph G′ is a subgraph of the graph G if every vertex of G′ is a vertex of G and every edge of G′ is an edge of G.
A directed graph or digraph consists of a finite set V of vertices and a collection A of ordered pairs from V called the arcs of the digraph. The digraph is a simple digraph if A is a set. If a = (x, y) is an arc, then a is an arc from the vertex x to the vertex y and is incident (adjacent) from x and incident (adjacent) to y. Two vertices are nonadjacent if there is no arc from one to the other. The underlying graph G of a digraph D is the graph G obtained from D by replacing each arc (x, y) by an edge {x, y}.
In this book, unless otherwise mentioned, all graphs are simple graphs and all digraphs are simple digraphs.
If we associate one or more real numbers with each edge (or arc) of a graph (or a digraph), the resulting structure is known as a weighted graph or a network.

Connectivity

A path between vertex x1 and vertex xr in a graph is a sequence x1, e1, x2, e2, x3, e3,…, er − 1, xr where x1, x2, x3,… are vertices and ek is the edge between xk− 1 and xk for k = 1,2,…, r. This path is represented as 〈 x1, x2, x3, …,xr〉 or as x1x2x3 —⋯—xr without mentioning the edges explicitly. If x1 = xr it is a closed path. It is a simple path between x1 and xr if x1, x2,…, xr are distinct. A circuit in a graph is a closed path in which the edges are all distinct. A cycle is a circuit in which the vertices are all distinct. Obviously every cycle is a circuit. A cycle with k vertices (k ⩾ 3) has k edges and is called an even cycle if k is even. Otherwise it is an odd cycle.
Two vertices x and y in a graph are connected to each other if there is a path between them. A graph is a connected graph if there is a path between every pair of vertices in it. Otherwise it is a disconnected graph. A connected subgraph H of the graph G is called a component of G if there is no connected subgraph H′ (other than H) such that H is a subgraph of H′.
If G = (V, E) and E = E′∪ {e}, then G= (V, E′) is the subgraph of G obtained from G by deleting the edge e from G. An edge e in a connected graph G is a bridge if its deletion from G yields a disconnected subgraph.
A directed path from a vertex x1 to a vertex xr in a digraph is a sequence x1, a1, x2, a2,, ar − 1, xr in which the xi are vertices and ai is the arc from xi to xi + 1, where i = 1,2,…,r − 1. This path may be represented as x1x2→ …→xr. This is a closed directed path if x1 = xr. A simple directed path from x to y is a directed path in which all the vertices are distinct. A directed circuit is a closed directed path with distinct arcs, and a directed cycle is a closed directed path with distinct vertices. Two vertices x and y in a digraph form a strongly connected pair if there is a directed path from x to y and a directed path from y to x. A digraph is a strongly connected digraph if every pair of vertices in the digraph is a strongly connected pair. A digraph is weakly connected if its underlying graph (multigraph) is connected.
A simple path in a graph is called a Hamiltonian path if it passes through every vertex of the graph. A closed Hamiltonian path is a Hamiltonian cycle. An Eulerian circuit in a graph is a circuit which contains every edge of the graph. The definitions in the case of digraphs are analogous.

Bipartite graphs and complete graphs

If the set V of vertices of a graph G = (V, E) is partitioned into two subsets X and Y such that every edge in E is between some vertex in X and some vertex in Y, then the graph is called a bipartite graph and is denoted by G = (X, Y, E).
Theorem 1.1
...

Table of contents

  1. Cover
  2. Title Page
  3. Dedication Page
  4. Copyright Page
  5. Table of Contents
  6. Preface
  7. 1. Trees, arborescences and branchings
  8. 2. Transshipment problems
  9. 3. Shortest path problems
  10. 4. Minimum cost flow problems
  11. 5. Matchings in graphs
  12. Further reading
  13. References
  14. Solutions to selected problems
  15. Index