Determine the minimal spanning tree in graph

Assignment Help Mathematics
Reference no: EM13541583

PART A

Each question is worth 2 points.  Choose True of False as the most appropriate answer.

1. The degree(v) of a pendant vertex may be either one or zero. 

     T  or  F

2. A tree is any connected, undirected graph with an odd number of vertices. 

     T  or  F

3. A simple graph is an undirected graph with single edges and no loops. 

     T  or  F

4. A multigraph is an directed graph with multiple edges and no loops. 

     T  or  F

5. Consider the following directed relations on {1, 2, 3, 4} :

           R = {(1,1), (2,2), (3,3), (4,4)}

           T = {1,3), (2,1), (2,3)}

           R is reflexive and T is transitive

     T  or  F

6. Set A is divided into several disjoint partitions.  The UNION of these partitions is the original set.

     T  or  F

7. A W22 has 23 vertices and 44 edges. 

     T  or  F

8. The root of any tree must be at either level 1 (one) or level

   0 (zero). 

     T  or  F

9. A leaf is a vertex with no children. 

     T  or  F

10. A weighted graph has a value assigned to each vertex. 

     T  or  F

11. The minimum spanning tree of a weighted graph is a graph

    That is drawn with the length of each edge roughly proportional to the value assigned to each edge. 

     T  or  F

12. Siblings must have the same parent but not necessarily the same level. 

     T  or  F

13. Since Prim's and Kruskal's algorithms generate the minimum spanning tree of a given weighted graph, each algorithm would always provide the same MST total length. 

     T  or  F

14. Bipartite graph, Kn,m, has (n+m) vertices and a maximum of (n*m) edges. 

     T  or  F

PART B

Each question is worth 6 points unless noted otherwise.  Provide your interim solutions to all problems.

Partial credit will be given for incorrect solutions if the process was shown and I can identify the error.  Problems with incorrect answers and no intermediate work will be graded as zero.

Problems that require a particular approach - such as Prim and Kruskal - need a reasonable amount of intermediate work to identify and verify the solution process.

1. Form a binary search tree from the words of the following sentence using alphabetical order and inserting words as they appear in the sentence:

   This test is easier than the last because it is much shorter.

2. The expression below is in postfix expression form. 

   Determine its numerical value.

     { -2,  5,  +,  4,  1,  /,  3,  /,  * }

3. Determine if Graph Z is bipartite.  Defend your answer.

4. Define a postorder and preorder traversal of the following:

         [(-3y + 2) / 4 ] - [(y - 3) * 5) ]

       a. postorder: 

       b. preorder:

5. Determine the Minimal Spanning Tree in Graph X using Kruskal's Algorithm.  All edges must be labeled from lower to higher named vertices, e.g., from "c" to "d" but not from "d" to "c".

6. Given the coding scheme:

     a:001, b:0001, e:1, r:0000, s: 0100, t:011, x:01010

   Find the words represented by:

   a. 001010101

   b. 0001110000

   c. 0010000011

   d. 01110100011

   e. What is the best compression ratio (versus ASCII 8-bit encoding) of the words in a through d above?

Defend your answer.

7. Determine the Minimum Spanning Tree in Graph Y. Use Prim's Algorithm in which all edges must be labeled from lower to higher named vertices, e.g., from "c" to "d" but not from "d" to "c"

8. Construct a postorder, inorder and preorder transversal of Tree T.

    a. postorder:  

    b. inorder: 

    c: preorder:

9. Are Graphs G and H isomorphic?  Defend your answer.

10. Suppose that a full 37-ary tree has 4 internal vertices.  How many leaves does it have?  Defend your answer.

11. What is the shortest path in Graph S between "a" and "z".  Use Dijkstra's algorithm.

     a. the shortest path is:

     b. the shortest distance between  "a"  and  "z"  is:

12. A tree has 49 edges.  How many vertices does it have?

Develop the Basis Step of the algorithm to determine the number of terms (cardinality) of the union of n mutually intersecting sets.  Show your work.

For example, the cardinality of the union of three mutually intersecting sets is

C(3,1) + C(3,2) + C(3,3) = 3+3+1 = 7. 

                     GRAPH  INFORMATION

Graph G 

Initially draw a hexagon with vertices a-b-d-f-e-c-a. Connect vertices a to f; b to c; d to e. 

        b           d 

 

a                          f 

 

        c           e 

Graph H 

Initially draw a hexagon with vertices u-v-w-x-y-z-u. Connect vertices u to x; v to y; w to z. There is no connection in the center.

                 u 

 

    z                         v 

 

 

    y                         w 

 

                 x

Graph S 

Initially draw a hexagon with vertices a-b-d-z-e-c-a. 

Connect vertices b to c; b to e; c to d; d to e.

Edge values are: 

  a-b = 3; a-c = 4; 

  b-c = 1; b-d = 5; b-e = 5 

  c-d = 2; c-e = 4; 

  d-e = 2; d-z = 5; e-z = 3. 

 

             b            d 

 

    a                              z 

 

             c            e 

