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.

learn more… | top users | synonyms

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 ...
-1
votes
0answers
24 views

Parsing input in a turing machine [closed]

An explanation would help. Does the TM accept A)101010 B)00100 The turing machine is here, And to design a turing machine that accepts {a^2n : n>0} I appreciate your help, I really want to learn ...
0
votes
0answers
33 views

Is there any input string for which TM halts within 20 steps?

I'm trying to find if there's a Turning machine that can halt within 20 steps. I'm a little stuck. I've been researching this for a few hours and can't decide if there is or not. Any help would be ...
1
vote
0answers
32 views

Is there a programming language that only has the power of a deterministic push-down automata, and no more?

Some programming problems don't require the full power of a Turing machine to solve. They can be solved with much less power. I am seeking a programming language with lesser power. Does there exist a ...
11
votes
3answers
314 views

Can someone explain Rule 110 in the simplest way possible?

I can't wrap my head around what the Wikipedia article or the answer here say. Can someone explain Rule 110 in simple terms? How does it guarantee Turing completeness?
-1
votes
1answer
154 views

Designing a turing machine

I need help designing a turing machine that will compute the following f(x) = x mod 3. I just need help getting started since I am not familiar on how to approach this problem
4
votes
1answer
302 views

Is C# 4.0 compile-time turing complete?

There is a well-known fact that C++ templates are turing-complete, CSS is turing-complete (!) and that the C# overload resolution is NP-hard (even without generics). But is C# 4.0 (with ...
11
votes
2answers
439 views

Is my program Turing-complete?

I spent a week or two programming a simple logic solver. Having built it, I found myself wondering whether the language it solves is Turing-complete or not. So I coded up a small set of equations ...
2
votes
1answer
175 views

Turing Complete Alphanumeric x86 Instruction Set (Subset)

I am looking to create a minimal, computationally universal subset of alphanumeric x86 opcodes. Eventually I want the subset to contain as few instructions as possible, and if there are multiple ...
-4
votes
1answer
300 views

Is the human brain Turing complete? [closed]

Are there any assemblers for the Human Brain?
2
votes
1answer
267 views

Turing completeness of lambda calculus?

How do you argue for the fact that lambda calculus is Turing complete (in the simplest way possible) ?
19
votes
1answer
446 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 ...
1
vote
2answers
72 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 ...
0
votes
1answer
334 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 ...
4
votes
3answers
346 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 ...
22
votes
3answers
1k 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 ...
1
vote
1answer
205 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
519 views

Is C++ preprocessor metaprogramming Turing-complete?

I know C++ template metaprogramming is Turing-complete. Does the same thing hold for preprocessor metaprogramming?
4
votes
1answer
237 views

Is the Starbucks menu Turing Complete?

If we were to interpret the Starbuck's mini-language menu system as some sort of grammar or state machine, would that grammar be Turing complete? A description of the Starbuck's order mini-language ...
3
votes
3answers
137 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 ...
2
votes
2answers
1k 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
410 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.
14
votes
5answers
1k views

What logic gates are required for Turing completeness?

My son has been playing Little Big Planet 2 lately, and I noticed that the game editor allows AND gates, OR gates and NOT gates... Is it Turing complete? If so, can anyone recommend a source for ...
4
votes
4answers
1k 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 ...
9
votes
4answers
515 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 ...
1
vote
2answers
180 views

Simple vs. Nested

Are simple loops as powerful as nested loops in terms of Turing completeness?
4
votes
4answers
616 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 ...
30
votes
2answers
3k 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 ...
5
votes
7answers
630 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 ...
1
vote
3answers
186 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 ...
0
votes
0answers
99 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
387 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 ...
13
votes
6answers
630 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. ...
5
votes
2answers
964 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 ...
28
votes
2answers
1k 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 ...
14
votes
2answers
1k 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 ...
0
votes
0answers
226 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. ...
19
votes
3answers
3k 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?
17
votes
7answers
1k 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 ...
23
votes
6answers
3k 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 ...
6
votes
2answers
423 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 ...
1
vote
1answer
208 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 ...
5
votes
5answers
286 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 ...
0
votes
4answers
151 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 ...
5
votes
4answers
960 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
471 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 ...
7
votes
8answers
302 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? ...
12
votes
3answers
861 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 ...
28
votes
6answers
5k 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 ...
0
votes
2answers
925 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 ...

1 2