Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Proof that Decidability is Always Decidable
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 176 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Peter Olcott  
View profile  
 More options Apr 17 2012, 7:44 pm
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Tue, 17 Apr 2012 18:44:14 -0500
Local: Tues, Apr 17 2012 7:44 pm
Subject: Proof that Decidability is Always Decidable
Boolean Halts(String tm, String input)
{
   if tm halts on input
     // tm is a valid TM and halting is decidable
     return true;
   else           // anything else, such as not decidable,
    return false; // not a valid TM, not halting

}

// DecidabilityDecider
Boolean Decidable(String tm, String input)
{
   if (Halts(tm, input))
     return true;
   else
    return false;

}

M( String Input )
{
if ( Decidable( Input, Input ) )
   Loop Forever;
else
   Exit;

}

Decidable(M, M); // Correctly returns False.

Is decidability a non-trivial property of a recursively enumerable set?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bryan  
View profile  
 More options Apr 17 2012, 11:16 pm
Newsgroups: comp.theory, sci.logic
From: Bryan <bryanjugglercryptograp...@yahoo.com>
Date: Tue, 17 Apr 2012 20:16:46 -0700 (PDT)
Local: Tues, Apr 17 2012 11:16 pm
Subject: Re: Proof that Decidability is Always Decidable

Peter Olcott  wrote:
> Boolean Halts(String tm, String input)
> {
>    if tm halts on input

How, at this point, could you think that's decidable?

>      // tm is a valid TM and halting is decidable
>      return true;
>    else           // anything else, such as not decidable,
>     return false; // not a valid TM, not halting

Except that not halting can leave you running forever in attempt to
evaluate the condition of the 'if'.

> }
> // DecidabilityDecider
> Boolean Decidable(String tm, String input)
> {
>    if (Halts(tm, input))
>      return true;
>    else
>     return false;

> }

Decidable() calls Halts(), so since Halts can fail to halt, so can
Decidable. In fact Decidable is equivalent to Halts.

> M( String Input )
> {
> if ( Decidable( Input, Input ) )
>    Loop Forever;
> else
>    Exit;

> }
> Decidable(M, M); // Correctly returns False.

You've left undefined how you answer, "if tm halts on input". Until
you do so, there's not telling whether Decidable(M, M) returns or runs
forever.

--
--Bryan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
George Greene  
View profile  
 More options Apr 18 2012, 12:11 am
Newsgroups: comp.theory, sci.logic
From: George Greene <gree...@email.unc.edu>
Date: Tue, 17 Apr 2012 21:11:05 -0700 (PDT)
Local: Wed, Apr 18 2012 12:11 am
Subject: Re: Proof that Decidability is Always Decidable

> Peter Olcott  wrote:
> > Boolean Halts(String tm, String input)
> > {
> >    if tm halts on input

On Apr 17, 11:16 pm, Bryan <bryanjugglercryptograp...@yahoo.com>
wrote:

> How, at this point, could you think that's decidable?

The point is NOT that it's not "decidable".
The point IS that *there IS NO TM* that CAN DO this.
If you are asking to evaluate this condition then you ARE NOT calling
any TM.
Therefore, this code IS NOT CODE FOR any TM.

If he actually wants to CALL A TM THAT RETURNS SOMETHING BOOLEAN (at
least
some of the time), which WOULD make this "if" syntactically legal in
code for a TM
(and might therefore make this a TM), then he needs to go ahead AND
ACTUALLY WRITE A CALL
to the boolean-valued TM *that*he*is*calling* to test whether tm halts
on input.
And if there IS such a TM, then shouldn't THAT TM, RATHER THAN THE
OUTER ONE HERE,
be the one CALLED "Halts()"?  Of course, he has already conceded that
no such TM exists,
but in that case, WHY IS HE CALLING *THIS*one, "Halts()"??

> Peter Olcott  wrote:
> > Boolean Halts(String tm, String input)

THAT kind of willful perversity simply should not be engaged.
The CORRECT response to this would've occurred EVEN EARLIER, AFTER THE
HEADING.
It would've been something along the lines of:
"DUMBASS, YOU KNOW that is NOT an appropriate name FOR ANY TM,
especially not this one."

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joshua Cranmer  
View profile  
 More options Apr 18 2012, 12:26 am
Newsgroups: comp.theory, sci.logic
From: Joshua Cranmer <Pidgeo...@verizon.invalid>
Date: Tue, 17 Apr 2012 23:26:51 -0500
Local: Wed, Apr 18 2012 12:26 am
Subject: Re: Proof that Decidability is Always Decidable
On 4/17/2012 6:44 PM, Peter Olcott wrote:

> Boolean Halts(String tm, String input)
> {
> if tm halts on input
> // tm is a valid TM and halting is decidable
> return true;
> else // anything else, such as not decidable,
> return false; // not a valid TM, not halting
> }

This reminds me of a math joke I once saw. A professor was at the
blackboard, and wrote down as a proof:
1. <assumption>
2. Some magic happens
3. <result>

The other professor commented "I think you need to explain step 2 a bit
more..."

This joke seems to me to illustrate exactly what you're doing: you have
a nice magic blob called "halts on input". The problem is that the
halting problem is known to be undecidable in the general case, so the
statement "if tm halts on input" renders whatever function includes it
an uncomputable function. Note that the comments imply something
different from what the statements say as well, not that it matters too
much when you've screwed yourself by line 3.

If you want to show that what you want exists, you must either provide a
complete implementation (what you have is most certainly not complete)
or you must nonconstructively show that it must exist, perhaps by saying
that its nonexistence leads to a contradiction.

> Decidable(M, M); // Correctly returns False.

That may be true, but decidable is, by construction, an uncomputable
function, so it matters not one whit.

--
Beware of bugs in the above code; I have only proved it correct, not
tried it. -- Donald E. Knuth


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
George Greene  
View profile  
 More options Apr 18 2012, 12:30 am
Newsgroups: comp.theory, sci.logic
From: George Greene <gree...@email.unc.edu>
Date: Tue, 17 Apr 2012 21:30:19 -0700 (PDT)
Local: Wed, Apr 18 2012 12:30 am
Subject: Re: Proof that Decidability is Always Decidable
On Apr 17, 11:16 pm, Bryan <bryanjugglercryptograp...@yahoo.com>
wrote:
> Decidable() calls Halts(), so since Halts can fail to halt, so can
> Decidable. In fact Decidable is equivalent to Halts.

              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                Exactly!
But this is because what P.O. MEANS by an "individual input that is
'undecidable' for&by a TM"
IS THAT THE TM FAILS TO DECIDE the disposition of the input, i.e.,
that it fails to halt-with-its-tape-(or state)-containing-the-output-
that-the-TM-(viewed as a function)-returns-as-a-value-corresponding-to-
the-argument-input.  In other words, IT LOOPS on this input instead of
returning a value.
So it REALLY IS equivalent to halting checker -- the input is
"decidable" iff it halts.

I kind of hesitated to spell this out because it requires using P.O.'s
MISmeaning of "decidable".
I hope I put enough quotes and qualifiers ("individual" and "for&by")
with it to avoid endorsing it.
It really would've been Better to say  NOTHING BEYOND
"that's NOT what 'decidable' MEANS, DUMBASS."


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joshua Cranmer  
View profile  
 More options Apr 18 2012, 1:03 am
Newsgroups: comp.theory, sci.logic
From: Joshua Cranmer <Pidgeo...@verizon.invalid>
Date: Wed, 18 Apr 2012 00:03:51 -0500
Local: Wed, Apr 18 2012 1:03 am
Subject: Re: Proof that Decidability is Always Decidable
On 4/17/2012 6:44 PM, Peter Olcott wrote:

> Boolean Halts(String tm, String input)
> {
> if tm halts on input
> // tm is a valid TM and halting is decidable
> return true;
> else // anything else, such as not decidable,
> return false; // not a valid TM, not halting
> }

Based on your comments (instead of your code), we also get into trouble
very quickly. To be able to define this function, you have an implicit
assumption that it can be written. Namely, you are assuming that
"decidability" [1] of a halting instance is decidable to be able to
write this function. Since you are purporting to prove this fact, note
that your proof will now look like the following:
1. Assume p
2. <some more steps>
3. Therefore, p.

That is not a valid logical proof; it is a circular argument. The only
facts related to p that you can prove if you begin with "assume p" are
either not p (if assume p leads to a contradiction) or "p is independent
of the logical system" (if assume p provably leads to no contradictions
under the additional assumption that the logical system is consistent).
Indeed, you deign to go further and say:
4. System implies not p.
5. Therefore, system is wrong.

