Tagged Questions
A model of computation is called Turing-complete if it is capable of simulating a Turing machine. Programming languages that are Turing complete are at least as powerful as the most powerful models of feasible computation yet theorized.
41
votes
7answers
11k views
What is Turing Complete?
What does the expression Turing Complete means? Can you give a simple explanation, without going into too much theoretical details?
25
votes
2answers
2k views
The type system in Scala is Turing complete. Proof? Example? Benefits?
There are claims that Scala's type system is Turing complete. My questions are:
Is there a formal proof for this?
How would a simple computation look like in the Scala type system?
Is this of any ...
23
votes
12answers
2k views
Code Golf: Shortest Turing-complete interpreter
I've just tried to create the smallest possible language interpreter. Would you like to join and try?
Rules of the game:
You should specify a programming language you're interpreting. If it's a ...
20
votes
13answers
1k views
What are practical guidelines for evaluating a language's “Turing Completeness”?
I've read "what-is-turing-complete" and the wikipedia page, but I'm less interested in a formal proof than in the practical implications of being Turing Complete.
What I'm actually trying to decide ...
19
votes
1answer
269 views
Which property of Scala's type-system make it Turing-complete? [closed]
Scala uses a type-system based on System F ω, which is normally said to be strongly normalizing. Strongly normalizing implies non-Turing completeness.
Nevertheless, Scala's type-system is ...
19
votes
3answers
418 views
Are Perl regexes turing complete?
I've seen Ruby and Perl programmers do some complicated code challenges entirely with regexes. The lookahead and lookbehind capabilities in Perl regexes make them more powerful than the regex ...
16
votes
2answers
614 views
What are the practical limitations of a non-turing complete language like Coq?
As there are non-Turing complete languages out there, and given I didn't study Comp Sci at university, could someone explain something that a Turing-incomplete language (like Coq) cannot do?
Or is ...
15
votes
7answers
599 views
how useful is Turing completeness? are neural nets turing complete?
While reading some papers about the Turing completeness of recurrent neural nets (for example: Turing computability with neural nets, Hava T. Siegelmann and Eduardo D. Sontag, 1991), I got the feeling ...
14
votes
7answers
1k views
I've heard that LaTeX is Turing complete. Are there any programs written in LaTeX?
It's possible to do interesting things with what would ordinarily be thought of as typesetting languages. For example, you can construct the Mandelbrot set using postscript.
It is suggested in this ...
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 ...
14
votes
20answers
2k views
Which programming language requires the most different mindset from C++?
I'm looking for a useful language that is turing complete. Being predominantly a C++ programmer, I'd like a language that forces me to learn from scratch to wrap my head around it. What I hope to get ...
14
votes
10answers
2k views
Practical non-Turing-complete languages?
Nearly all programming languages used are Turing Complete, and while this affords the language to represent any computable algorithm, it also comes with its own set of problems. Seeing as all the ...
12
votes
6answers
527 views
What does it mean for a language to be statically typed?
My understanding is that it means that one can potentially write a program to formally prove that a program written in a statically typed language will be free of a certain (small) subset of defects.
...
11
votes
3answers
488 views
Is it possible to create a quine in every turing-complete language?
I just wanted to know if it is 100% possible, if my language is turing-complete, to write a program in it that prints itself out (of course not using a file reading function)
So if the language just ...
9
votes
2answers
608 views
Are makefiles Turing complete?
Lately at work, I've been doing some translation from Makefiles to an alternative build system. I've seen some pretty hairy Make code in some places using functional map, filter, and foreach ...
9
votes
3answers
708 views
Can the halting problem be solved for any non-turing languages?
The halting problem cannot be solved for turing complete languages and it can be solved trivially for some non TC languages like regexes where it always halts.
I was wondering if there are any ...
7
votes
2answers
843 views
Is the C99 preprocessor Turing complete?
After discovering the Boost preprocessor's capabilities I found myself wondering: Is the C99 preprocessor Turing complete?
If not, what does it lack to not qualify?
7
votes
8answers
271 views
Can these sorts of programs exist in every Turing-complete language?
In every Turing-Complete language, is it possible to create a working
Compiler for itself which first runs on an interpreter written in some other language and then compiles it's own source code? ...
7
votes
5answers
1k views
Is CSS turing complete?
CSS isn't, insofar as I know, Turing complete. But my knowledge of CSS is very limited.
Is CSS Turing complete?
Are any of the existing draft or committees considering language features that ...
7
votes
10answers
981 views
Can a language be turing complete but incomplete in other ways?
For example, are there certain things when writing an operating system that cannot be accomplished in a turing complete language?
6
votes
2answers
274 views
Why call-by-value evaluation strategy is not Turing complete?
I'm reading an article about different evaluation strategies (I linked article in wiki, but I'm reading another one not in English). And it says that unlike to call-by-name and call-by-need ...
5
votes
4answers
255 views
Are .NET's regular expressions Turing complete?
Regular expressions are often pointed to as the classical example of a language that is not Turning complete. For example "regular expressions" is given in as the answer to this SO question looking ...
5
votes
6answers
387 views
Is conditional branching a requirement of Turing-completeness?
I've been searching the web and I'm finding somewhat contradictory answers. Some sources assert that a language/machine/what-have-you is Turing complete if and only if it has both conditional and ...
5
votes
5answers
252 views
What makes people think that NNs have more computational power than existing models?
I've read in Wikipedia that neural-network functions defined on a field of arbitrary real/rational numbers (along with algorithmic schemas, and the speculative `transrecursive' models) have more ...
5
votes
5answers
496 views
Really minimum lisp
What is the minimum set of primitives required such that a language is Turing complete and a lisp variant?
Seems like car, cdr and some flow control and something for REPL is enough. It be nice if ...
4
votes
3answers
292 views
Consequences of inability to add natural numbers in C
In System F I can define the genuine total addition function using Church numerals.
In Haskell I cannot define that function because of the bottom value. For example, in haskell if x + y = x, then I ...
4
votes
3answers
368 views
How could a quine in my programming language look?
I have created a turing-complete programming language (already proven) so it must be possible to write a quine for it, right?
But all quines I know store their source code in a string and then ...
4
votes
2answers
403 views
Can a language be Turing-complete without any support for arrays?
If a language has control structures and variables, but no support for arrays, lists, memory access and allocation, etc, can it be Turing-complete?
Maybe if there was no limit to the amount of ...
3
votes
3answers
95 views
Is a dictionary turing complete
With "dictionary" I mean an array of key / value pairs with unique keys. If not, why? If long enough, you can use the key as an input and the value as an output and it could have the solution to as ...
3
votes
3answers
311 views
Criteria to determine if it's a programming language
What are the critera or the basic features required to tell that X or Y is (or is not) a programming language?
I've done some reading (Is HTML considered a programming language?, Turing complete, and ...
3
votes
2answers
438 views
Looking for languages that are not Turing complete
I know a little about what is a Turing Machine and a Turing complete language, but to understand better, could someone give examples of languages that are not Turing complete? (maybe machines that are ...
3
votes
5answers
712 views
What's what awk can't that sed can?
Or just a matter of choice and call awk and sed equivalent towards usage. They both do the common search replace seemingly identically regarding i/o.
3
votes
4answers
717 views
Are LINQ expression trees Turing complete?
As they are in .Net 3.5. I know they are in 4.0, as that's what the DLR works with, but I'm interested in the version we have now.
2
votes
4answers
291 views
Is Stata Turing-complete?
I've been doing some statistics work with Stata recently and not enjoying it very much. It doesn't feel to me like it's a "proper" programming language: in particular I don't think there's a way to ...
1
vote
2answers
35 views
Terminology for a “complete” programming language?
The full definition of "Turing Completeness" requires infinite memory.
Is there a better term than Turing Complete for a programming language and implementation that seems useably complete, except ...
1
vote
1answer
125 views
Generally, is it possible to write kinect-like app using only C++? [closed]
I mean, write web-cam recognition that is close to kinect in it's accuracy.
1
vote
2answers
328 views
How does this implementation of turing-complete Rule 110 in HTML5+CSS3 work?
This morning, I came across the following implementation of Rule 110 in pure HTML5 + CSS3 (no javascript). You press tab and space in sequence to run the automaton.
...
1
vote
3answers
233 views
Is it possible to write a self-interpreting FSM or Pushdown Automaton?
I'm sorry for this newbie question, but I need a quick answer to tell a friend if that's possible.
1
vote
2answers
108 views
1
vote
3answers
128 views
A naive questioin about UML and Turing completeness
It'a a well-known fact that UML does not Turing complete (in contrast to usual programming languages). But it seems to me UML is even more flexible than traditional languages. I can't imagine a ...
1
vote
1answer
184 views
What elegant and Turing-complete machines* you know? Is there a one from The Book?
Lambda calculus of course is quite elegant, but doesn't it bother you that there is this asymmetry between input and output of a function? I.e. you can make the function take two parameters (by ...
0
votes
1answer
107 views
Smallest compiler ever [closed]
Yesterday, I stuck in the internet with this article about programming language called BrainFuck.
http://www.muppetlabs.com/~breadbox/bf/
So what is wonder me is this
Brainfuck is the ungodly ...
0
votes
1answer
124 views
Is C++ preprocessor metaprogramming Turing-complete?
I know C++ template metaprogramming is Turing-complete. Does the same thing hold for preprocessor metaprogramming?
0
votes
2answers
175 views
What current, actively-maintained, robust, general-purpose programming languages are there?
As programmers, we're overwhelmed with options when choosing a programming language. Due to the finite availability of time, money, and readily-consumable caffeine, we face an uphill battle in our ...
0
votes
0answers
76 views
Turing complete SQL lib? [closed]
I'll rephrase this. How do i execute a mysql query were i can pass an array in instead of write my own semi complex loop generating a very long sql query.
I'd like to select docs.id where the doc has ...
0
votes
4answers
235 views
Turing completeness
So one can say a language is Turing complete if it meets some criteria and it can do anything another Turing complete language can do.
Does that mean I can theoretically implement Google using ...
0
votes
0answers
160 views
Creating a computer with pencil and paper [closed]
This concept has been brought to my attention before, but many people might know it from this popular comic here, where he uses stones instead of points on a paper.
This concept is so abstract to me. ...
0
votes
1answer
163 views
How to work with this turing machine?
This is a screenshot of the applet LogiCell 1.0, link to which I found here.
As the bottom left corner shows, this is doing sum 0+1 and the result is 01b (bottom right hand side).
I am not able to ...
0
votes
4answers
134 views
why there can't be a program that checks another program
I am trying to find the logical alan turing explanation why there can't be a program that checks another programs.
I remember we learned in on the computation course but now i just can't find the ...
0
votes
2answers
507 views
How can I simulate a turing machine?
I don't quite understand the whole idea of a turing machine thing.
I am currently tasked with making a busy beaver turing machine. But the thing I don't really get is it simulates input. So what kind ...