What would programming languages look like if every computable thing could be done in 1 second? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T01:07:29Zhttp://stackoverflow.com/feeds/question/920385http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don2What would programming languages look like if every computable thing could be done in 1 second?Paul Hollingsworth2009-05-28T11:27:51Z2009-05-29T21:29:22Z
<p>Inspired by <a href="http://stackoverflow.com/questions/910935/how-will-quantum-computing-affect-us">this question</a></p>
<p>Suppose we had a magical turing machine with infinite memory, and unlimited CPU power.</p>
<p>Use your imagination as to how this might be possible, e.g. it uses some sort of hyperspace continuum to automatically parallelize anything as much as is desired, so that it could calculate the answer to any computable question, no matter what it's time complexity is and number of actual "logical steps", in one second.</p>
<p>However, it can only answer computable questions in one second... so I'm not positing an "impossible" machine (at least I don't think so)... For example, this machine still wouldn't be able to solve the halting problem.</p>
<p>What would the programming language for such a machine look like? All programming languages I know about currently have to make some concessions to "algorithmic complexity"... with that constraint removed though, I would expect that all we would care about would be the "expressiveness" of the programming language. i.e. it's ability to concisely express "computable questions"...</p>
<p>Anyway, in the interests of a hopefully interesting discussion, opening it up as community wiki...</p>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don/920409#9204091Answer by n3rd for What would programming languages look like if every computable thing could be done in 1 second?n3rd2009-05-28T11:33:45Z2009-05-28T11:33:45Z<p>Maybe it would look more like pseudo-code than "real" code. After all, you don't have to worry about any implementation details any more because whichever way you go, it'll be sufficiently fast enough.</p>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don/920418#9204181Answer by codebliss for What would programming languages look like if every computable thing could be done in 1 second?codebliss2009-05-28T11:36:40Z2009-05-28T11:36:40Z<p>It could possibly be a haskell-ish language. Honestly it's a dream to code in. You program the "laws" of your types, classes, and functions and then let them loose. It's incredibly fun, powerful, and you can write some very succinct and elegant code. It's like an art.</p>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don/920423#9204231Answer by sharptooth for What would programming languages look like if every computable thing could be done in 1 second?sharptooth2009-05-28T11:36:56Z2009-05-28T12:19:01Z<p>Your underestimate the O(1). It means that there exists a constant C>0 such that time to compute a problem is limited to this C.</p>
<p>What you ignore is that the actual value of C can be large and it can (and mostly is) different for different algorithms. You may have two algorithms (or computers - doesn't matter) both with O(1) but in one this C may be billion times bigger that in another - then the latter will be much slower and perhaps very slow in terms of time.</p>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don/920432#9204323Answer by Chris Doggett for What would programming languages look like if every computable thing could be done in 1 second?Chris Doggett2009-05-28T11:38:58Z2009-05-28T11:38:58Z<pre><code>SendMessage travelingSalesman "Just buy a ticket to the same city twice already. You'll spend much more money trying to solve this than you'll save by visiting Austin twice."
SendMessage travelingSalesman "Wait, they built what kind of computer? Nevermind."
</code></pre>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don/920434#9204341Answer by e1i45 for What would programming languages look like if every computable thing could be done in 1 second?e1i452009-05-28T11:39:23Z2009-05-28T11:39:23Z<p>Scalability would not be an issue any longer. We'd have AIs way smarter than us.
We wouldn't need to program any longer and instead the AI would figure out our intentions before we realize them ourselves.</p>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don/920435#9204353Answer by Tomalak for What would programming languages look like if every computable thing could be done in 1 second?Tomalak2009-05-28T11:39:34Z2009-05-28T11:39:34Z<p>This is not really logical. If a thing takes O(1) time, then doing n times will take O(n) time, even on a quantum computer. It is impossible that "everything" takes O(1) time.</p>
<p>For example: <a href="http://en.wikipedia.org/wiki/Grover%27s%5Falgorithm" rel="nofollow">Grover's algorithm</a>, the one mentioned in the accepted answer to the question you linked to, takes O(n^1/2) time to find an element in a database of n items. And thats not O(1).</p>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don/920473#9204730Answer by Erwin for What would programming languages look like if every computable thing could be done in 1 second?Erwin2009-05-28T11:49:16Z2009-05-28T11:49:16Z<p>SQL is such a language - you ask for some piece of data and you get it. If you didn't have to worry about minute implementation details of the db this might even be fun to program in.</p>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don/920482#9204823Answer by J. Pablo Fernández for What would programming languages look like if every computable thing could be done in 1 second?J. Pablo Fernández2009-05-28T11:51:04Z2009-05-28T11:51:04Z<p>The amount of memory or the speed of the memory or the speed of the processor doesn't define the time and space complexity of an algorithm. Basic mathematics do that. Asking what would programming languages look like if everything could be computed in O(1) is like asking how would our calculators look like if pi was 3 and the results of all square roots are integers. It's really impossible and if it isn't, it's not likely to be very useful.</p>
<p>Now, asking ourself what we would do with infinite process power and infinite memory could be a useful exercise. We'll still have to deal with complexity of algorithms but we'd probably work somehow differently. For that I recommend <a href="http://www.paulgraham.com/hundred.html" rel="nofollow">The Hundred-Year Language</a>.</p>
http://stackoverflow.com/questions/920385/what-would-programming-languages-look-like-if-every-computable-thing-could-be-don/928242#9282422Answer by Captain Segfault for What would programming languages look like if every computable thing could be done in 1 second?Captain Segfault2009-05-29T21:29:22Z2009-05-29T21:29:22Z<p>Note that even if the halting problem is not computable, "does this halt within N steps on all possible inputs of size smaller than M" is!</p>
<p>As such any programming language would become purely specification. All you need to do is accurately specify the pre and post conditions of a function and the compiler could implement the fastest possible code which implements your spec.</p>
<p>Also, this would trigger a singularity very quickly. Constructing an AI would be a lot easier if you could do near infinite computation -- and once you had one, of <em>any</em> efficiency, it could ask the computable question "How would I improve my program if I spent a billion years thinking about it?"...</p>