I hope that you able to appreciate the magnitude of your error.

[1] When in Rome... despite the fact this term is extremely obfuscatory.

--
Beware of bugs in the above code; I have only proved it correct, not
tried it. -- Donald E. Knuth


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bryan  
View profile  
 More options Apr 18 2012, 1:10 am
Newsgroups: comp.theory, sci.logic
From: Bryan <bryanjugglercryptograp...@yahoo.com>
Date: Tue, 17 Apr 2012 22:10:45 -0700 (PDT)
Local: Wed, Apr 18 2012 1:10 am
Subject: Re: Proof that Decidability is Always Decidable

Joshua Cranmer wrote:
> This reminds me of a math joke I once saw. A professor was at the
> blackboard, and wrote down as a proof:
> 1. <assumption>
> 2. Some magic happens
> 3. <result>

> The other professor commented "I think you need to explain step 2 a bit
> more..."

By Sidney Harris:
http://www.sciencecartoonsplus.com/pages/gallery.php

-Bryan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 6:09 am
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 05:09:11 -0500
Local: Wed, Apr 18 2012 6:09 am
Subject: Re: Proof that Decidability is Always Decidable
On 4/17/2012 10:16 PM, Bryan wrote:
> Peter Olcott  wrote:
>> Boolean Halts(String tm, String input)
>> {
>>     if tm halts on input
> How, at this point, could you think that's decidable?

There are only three possibilities:
(a) Halting
(b) Not Halting
(c) Undecidable
If it is not either (b) or (c) then it goes to here.
This is rte partial function that Patricia wrote about yesterday.

>>       // tm is a valid TM and halting is decidable
>>       return true;
>>     else           // anything else, such as not decidable,
>>      return false; // not a valid TM, not halting
> Except that not halting can leave you running forever in attempt to
> evaluate the condition of the 'if'.

No this is false. Halts() always halts. It only examines the input TM's
specification, it does not run it.

>> }

>> // DecidabilityDecider
>> Boolean Decidable(String tm, String input)
>> {
>>     if (Halts(tm, input))
>>       return true;
>>     else
>>      return false;

>> }
> Decidable() calls Halts(), so since Halts can fail to halt, so can
> Decidable. In fact Decidable is equivalent to Halts.

This assumption is false.

>> M( String Input )
>> {
>> if ( Decidable( Input, Input ) )
>>     Loop Forever;
>> else
>>     Exit;

>> }
>> Decidable(M, M); // Correctly returns False.
> You've left undefined how you answer, "if tm halts on input". Until
> you do so, there's not telling whether Decidable(M, M) returns or runs
> forever.

It is a partial function on the subset of the input that is decidable
and does halt. In every other case it halts and returns false.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 6:15 am
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 05:15:17 -0500
Local: Wed, Apr 18 2012 6:15 am
Subject: Re: Proof that Decidability is Always Decidable
On 4/17/2012 11:26 PM, Joshua Cranmer wrote:

This is a partial function on the subset of the input that is decidable
and does halt.

A TM that reports whether or not another TM halts has only three
possible cases:
(a) Halts and is decidable.
(b) Fails to halt and is decidable.
(c) Is not decidable.
This TM reports (a) as true, and (b) and (c) as false.
Its input has no other possible category besides the above three.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 6:24 am
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 05:24:20 -0500
Local: Wed, Apr 18 2012 6:24 am
Subject: Re: Proof that Decidability is Always Decidable
On 4/17/2012 10:16 PM, Bryan wrote:

I don't see how you could say this.
My function specifies that it either returns true or returns false,
neither of these is a loop. Do you assume that this function simulates
its input? That would be a false assumption.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Leif Roar Moldskred  
View profile  
 More options Apr 18 2012, 8:45 am