Tree T 

Construct a Tree with 

 vertex a at level 0; 

 vertices b, c and d at level 1; 

 vertices e, f, i, j, and k at level 2; 

 vertices g, h, l and m at level 3. 

Connect vertex a to b, a to c, and a to d. 

Connect vertex b to e and f. 

Connect vertex c (no further connection). 

Connect vertex d to i, j and k.

Connect vertex e (no further connection).

Connect vertex f (no further connection).  

Connect vertex i to h.

Connect vertex j (no further connection).

Connect vertex k to l and m.

Connect vertex g, h, l and m (no further connection).

                 a 

 

       b         c         d 

 

    e     f           i    j    k 

 

          g           h        l  m

Graph X 

Initially draw a rectangle with vertices a-c-e-z-d-b-a. 

Connect vertices a to d; c to d; d to e. 

Edge values are:  

  a-b = 1; a-c = 4; a-d =3; 

  b-d = 3; c-d = 2; c-e = 2; 

  d-e = 2; d-z = 2; e-z = 2. 

  a         c        e 

  b         d        z 

Graph Y 

Draw a hexagon with vertices a-b-d-z-e-c-a. 

Connect vertices b to c; b to z; d to e. 

Edge values are:

  a-b = 3; a-c = 3;

  b-c = 2; b-d = 5; b-z = 4;

  c-e = 5;

  d-e = 1; d-z = 7; e-z = 3. 

 

             b            d 

 

    a                              z 

 

             c            e 

Graph Z

Graph Z is a five-pointed figure.

Connect a to b, a to c and a to e.

Connect b to d.

Connect c to d.

Connect d to e.

 

           b            c

   a                             d

                 e

Verified Expert

Reference no: EM13541583

Questions Cloud

Explain the role of the kinetoscope : Explain the role of the Kinetoscope during the period of cinema's invention. How did the Kinetoscope modify the capabilities of earlier camera and projection systems?
Depict the newman projections for all the staggered : Draw the newman projections for all the staggered and eclipsed rotamers for 2-chloro-3-methylbutane down the c2-c3 bond and indicate which one is the highest energy rotamer, and which one is the lowest energy rotamer (assume a methyl group is bigg..
What is the magnitude of the gravitational torque : The picture below shows a model of a human leg with a heavy weight on the ankle. It represents a person lying on his back doing leg-lifts to exercise the quadriceps. What is the magnitude of the gravitational torque
Explain the sample at constant temperature and pressure : Which of the following would produce the greatest increase in the volume of a gas sample: a. doubling the amount of gas in the sample at constant temperature and pressure, or b. raising the temperature from 244 degrees C to 1100 degrees C.
Determine the minimal spanning tree in graph : Determine the Minimal Spanning Tree in Graph X using Kruskal's Algorithm.  All edges must be labeled from lower to higher named vertices,
State what is the final volume of the gas : The pressure on a sample of an ideal gas is increased from 715 mmHg to 3.55 atm at constant temperature. If the initial volume of the gas is 485 mL, what is the final volume of the gas
Evaluate the angular acceleration of the disk : A disc with a radius of 12cm and a mass of .4kg is free to rotate about an axle through its center. calculate the angular acceleration of the disk
Explain what is the final pressure of ammonia : If the volume of gasoline vapor and air at 1.00 atm of pressure is gradually decreased from 78.0 mL to 39.0 mL. What is the final pressure of ammonia if there is no chage in temperature
Gas on the bullet as the bullet travels the length of barrel : A 80-g bullet is fired from a rifle having a barrel 0.582 m long. Choose the origin to be at the location where the bullet begins to move. Then the force (in newtons) exerted by the expanding gas on the bullet is 14100 + 9100x - 24250x2, where x is i..

Reviews

Write a Review

Mathematics Questions & Answers

  Questions on ferris wheel

Prepare a Flexible Budget Gator Divers is a company that provides diving services such as underwater ship repairs to clients in the Tampa Bay area.

  Logistic map

This assignment has two question related to maths. Questions are related to bifurcation cascade and logistic map.

  Finding the probability of cards

This assignment has questions related to probabiltiy.

  Systems of ode

Find all the xed points, and study their stability and Draw the phase portrait of the system, as well as the graphs of the solutions in all relevant cases.

  Derive the boolean expression

Derive the Boolean Expression and construct the switching circuit for the truth table stated

  System of equations

Evaluate which equations are under-identified, just-identified, and over-identified.

  Linear programming problem

Linear programming problem consisting of only two constraints with one objective function.

  Find the natural domain

Find the natural domain of the given functions.

  Introduction to numerical methods

Compute the coecients of the polynomials using the term recurrence relation.

  Chart of the topological manifold

De?nition of smoothness of functions on a smooth manifold is chart independent and hence geometric.

  Mathematics in computing

Questions related on mathematics in computing.

  Complex problems

Complex problems

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd