Navigation
  • Home
  • Recent
  • Most Active
  • Popular
  • Blog
  • Credits
  • RSS
  •   Interaction
  • Register
  • Statistics
  •   Help
  • Suggestions
  • Contact Us
  • How to Edit
  • Help



  • [Edit]


    In the mathematical field of graph theory, a bipartite graph is a special graph where the set of vertices can be divided into two disjoint sets U and V such that no edge has both end-points in the same set.

        Bipartite graph
            Intuitive Definition
            Mathematical Definition
            Applications
            Examples
            Properties
            See also

    top

    Intuitive Definition

    The best way to think of a bipartite graph is one whose nodes can be colored red and blue such that no edge exists between like colors. For example, this cannot be done with a fully connected graph with 3 vertices (a triangle). (If the first node is colored red and the second one is colored blue, what happens to the third?)

    top

    Mathematical Definition

    A simple undirected graph G
    = (V, E) is called bipartite if there exists a partition of the vertex set V = V_1 cup V_2 so that both V_1 and V_2 are independent sets. One often writes G
    = (V_1 + V_2, E) to denote a bipartite graph whose partition has the parts V_1 and V_2. If |V_1| = |V_2|, that is, if the number of elements in V_1 is equal to the number of elements in V_2, then G is called a balanced bipartite graph.


    top

    Applications

    Bipartite graphs are useful for modelling matching problems. An example of bipartite graph is a job matching problem. Suppose
    we have a set of people P and a set of jobs J, with not all people suitable for all jobs. We can model this as a graph with P + J the set of vertices. If a person p_i is suitable for a certain job j_i there is an edge between p_i and j_i in the graph. The marriage theorem provides a characterization of bipartite graphs which allow perfect matchings.

    Bipartite graphs are extensively used in modern Coding theory, especially to decode codewords received from the channel. Factor graphs and Tanner graphs are examples of this.

    In computer science, a Petri net is a mathematical modelling tool used in analysis and simulations of concurrent systems.
    A system is modelled as a bipartite directed graph with two sets of nodes: A set of "place" nodes that contain resources, and a set of "event" nodes which generate and/or consume resources. There are additional constraints on the nodes and edges that constrain the behavior of the system. Petri nets utilize the properties of bipartite directed graphs and other properties to allow mathematical proofs of the behavior of systems while also allowing easy implementation of simulations of the system.

    top

    Examples

      every tree is bipartite
      cycle graphs with an even number of vertices are bipartite

    top

    Properties

      a graph is bipartite if and only if it is two colorable, (i.e. its chromatic number is 2).

    top

    See also

     
    Search more:
     

       
    Source Privacy License Download Contact Us Atlas
    Scientus.org Dictionary (Yet Another Wiki) RC : 1.39
    This article is licensed under the GNU Free Documentation License [copyleft]. It uses material from the Wikipedia article "Bipartite graph". link