Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT

Liste des GroupesRevenir à c theory 
Sujet : Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT
De : polcott333 (at) *nospam* gmail.com (olcott)
Groupes : sci.logic comp.theory
Date : 27. May 2024, 15:34:14
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v325l6$2pkb$3@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
User-Agent : Mozilla Thunderbird
On 5/27/2024 9:19 AM, Mikko wrote:
On 2024-05-27 14:15:57 +0000, olcott said:
 
On 5/27/2024 3:00 AM, Mikko wrote:
<snip>

Users of your MTT basically need two programs: one that checks whether
the input is syntactiaclly correct and identifies at least one error
if it is not, and one that checks whether a proof (that may but need
not have unproven premises) is valid and identifies at least one error
if it is not.
>
>
MTT is build with YACC and LEX and outputs the XML of the
input expression.
>
LP := ~True(L, LP)
>
definition_2  token="ASSIGN_ALIAS"
| definition_2  token="IDENTIFIER"  value="LP"
| sentence_2  token="NOT"
| | atomic_sentence_1  token="IDENTIFIER"  value="True"
| | | term_list_1
| | | | term_2  token="IDENTIFIER"  value="L"
| | | | term_2  token="IDENTIFIER"  value="LP"
>
Directed graph of evaulation sequence of LP
Nodes on the left edges on the right
00 NOT   01
01 True   02, 00  // cycle
02 L
>
<definition_2  token="ASSIGN_ALIAS">
  <definition_2  token="IDENTIFIER"  value="LP"/>
  <sentence_2  token="NOT">
   <atomic_sentence_1  token="IDENTIFIER"  value="True">
    <term_list_1>
     <term_2  token="IDENTIFIER"  value="L"/>
     <term_2  token="IDENTIFIER"  value="LP"/>
    </term_list_1>
   </atomic_sentence_1>
  </sentence_2>
</definition_2>
 That is not far from useful. Much of the code could be reused for
the more useful programs mentioned above.
 
Minimal Type Theory (YACC BNF)
https://www.researchgate.net/publication/331859461_Minimal_Type_Theory_YACC_BNF It correctly parses every MTT expression and translates it into XML.
The directed graph shown above does the same thing as
unify_with_occurs_check/2  in Prolog
The SWI-Prolog implementation of unify_with_occurs_check/2 is cycle-safe
and only guards against creating cycles, not against cycles that may
already be present in one of the arguments.
https://www.swi-prolog.org/pldoc/man?predicate=unify_with_occurs_check/2
?- LP = not(true(LP)).
LP = not(true(LP)).
?- unify_with_occurs_check(LP, not(true(LP))).
false.
In other words Prolog has detected a cycle in the directed graph of the
evaluation sequence of the structure of the Liar Paradox. Experts seem
to think that Prolog is taking "not" and "true" as meaningless and is
only evaluating the structure of the expression.
--
Copyright 2024 Olcott "Talent hits a target no one else can hit; Genius
hits a target no one else can see." Arthur Schopenhauer

Date Sujet#  Auteur
18 May 24 * Re: True on the basis of meaning --- Good job Richard ! ---Socratic method65Richard Damon
18 May 24 `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method64olcott
18 May 24  `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method63Richard Damon
18 May 24   `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method62olcott
18 May 24    `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method61Richard Damon
18 May 24     `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method60olcott
18 May 24      `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method59Richard Damon
18 May 24       `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method58olcott
18 May 24        `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method57Richard Damon
18 May 24         `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method56olcott
18 May 24          `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method55Richard Damon
18 May 24           `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method54olcott
18 May 24            `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method53Richard Damon
18 May 24             +* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method2olcott
18 May 24             i`- Re: True on the basis of meaning --- Good job Richard ! ---Socratic method1Richard Damon
18 May 24             `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method50olcott
18 May 24              `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method49Richard Damon
18 May 24               `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method48olcott
19 May 24                `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method47Richard Damon
19 May 24                 `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method46olcott
19 May 24                  `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method45Richard Damon
19 May 24                   `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method44olcott
19 May 24                    `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method43Richard Damon
19 May 24                     `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method42olcott
19 May 24                      +* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method15Richard Damon
19 May 24                      i`* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method14olcott
20 May 24                      i +* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method12Richard Damon
20 May 24                      i i`* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method11olcott
21 May 24                      i i `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method10Richard Damon
21 May 24                      i i  `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method9olcott
21 May 24                      i i   `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method8Richard Damon
21 May 24                      i i    `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method7olcott
21 May 24                      i i     `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method6Richard Damon
21 May 24                      i i      `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method5olcott
21 May 24                      i i       `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method4Richard Damon
21 May 24                      i i        `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method3olcott
21 May 24                      i i         +- Re: True on the basis of meaning --- Good job Richard ! ---Socratic method1immibis
22 May 24                      i i         `- Re: True on the basis of meaning --- Good job Richard ! ---Socratic method1Richard Damon
20 May 24                      i `- Re: True on the basis of meaning --- Good job Richard ! ---Socratic method1immibis
20 May 24                      `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method26olcott
22 May 24                       `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)25olcott
23 May 24                        `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)24Richard Damon
23 May 24                         `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)23olcott
23 May 24                          +* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)21Richard Damon
23 May 24                          i+* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)6olcott
23 May 24                          ii`* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)5Richard Damon
23 May 24                          ii `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)4olcott
23 May 24                          ii  `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)3Richard Damon
23 May 24                          ii   `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)2olcott
24 May 24                          ii    `- Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)1Richard Damon
25 May 24                          i`* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)14olcott
27 May 24                          i `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)13olcott
27 May 24                          i  `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT12olcott
28 May 24                          i   `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT11olcott
29 May 24                          i    `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT10Richard Damon
29 May 24                          i     `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT9olcott
29 May 24                          i      +* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT5Richard Damon
29 May 24                          i      i`* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT4olcott
29 May 24                          i      i `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT3Richard Damon
29 May 24                          i      i  `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT2olcott
30 May 24                          i      i   `- Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT1Richard Damon
29 May 24                          i      `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT3Python
29 May 24                          i       `* Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT2olcott
30 May 24                          i        `- Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT1Richard Damon
23 May 24                          `- Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement)1olcott

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal