The computability tag has no wiki summary.
0
votes
1answer
20 views
Can a Turing machine decide if a formal model of computation is Turing complete?
That is, can a Turing machine take a formal system, S, as its input and decide if S is Turing complete?
I think this is an undecidable problem, am I right?
If it is undecidable, why can we (as ...
3
votes
0answers
83 views
Turing-completeness of a modified version of Brainfuck
Is Brainfuck Turing-complete if the cells are bits, and the + and - operations simply flip a bit? Is there a simple proof that Brainfuck-like languages are Turing-complete regardless of the cell size, ...
1
vote
4answers
64 views
Understanding Σ* and Σ in formal languages
If I have Σ={a} , what words does Σ* has ?
Σ*= {a,aa,aaa,aaaa.....} ?
Thanks
0
votes
0answers
295 views
Problems when using highcharts 2.2.5
Need to upgrade my highcharts.js file from 2.1.4 to 2.2.5 (because I want to use the useHTML property in the tooltip and it is supported from 2.1.7) the problem is that when I upgrade, highcharts ...
0
votes
1answer
130 views
jquery not working well on IE8
I have built a page which loads data dynamiically from a DB and uses jQuery to add html labels and classes to the page
the html is
<fieldset>
<legend>msgs</legend>
...
1
vote
2answers
391 views
Sticky footer not working in IE
I have created a Sticky footer for my website which you can view in this fiddle: http://jsfiddle.net/Aw6vn/
#main_Ticker{
position: fixed;
bottom: 0;
right: 12%;
z-index: 6000 ...
2
votes
1answer
198 views
What are all known languages that Turing machines cannot accept?
For example, the language of Turing machines that do not accept their own encoding cannot be accepted by any Turing machine.
0
votes
2answers
44 views
How to prove set of all two argument functions cannot be countable
We can prove that set of all one argument functions cannot be countable using the cantor's diagonal.
for example
1 2 3 4 5 6 7 ......
f1 10 12 23 1 3 12 3 ...
5
votes
1answer
368 views
Decidability and Recursive Enumerability
Say there exist Turing Machines M1, M2, M3, the languages they recognize being L(M1), L(M2), and L(M3), respectively. The following language
L = {(M1, M2, M3) : L(M1), L(M2), and L(M3) are not equal}
...
2
votes
1answer
266 views
Turing completeness of lambda calculus?
How do you argue for the fact that lambda calculus is Turing complete (in the simplest way possible) ?
0
votes
1answer
78 views
NP optimization problems (definition)
I'm trying to understand the definition of NPO.
I read the definition here : http://www.nada.kth.se/~viggo/wwwcompendium/node2.html
If we consider trying to find a minimal vertice cover, what is ...
1
vote
2answers
100 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 ...
6
votes
2answers
351 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
183 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.
...
-7
votes
1answer
43 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 ...
2
votes
3answers
136 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?
0
votes
1answer
83 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 ...
3
votes
1answer
1k 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 ...
0
votes
1answer
26 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 ...
4
votes
1answer
434 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 ...
2
votes
3answers
880 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 ...
2
votes
2answers
266 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
1k views
To prove something is NP-hard, why do you need to reduce to it from an NP-complete?
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 ...
2
votes
4answers
114 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 ...
20
votes
6answers
2k 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 ...
16
votes
9answers
8k 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
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 ...
