Advanced Algorithms and Complexity Coursera Quiz Answers

All Weeks Advanced Algorithms and Complexity Coursera Quiz Answers

Advanced Algorithms and Complexity Coursera Quiz Answers

Week 1: Flow Algorithms

Q1. Which vertices are in the minimum S-T cut in the network below?

  • A
  • B
  • C
  • D
  • E
  • S
  • T

Q2. What is the augmenting path that will be used by the Edmonds-Karp algorithm to increase the flow given below?

  • S-A-C-T
  • S-B-A-C-D-T
  • S-B-D-C-T
  • S-B-A-C-T
  • S-B-T

Q3. Which of the statements below is true?

  • The sum of the capacities of the edges of a network equals the sum of the capacities of the edges of any residual network.
  • The Ford-Fulkerson algorithms runs in polynomial time on graphs with unit edge capacities.
  • The Edmonds-Karp algorithm is always faster than the Ford-Fulkerson algorithm.

Q4. What is the size of the maximum matching of the following graph?

Answers: 4

Q5. Consider the image segmentation problem on a picture that is given by an n by n grid of pixels. Suppose that separation penalties are imposed only for adjacent pairs of pixels. If we use the Edmonds-Karp algorithm to solve this problem as described in class, the final runtime is O(n^a) for some a. What is the best such a?

Answer : 5

Week 2: Linear Programming Quiz

Q1. What is the minimum number of linear inequalities needed to define the figure pictured below?

Answer: 8

Q2. Given a solution to a linear program, one could try to show that it is optimal by finding a matching solution to the dual program. Which of the following theorems will make it easier to do so?

  • Separation of convex sets from outside points by hyperplanes.
  • Complementary slackness.
  • Polytopes achieve optimum values at vertices.

Q3. Which of the following statements are true?

  • A system of linear equations has a solution unless they can be combined in some combination to give the equation 0=1.
  • A system of linear equations has always 0, 1, or infinitely many solutions.
  • A system of n linear equations in n variables always has a unique solution.

Q4. Suppose that you are trying to solve the optimization problem:

Maximize v\cdot xv⋅x subject to Ax \geq bAx≥b for some A\in \mathbb{R}^{m\times n}A∈R
m×n
(i.e. trying to solve an optimization problem in nn variables with mm linear inequality constraints).

This problem can be reduced to running a solution finding algorithm on a different system of linear equations in kk variables. What is the smallest value of kk for which this can be done?

Preview will appear here…

Answers : K=0

Q5. What is the largest possible value of x+y achievable by pairs x,y of real numbers satisfying the constraints:

  • x <= 7
  • y <= 10
  • 2x+y <= 21
  • -x + 2y <= 12
  • 5x-y <= 30
Answers : 15

Week 3: NP-complete Problems

Q1. How many satisfying assignments does the following formula have?

(x1​∨x2​∨x3​)(x1​∨x2​)(x1​∨x2​)

Answers : 3

Q2. How many integer solutions does the following linear program have?

x1​≥0,x2​≥0,4x1​+3x2​≤12,3x1​+5x2​≤15

Answers : 10

Q3. Consider the following graph:

It has 6 different independent sets: empty set, {A}{A}, {B}{B}, {C}{C}, {A, C}{A,C}, {B, C}{B,C}.

How many different independent sets does the following graph have?

Answers : 7

Q4. In the 3-coloring problem, you are given an undirected graph and the goal is to assign one of three available colors to its vertices such that the ends of each edge of the graph receive different colors. This is clearly a search problem: given a graph and a coloring of its vertices, one can check in polynomial time whether there are only three different colors and that no edge is monochromatic. This problem is known to be NP-complete. Do we have a polynomial time algorithm for this problem?

  • This is an open problem.
  • No, this problem cannot be solved in polynomial time for sure.
  • Yes, this problem can be solved in polynomial time.

Q5. In the lectures, we constructed a reduction from 3-SAT to Independent Set. Now, we show the reverse reduction. For this, we are going to reduce Independent set to SAT. We can then use the fact that SAT reduces to 3-SAT.

In the Independent Set problem we are given a graph GG with nn vertices \{1,2,\dotsc,n\}{1,2,…,n} and a positive integer bb. Our goal is to check whether the graph has bb vertices \{u_1,u_2,\dotsc,u_b\} \subseteq \{1,2,\dotsc,n\}{u1​,u2​,…,ub​}⊆{1,2,…,n} with no edge between any pair of them. We are going to construct a CNF formula FF that is satisfiable if and only if the graph GG contains such an independent set. There will be bnbn Boolean variables: for 1 \le i \le b1≤ib and 1 \le j \le n1≤jn, x_{ij}=1xij​=1 if and only if the ii-th vertex of the required independent set is the jj-th vertex of the graph (that is, u_i=jui​=j).

