Decision revision

Subdecks (2)

Cards (29)

  • a walk is a route along edges from one vertex to the next
  • a path is a walk in which no vertex is visited more than once
  • a trail is a walk in which no edge is visited more than once
  • a cycle is a walk in which the start and end vertex is the same and no vertex is visited more than once
  • a Hamiltonian cycle is a cycle that includes every vertex
  • the first-fit algorithm is done by
    1. Take the items in the order given
    2. Place items in the first available bins
  • the first-fit decreasing algorithm is done by
    1. sort the items into descending order
    2. apply first-fit algorithm
  • the full-bin algorithm is done by
    1. use combinations to fill bins
    2. apply first-fit algorithm
  • in an undirected graph the sum of the degrees of vertices is equal to 2 times the number of edges as a consequence the number of odd vertices must be even. This is the handshaking lemma
  • an isomorphic graph is a graph that shows the same information drawn differently
  • how to carry out kruskals
    1. order arcs into ascending order of weight
    2. select arc of least weight to start
    3. if no cycle accept
    4. if cycle reject
    5. repeat
  • how to carry out prims
    1. choose any vertex to start the tree
    2. select arc of least weight to join vertex
    3. repeat
  • an eulerian graph is a trail that includes every edge and starts and finishes at the same vertex, all the vertices are even
  • a semi-eularian graph is a trail that includes every edge but starts and finishes at different vertices, two odd vertices
  • to carry out route inspection
    1. identify any vertices with an odd degree
    2. consider all possible pairings
    3. select pairings with the least sum
    4. add a repeated arc between both pairs
  • how to formulate a linear programming problem
    1. define decision variables
    2. state objective
    3. write constraints as inequalities
  • on a linear programming graph the unshaded area is the feasible region
  • to find solutions with integer values test the last integer solution by the objective line then test the objective