Newsgroups: comp.theory, sci.logic
From: Leif Roar Moldskred <le...@dimnakorr.com>
Date: Wed, 18 Apr 2012 07:45:03 -0500
Local: Wed, Apr 18 2012 8:45 am
Subject: Re: Proof that Decidability is Always Decidable
In comp.theory Peter Olcott <NoS...@ocr4screen.com> wrote:

> There are only three possibilities:
> (a) Halting
> (b) Not Halting
> (c) Undecidable
> If it is not either (b) or (c) then it goes to here.

*sigh* How do you propose to distinguish between cases (a) and (b) in
a way that is guaranteed to complete in finite time?

It doesn't matter how many times you wrap a badly named function
around it: it's the halting problem all the way down.

--
Leif Roar Moldskred


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joshua Cranmer  
View profile  
 More options Apr 18 2012, 10:07 am
Newsgroups: comp.theory, sci.logic
From: Joshua Cranmer <Pidgeo...@verizon.invalid>
Date: Wed, 18 Apr 2012 09:07:18 -0500
Local: Wed, Apr 18 2012 10:07 am
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 5:15 AM, Peter Olcott wrote:

> This is a partial function on the subset of the input that is decidable
> and does halt.

You have not established that such a function would be computable. See
my other response to your message.

--
Beware of bugs in the above code; I have only proved it correct, not
tried it. -- Donald E. Knuth


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Patricia Shanahan  
View profile  
 More options Apr 18 2012, 10:57 am
Newsgroups: comp.theory, sci.logic
From: Patricia Shanahan <p...@acm.org>
Date: Wed, 18 Apr 2012 07:57:50 -0700
Local: Wed, Apr 18 2012 10:57 am
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 7:07 AM, Joshua Cranmer wrote:

> On 4/18/2012 5:15 AM, Peter Olcott wrote:
>> This is a partial function on the subset of the input that is decidable
>> and does halt.

> You have not established that such a function would be computable. See
> my other response to your message.

This is, I think, the major problem in PO's thinking. He deeply believes
that any algorithm he wants to exist must exist.

That means he can skip the work the rest of us would have to do to prove
a function is computable, such as to writing out an algorithm, proving
it always terminates, and proving that when it terminates its result
matches the function.

Patricia


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ralph Hartley  
View profile  
 More options Apr 18 2012, 12:35 pm
Newsgroups: comp.theory, sci.logic
From: Ralph Hartley <hart...@aic.nrl.navy.mil>
Date: Wed, 18 Apr 2012 12:35:19 -0400
Local: Wed, Apr 18 2012 12:35 pm
Subject: Re: Proof that Decidability is Always Decidable
On 04/17/2012 07:44 PM, Peter Olcott wrote:

But

RunForever(String input) {
   for (int x=0; true; x++); // obvious infinite loop

}

Decidable(RunForever,anything);

Also returns False, if Halts() behaves as described.

Is that correct?

Are *all* non-halting TMs "undecidable"?

Ralph Hartley


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 6:18 pm
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 17:18:26 -0500
Local: Wed, Apr 18 2012 6:18 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 7:45 AM, Leif Roar Moldskred wrote:
> In comp.theory Peter Olcott<NoS...@ocr4screen.com>  wrote:

>> There are only three possibilities:
>> (a) Halting
>> (b) Not Halting
>> (c) Undecidable
>> If it is not either (b) or (c) then it goes to here.
> *sigh* How do you propose to distinguish between cases (a) and (b) in
> a way that is guaranteed to complete in finite time?

Provide any simple example, I will show you how.

As far as I can tell the only possible instance of an infinite time
requirement is if the Halt decider simulates its input TM and the input
TM does not halt. If it is given the the Halt decider does not simulate
its input TM, then it can be concluded that the time to decide is finite.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 6:19 pm
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 17:19:10 -0500
Local: Wed, Apr 18 2012 6:19 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 9:07 AM, Joshua Cranmer wrote:

> On 4/18/2012 5:15 AM, Peter Olcott wrote:
>> This is a partial function on the subset of the input that is decidable
>> and does halt.

