Tagged Questions
The computability tag has no wiki summary.
14
votes
6answers
1k views
Why can Conway’s Game of Life be classified as a universal machine?
I was recently reading about artificial life and came across the statement, "Conway’s Game of Life demonstrates enough complexity to be classified as a universal machine." I only had a rough ...
11
votes
9answers
4k views
What's a Turing machine?
What is a Turing machine and why do people keep mentioning it? My IBM PC is all I need to do my computation! Why does anyone care about these machines?
4
votes
1answer
220 views
Ackermann function versus n nested loops
I'm working my way thorugh a book on computation (Minksy 1967) and am having a hard time with relating a recursive function to a function defined in terms of loops. Specifically he asks to find the ...
4
votes
7answers
1k views
Is solving the halting problem easier than people think?
Although the general case is undecidable, many people still do solve problems that are equivilent well enough for day to day use.
In cohen's phd thesis on computer viruses, he showed how virus ...
3
votes
1answer
47 views
What is the “trick” to writing a Quine?
I read Ken Thompson's classic paper Reflections on Trusting Trust in which he prompts users to write a Quine as an introduction to his argument (highly recommended read).
A quine is a computer ...
2
votes
2answers
91 views
Template Metaprogramming: Primitive Recursive?
In this article, the writer asserts:
...the program did show that the template instantiation mechanism is a primitive recursive language that can perform nontrivial computations at compile time.
...
2
votes
3answers
82 views
Is poly-time functions class recursively enumerable?
If I define Poly-time functions, the functions that are computable by a turing machine in maximum polynomial(n) time, which n is size of input. Is the class of these functions recursively enumerable?
2
votes
4answers
98 views
Complex behavior generated by simple computation
Stephen Wolfram gave a fascinating talk at TED about his work with Mathematica and Wolfram Alpha. Amongst other things, he pointed out how very simple computations can yield extremely complex ...
1
vote
2answers
37 views
program to reproduce itself and be useful — not a quine
I have a program which performs a useful task. Now I want to produce the plain-text source code when the compiled executable runs, in addition to performing the original task. This is not a quine, but ...
1
vote
1answer
413 views
Is PI a turing computable number? [closed]
AFAIK, turing computable numbers are numbers whose i-th index can be returned by a Turing Machine. So a non-computable number would be something like a number whose decimal points are decided if some ...
1
vote
3answers
353 views
Security of Exclusive-OR (XOR) encryption
XOR encryption is known to be quite weak. But how weak is it if I have a key that is made up of multiple keys of different (ideally prime) lengths which are combined to make a longer key. eg I have a ...
1
vote
2answers
165 views
Can rebol parse function be able to create rules for parsing css2 / css3 fully?
Are there limitation to rebol parse function power ? Would it be capable of parsing the whole css2 / css 3 spec or will it encounter theorical impossibility to form some rules ?
Update after ...
1
vote
2answers
351 views
To prove something is NP-hard, why do you need to reduce to it from an NP-complete problem?
From wikipedia: "A problem H is NP-hard if and only if there is an NP-complete problem L that is polynomial time Turing-reducible to H (i.e., L ≤ TH)."
Why does the problem(call it W) being reduced ...
0
votes
0answers
72 views
DPDA(Decider Pushdown Automaton)
I define a Decider PDA, a PDA (nondeterministic or deterministic) that does not loop for any input(I mean that it halt for every input,accept or reject). I want to know more about these PDAs and the ...
0
votes
1answer
72 views
Computability of a probability theory problem [closed]
This is a problem I solved for a course and I was wondering if my solution is correct. I wouldn't normally post a pure mathematics problem, except that I believe that is is incomputable, and hence a ...
0
votes
1answer
21 views
Emulating numerial operations in software
The numerical operations we do in our programs are limited by the number of bytes that a language specifies for a given datatype (or maybe hardware supports). Say I can use integer to do calculations ...
-7
votes
1answer
39 views
Computability & complexity application [closed]
I'm thinking of developing an application that deals with computability and complexity.
Its initial list of features would be:
Receiving a function and checking if it is computable (i.e. whether ...