Starting from:

$35

KRR- Assignment #1 Solved

For more detailed instructions, see:

https://canvas.uva.nl/courses/28686/assignments/307963

Exercise 1 . Consider the following puzzle called k-n-Queens. You are given positive integers n and k. The puzzle is played on an n × n chess board. You are to place at least k queens on this chess board in such a way that no two queens attack each other. Remember that in chess, a queen may take any number of steps, either horizontally, vertically, or diagonally.

In this assignment, you will provide an algorithm that for any given n and k, translates the puzzle to a propositional logic CNF formula ϕn,k such that the satisfying truth assignments of ϕn,k correspond one-to-one to the solutions of the puzzle (for this particular value of n and k). You will do this in two parts—by constructing two CNF formulas ψn,k and χn,k, such that ϕn,k = ψn,k ∧ χn,k and:

ψn,k expresses that no two placed queens may attack each other, and
χn,k expresses that at least k queens are placed on the n × n 
As a starting point: the formula that you construct contains propositional variables pi,j for i,j ∈ {1,...,n}, each of which indicates whether or not a queen is place on cell (i,j) of the chess board. Note that you may introduce additional propositional variables, besides these variables pi,j.

Explain how, given values for n and k, one can construct a CNF formula ψn,k whose satisfying truth assignments correspond one-to-one to placements of (any number of) queens on an n × n chess board, in a way that no two queens attack each other.
Be sure to explain how the possible placements of queens where no two queens attack each other correspond one-to-one to the satisfying truth assignments of ψn,k.

Show how one can construct a CNF formula χn,k that is satisfiable if and only if at least k variables pi,j are set to true. To be more precise, χn,k should have the property that for all truth assignments α to the variables pi,j it must hold that α can be extended to a satisfying assignment for χn,k if and only if α sets at least k variables pi,j to true.
The formula χn,k may contain additional propositional variables, besides the variables pi,j.

Do this in a way that ensures that χn,k consists of at most, say, 10 · n4 clauses, regardless of the value of k.[1]Be sure to explain why your construction of of χn,k works correctly.

Exercise 2 (3pts). In this assignment, you will show how one can use a black-box algorithm for a restricted form of reasoning to construct algorithms that can find the answer to more complicated reasoning tasks.

In particular, you will construct an algorithm C that can do the following. When given as input a propositional logic CNF formula ϕ and a positive integer n, it enumerates n satisfying assignments of ϕ—or all satisfying assignments of ϕ, if ϕ has less than n satisfying assignments. (Note: we only consider truth assignments over the propositional variables appearing in ϕ.)

The black-box algorithm A that you are given, and that you may call in your algorithm C, does the following. Given a propositional logic CNF formula ϕ, it outputs a 0 if ϕ is not satisfiable, and it outputs a 1 if ϕ is satisfiable. (So in case ϕ is satisfiable, it does not output a satisfying truth assignment for ϕ.)

Begin by describing an algorithm B, that may call A multiple times, and that does the following. When given as input a propositional logic CNF formula ϕ, it either outputs “unsat”, if ϕ is not satisfiable, or if ϕ is satisfiable, it outputs a satisfying truth assignment for ϕ.
Do this in a way that avoids an exponential blow-up in the running time.[2] For example, this means that B may not just iterate over all possible truth assignments over the variables in ϕ. (You may count each call to A as a single step in the running time.) An informal explanation of why there is no exponential blow-up in your algorithm is enough—no need to give a fully detailed proof of this.

Next, describe an algorithm C, that may call A and B multiple times and that does what is described above.
Again, do this in a way that avoids an exponential blow-up in the running time—and again, an informal argument why this is the case is enough.2 (You may count each call to A or B as a single step in the running time.)

Exercise 3 (4pts). In this assignment, you will show how to compute satisfying truth assignments for propositional logic formulas ϕ—that are not necessarily in CNF—by means of the following general procedure:

Translate ϕ to an answer set program P.
Compute an answer set A of P.
Translate the answer set A to a satisfying assignment of ϕ.
In particular, you will describe algorithms D and E that perform steps (1) and (3), respectively, and that can be used in combination with any ASP solving algorithm—that does step (2).

Construct an algorithm D—that takes as input a propositional logic formula ϕ and that produces an answer set program P—and an algorithm E—that takes an answer set of P and produces a satisfying truth assignment of ϕ.

For example, you could take a recursive approach. (This is just one way of approaching a solution—you are not required to do this.)

Again, do this in a way that avoids an exponential blow-up in the running time of these algorithms2—and again, an informal argument why there is no exponential blow-up is enough.

(You do not have to give an entirely detailed description of the algorithms D and E, e.g., in terms of pseudo-code. Instead, describe in high-level terms what steps the algorithms take and what they output, on any given input. Make sure to be precise enough so that your description makes clear how the various steps work. If there are multiple ways to carry out a given step, and it matters how exactly this step is carried out, you should specify how the step is carried out.)

[1] So in particular, you may not use the solution where χn,k simply consists of all the  clauses corresponding to the size-k subsets of { pi,j | i,j ∈ {1,...,n} }.

[2] The reason for this requirement is that one can give a simple exponential-time algorithm that just iterates over all possible truth assignments, for example.

More products