> You have not established that such a function would be computable. See
> my other response to your message.

Try and show a valid counter-example where it is not computable.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 6:22 pm
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 17:22:25 -0500
Local: Wed, Apr 18 2012 6:22 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 9:57 AM, Patricia Shanahan wrote:

> On 4/18/2012 7:07 AM, Joshua Cranmer wrote:
>> On 4/18/2012 5:15 AM, Peter Olcott wrote:
>>> This is a partial function on the subset of the input that is decidable
>>> and does halt.

>> You have not established that such a function would be computable. See
>> my other response to your message.

> This is, I think, the major problem in PO's thinking. He deeply believes
> that any algorithm he wants to exist must exist.

There are only thee possibilities for a TM:
(1) Halting
(2) Not Halting
(3) Undecidable

If it only cares about (1) and can thus roll (2) and (3) together, and
it does not determine (1) by simulating its input, then it seems to
logically follow that it could divide any input into (1) or {2, 3} in
finite time.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 6:25 pm
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 17:25:46 -0500
Local: Wed, Apr 18 2012 6:25 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 11:35 AM, Ralph Hartley wrote:

A TM computation can only do one of three things:
(1) Halt in its accept state.
(2) Halt in its reject state.
(3) Loop, which means to never decide, either true or false.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 7:05 pm
Newsgroups: sci.logic, comp.theory
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 18:05:08 -0500
Local: Wed, Apr 18 2012 7:05 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 5:31 PM, Daryl McCullough wrote:

It will halt using an greater understanding of PI than is currently
available, thus the brute force approach that would take an infinite
amount of time if this sequence does not occur, is not logically entailed.

Allowing for an unlimited amount of technological advances, this method
that determines whether or not this sequence occurs in PI could
eventually (within finite time) figure out for itself how to determine
this answer.

This TM could start with the sum total of every detail of all knowledge
that is currently available, and have the logical reasoning ability
greater than any individual that has ever existed in any subject.
Furthermore it could have one ability to no human has, it could avoid
ever making the same mistake twice.

A machine such as this could answer your question within finite time.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joshua Cranmer  
View profile  
 More options Apr 18 2012, 8:26 pm
Newsgroups: comp.theory, sci.logic
From: Joshua Cranmer <Pidgeo...@verizon.invalid>
Date: Wed, 18 Apr 2012 19:26:47 -0500
Local: Wed, Apr 18 2012 8:26 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 5:19 PM, Peter Olcott wrote:

> On 4/18/2012 9:07 AM, Joshua Cranmer wrote:
>> On 4/18/2012 5:15 AM, Peter Olcott wrote:
>>> This is a partial function on the subset of the input that is decidable
>>> and does halt.

>> You have not established that such a function would be computable. See
>> my other response to your message.

> Try and show a valid counter-example where it is not computable.

Note that your function is not sufficiently well-defined, as you are
still incredibly vague on what "decidability" is, especially since you
treat it as a global invariant property yet define it with respect to an
unnamed Turing machine.

I will also take the time to point out that failing to find a
counterexample does not make a proof. And before you retort your tired
counterclaim about the Church-Turing Thesis, let me point out that it is
not a theorem but a fact which is considered to be evidentially true by
the fact that several different computation models have been shown to be
more no more powerful than a Turing machine, as well as the fact that a
Turing machine can emulate pretty much all the mathematics we know with
the exception of that which involves infinite sets (which our physical
knowledge implies can't be done anyways, since our universe is, as far
as we can tell, merely finite). About the only process that can't be
emulated by a Turing machine given current knowledge [1] is basically
consciousness, or, more specifically, intuition and creativity. Finding
a counterexample to the Church-Turing Thesis pretty much necessitates
discovering a radical flaw in our current models of physics, so it can
be considered "proven" only in the same sense that the Standard Model of
physics or the Laws of Thermodynamics are considered "proven."

Now, if you still want a counterexample badly, I will point out that
there exists a large set of problems that are undecidable yet
recognizable. While I can't say if you'd dismiss the recognizers as not
being "decidable", given the closest definitions I have seen you give,
they are not. Today's example is *thumbs through Wikipedia* the Turing
machine that decides whether or not the polynomial equation (using
integer coefficients) described by its input has a solution in the integers.

