For finding minimum spanning trees, Kruskal's algorithm is:
Every graph with N vertices and N - 1 edges is a tree.
Use Kruskal's algorithm to find a minimum spanning tree of the given graph below. Draw the resulting spanning tree and list the edges in the order they are picked by Kruskal's algorithm.
Use Prim's algorithm, starting at H, to find a minimum spanning tree of the graph given above (Figure 2). Draw the resulting spanning tree and list the edges in the order they are picked by Prim's algorithm.
What is(are) the major difference(s) between the TSP (travelling salesman Problem) and the MST (minimum spanning tree problems). Make sure to discuss the differences between the algorithms that solve or attempt to solve these two types of problems.
If the Nth Fibonacci number is 46, 368 and the (N+2)th Fibonacci number is 121, 393, what is the (N + 4)th Fibonacci number?
A trash dumb grows by 31 tons of trash every month. Let PN represent the number of tons of trash at the end of the Nth month. Assuming the dump starts out with 500 tons, find P24.
Consider a population that grows according to the linear growth model. The starting population is P1 = 11, and the population in the twelfth generation is P12 = 77. What is P37?
The sum of the first 30 terms of the sequence 3 + 8 + 13 + 18 +
An amount of 1000 is deposited in a savings account that pays 8% interest compounded monthly. Assuming no deposits or withdrawals are made, how much money will be in the account after 5 years?:
Consider the geometric sequence with the first five terms 4, 12, 36, 108, 432, ; what is the sum of the first 13 terms?
Consider the logistic model given by PN+1 = r(1 - PN)PN. If the growth rate is 3.0 and P1 is 0.15 find P4.
A population of guinea pigs grows according to the following transition rule: PN = 2PN-1 + PN-2. The starting population is P1 = 3 and the population in the second generation is P2 = 5. Find P4.
Monthly payments on a $100,000 loan at 12% annual interest amortized over 20 years will be close to? (Hint: use the formula p = [B*I(1 + I)N]/[(1 + I)N -1]. Note that B stands for the money borrowed, I for the periodic interest rate, that is I = 1%, N for the number of payments, and p for the monthly payment.
A population grows according to the linear growth model. The starting population is P1 = 10 and the population grows at a rate of 7 per year.
Discuss the differences between linear, exponential and logistic growth models and give typical situation where each might be used.