We then introduce the following constraints:

  1. ui​ is equal to some vertex of the graph: for all 1 \le i \le b1≤ib, (x_{i1} \lor x_{i2} \lor \dotsb \lor x_{in})(xi1​∨xi2​∨⋯∨xin​);
  2. u_iui​ is equal to exactly one vertex of the graph: for all 1 \le i \le b1≤ib and all 1 \le j \neq j’ \le n1≤j​=j′≤n, (\overline x_{ij} \lor \overline x_{ij’})(xij​∨xij′​);
  3. u_i \neq u_{i’}ui​​=ui′​: for all 1 \le i \neq i’ \le b1≤i​=i′≤b and all 1 \le j \le n1≤jn, (\overline x_{ij} \lor \overline x_{i’j})(xij​∨xij​);
  4. no two vertices from the independent set are joined by an edge: for all 1 \le i\neq i’ \le b1≤i​=i′≤b and all \{j,j’\} \in E(G){j,j′}∈E(G), (\overline x_{ij} \lor \overline x_{i’j’})(xij​∨xij′​)

The resulting formula is satisfiable if and only if the initial graph has an independent set of size

Is this reduction correct?

  • No, it is not correct, because it is not a polynomial time reduction.
  • No, it is not correct, because for a graph that does not have an independent set of size bb it might produce an a satisfiable formula.
  • Yes, the reduction is correct.
  • No, it is not correct, because it might produce an unsatisfiable formula for a graph that has an independent set of size bb.

Q6. How many satisfying assignments does the following circuit have?Advanced Algorithms and Complexity Coursera Quiz Answers

Answers : 3

Quiz 4: Coping with NP-completeness

Q1. What is the weight of a minimum traveling salesman cycle in the following graph?Advanced Algorithms and Complexity Coursera Quiz Answers

Answers: 110

Q2. Recall that the dynamic programming algorithm for the traveling salesman problem uses O(n^2 \cdot 2^n)O(n2⋅2n) time and O(n \cdot 2^n)O(n⋅2n) space (as usual, nn is the number of vertices). You are going to run this algorithm on a graph with 50 vertices. Roughly how much space is needed for this assuming that each cell of the dynamic programming table occupies 8 bytes? (See How much is 1 megabyte, gigabyte, etc?)

  • Kilobyte
  • Megabyte
  • Gigabyte
  • Terabyte
  • Petabyte
  • Exabyte
  • Zettabyte
  • Yottabyte

Q3. What is the maximum size of an independent set in the following tree?Advanced Algorithms and Complexity Coursera Quiz Answers

Answers : 10

Week 5: Heavy Hitters

Q1. What is the set of top 2 most frequent items in the following stream?

125311244333

  • 1 2
  • 1 3
  • 4 5

Q2. Suppose that we would like to use Chebyshev’s inequality to bound \operatorname{Prob}[|X|\geq 3]Prob[∣X∣≥3], where XX is a normally distributed random variable with unit variance. Chevyshev’s inequality gives

  • Prob[∣X∣≥3]≤1/3
  • Chebyshev’s inequality does not apply to this setting
  • Prob[∣X∣≥3]≤1/9

Q3. Suppose that we would like to use Chebyshev’s inequality to bound \operatorname{Prob}[|X|\geq 3]Prob[∣X∣≥3], where XX is a random variable with the Cauchy distribution, i.e. the p.d.f. of XX is \frac{1}{\pi(1+x^2)}π(1+x2)1​. Chevyshev’s inequality gives

  • Prob[∣X∣≥3]≤1/3
  • Chebyshev’s inequality does not apply to this setting
  • Prob[∣X∣≥3]≤1/9

Q4. Suppose that the stream contains items 1 with frequency N^{\alpha} for a constant \alpha<1/2α<1/2, and all other elements appear in the stream exactly once. How much space suffices for CountSketch to find the most frequent element in this stream?

  • O(n1−2αlogn)
  • O(logn)
  • O(n1−4α2logn)

Q5. Suppose that we would like to use Markov’s inequality to bound \operatorname{Prob}[X\geq 3]Prob[X≥3], where XX is a normally distributed random variable with unit variance. Markov’s inequality gives

  • Prob[X≥3]≤1/9
  • Prob[X≥3]≤1/3
  • Markov’s inequality does not apply to this setting

Get All Course Quiz Answers of Entrepreneurship Specialization

Entrepreneurship 1: Developing the Opportunity Quiz Answers

Entrepreneurship 2: Launching your Start-Up Quiz Answers

Entrepreneurship 3: Growth Strategies Coursera Quiz Answers

Entrepreneurship 4: Financing and Profitability Quiz Answers

Team Networking Funda
Team Networking Funda

We are Team Networking Funda, a group of passionate authors and networking enthusiasts committed to sharing our expertise and experiences in networking and team building. With backgrounds in Data Science, Information Technology, Health, and Business Marketing, we bring diverse perspectives and insights to help you navigate the challenges and opportunities of professional networking and teamwork.

Leave a Reply

Your email address will not be published. Required fields are marked *