Problem Detail: I am going to teach a course in set theory for software engineering students. I am going to talk in this course about: ordinal numbers, partial orders, well ordering, generic filters and maybe some cardinal invariants (such as $mathfrak Read More …
Category: Uncategorized
[Solved]: Good text on algorithm complexity
Problem Detail: Where should I look for a good introductory text in algorithm complexity? So far, I have had an Algorithms class, and several language classes, but nothing with a theoretical backbone. I get the whole complexity, but sometimes it’s hard Read More …
[Solved]: Fair cake-cutting when players join late
Problem Detail: The usual statement of the fair cake-cutting problem assumes that all $n$ players get their share at the same time. However, in many cases the players arrive incrementally. For example, we may divide a cake over $n$ players, but Read More …
[Solved]: Training and testing image sizes for classification in computer vision
Problem Detail: When training a classifier for object detection using features extracted from images (eg HoG features), how important is it that the images used for training fed into the classifier in their natural aspect ratio? For example, regardless of their Read More …
[Solved]: How to sort using $texttt{SQRTSORT}$ as a subroutine which sorts $sqrt{n}$ of consecutive elements?
Problem Detail: I am teaching myself algorithms with the online lecture notes by Jeff Erickson and fails to solve the following problem (Problem 21 of Lecture 1). (a) Describe an algorithm that sorts an input array $A[1 ldots n]$ by calling Read More …
[Solved]: The minimization operator is an effective operator
Problem Detail: Assume ${f_i^{(n)}}_{i=0}^infty$ is a Gödel enumeration of the $mu$-recursive functions of $n$ arguments, such that the $S^m_n$ theorem and the universal function theorem hold. Denote the set of (total and partial) functions ${f:mathbb N^ktomathbb N }$ by $mathfrak F^k$ Read More …
[Solved]: Is the reverse postorder of a digraph’s reverse the same as the postorder of the digraph?
Problem Detail: I’ve been reading Sedgewick’s intro to algorithms book, and he says that the reverse postorder of a digraph’s reverse is not the same as the postorder of the digraph, however in both cases it seems that we get the Read More …
[Solved]: Definability of Truth Assignments
Problem Detail: I have a question about definability of truth assignments. Suppose that I am working in the context of propositional logic. Let me give some definitions first. Let $L$ be a propositional language with the set $Prop_{L}$ of propositional variables. Read More …
[Solved]: Quick Sort: Randomized Pivot vs Median of 3/’Ninther’ Pivot vs Uniform Shuffle of Input
Problem Detail: Is the jury still out on this or do we now know which of the above mentioned ways of randomizing Quick Sort is the most optimum as far as average case running time (averaged over all possible input arrays, Read More …
[Solved]: Does every DFA contain a loop?
Problem Detail: Is there a rule that either every DFA contains or not, a loop(cycle in graph terminology)? I do not seem to be able to generalize this idea in either direction. Also if either of these is true, can we Read More …