[1] Okay, quantum mechanics can "do" things exponentially faster, but
it's still possible with a powerful enough Turing machine.

--
Beware of bugs in the above code; I have only proved it correct, not
tried it. -- Donald E. Knuth


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 8:33 pm
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 19:33:54 -0500
Local: Wed, Apr 18 2012 8:33 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 7:26 PM, Joshua Cranmer wrote:

"Decidability" has been completely specified as of the first posting of
this thread, please look at this again.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joshua Cranmer  
View profile  
 More options Apr 18 2012, 8:46 pm
Newsgroups: comp.theory, sci.logic
From: Joshua Cranmer <Pidgeo...@verizon.invalid>
Date: Wed, 18 Apr 2012 19:46:48 -0500
Local: Wed, Apr 18 2012 8:46 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 7:33 PM, Peter Olcott wrote:

> "Decidability" has been completely specified as of the first posting of
> this thread, please look at this again.

I see one of two possible definitions in the first post:
1. Does not halt.
2. An input is decidable (i.e., a circular definition).

In the first sense, it is exactly equivalent to the Halting problem, and
so the property is known to be uncomputable. In the second sense, it has
a circular definition, so no conclusion can be reached.

--
Beware of bugs in the above code; I have only proved it correct, not
tried it. -- Donald E. Knuth


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 9:15 pm
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 20:15:03 -0500
Local: Wed, Apr 18 2012 9:15 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 7:46 PM, Joshua Cranmer wrote:

> On 4/18/2012 7:33 PM, Peter Olcott wrote:
>> "Decidability" has been completely specified as of the first posting of
>> this thread, please look at this again.

> I see one of two possible definitions in the first post:
> 1. Does not halt.

Yes this is it.

> 2. An input is decidable (i.e., a circular definition).

> In the first sense, it is exactly equivalent to the Halting problem,
> and so the property is known to be uncomputable.

No, not at all. Look at it again and see if you can see the difference.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Olcott  
View profile  
 More options Apr 18 2012, 10:09 pm
Newsgroups: comp.theory, sci.logic
From: Peter Olcott <NoS...@OCR4Screen.com>
Date: Wed, 18 Apr 2012 21:09:16 -0500
Local: Wed, Apr 18 2012 10:09 pm
Subject: Re: Proof that Decidability is Always Decidable
On 4/18/2012 7:46 PM, Joshua Cranmer wrote:
> On 4/18/2012 7:33 PM, Peter Olcott wrote:
>> "Decidability" has been completely specified as of the first posting of
>> this thread, please look at this again.

> I see one of two possible definitions in the first post:
> 1. Does not halt.
> 2. An input is decidable (i.e., a circular definition).

Actually both of these are incorrect.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Leif Roar Moldskred  
View profile  
 More options Apr 18 2012, 10:19 pm
Newsgroups: comp.theory, sci.logic
From: Leif Roar Moldskred <le...@dimnakorr.com>
Date: Wed, 18 Apr 2012 21:19:34 -0500
Local: Wed, Apr 18 2012 10:19 pm
Subject: Re: Proof that Decidability is Always Decidable
In comp.theory Peter Olcott <NoS...@ocr4screen.com> wrote:

>> *sigh* How do you propose to distinguish between cases (a) and (b) in
>> a way that is guaranteed to complete in finite time?
> Provide any simple example, I will show you how.

You have to be able to show that you can do it for _any_ TM. Showing
it for a simple example would prove nothing.

> As far as I can tell the only possible instance of an infinite time
> requirement is if the Halt decider simulates its input TM and the input
> TM does not halt. If it is given the the Halt decider does not simulate
> its input TM, then it can be concluded that the time to decide is finite.

In other words, you're just blowing smoke and assuming the existence
of what you're trying to prove. Not that this hasn't been apparent
long before now, of course, but honestly -- who do you think you're
fooling at this stage? Yourself?

--
Leif Roar Moldskred


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 176   Newer >
« Back to Discussions « Newer topic     Older topic »