Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > sci.logic > #334683

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

From olcott <polcott333@gmail.com>
Newsgroups sci.logic, comp.theory
Subject Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT
Date 2024-05-29 09:00 -0500
Organization A noiseless patient Spider
Message-ID <v37ced$15rjf$1@dont-email.me> (permalink)
References (27 earlier) <v362er$2d367$1@i2pn2.org> <v364hp$vl7m$1@dont-email.me> <v36801$2d368$2@i2pn2.org> <v368su$100kd$4@dont-email.me> <v373mu$2d367$6@i2pn2.org>

Cross-posted to 2 groups.

Show all headers | View raw


On 5/29/2024 6:31 AM, Richard Damon wrote:
> On 5/28/24 11:54 PM, olcott wrote:
>> On 5/28/2024 10:38 PM, Richard Damon wrote:
>>> On 5/28/24 10:39 PM, olcott wrote:
>>>> On 5/28/2024 9:04 PM, Richard Damon wrote:
>>>>> On 5/28/24 10:59 AM, olcott wrote:
>>>>>> On 5/28/2024 1:59 AM, Mikko wrote:
>>>>>>> On 2024-05-27 14:34:14 +0000, olcott said:
>>>>>>>
>>>>>>>> ?- 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.
>>>>>>>
>>>>>>> The words "not" and "true" of Prolog are meaningful in some contexts
>>>>>>> but not above. The word "true" is meaningful only when it has no 
>>>>>>> arguments.
>>>>>>>
>>>>>>
>>>>>> That Prolog construes any expression having the same structure as the
>>>>>> Liar Paradox as having a cycle in the directed graph of its 
>>>>>> evaluation
>>>>>> sequence already completely proves my point. In other words Prolog
>>>>>> is saying that there is something wrong with the expression and it 
>>>>>> must
>>>>>> be rejected.
>>>>>
>>>>> But Prolog doesn't support powerful enough logic to handle the 
>>>>> system like Tarski and Godel are talking about.
>>>>>
>>>>> The fact that Prolog just rejects it shows that.
>>>>>
>>>>
>>>> Your ignorance is no excuse.
>>>
>>> What ignorance?
>>>
>>
>> The fact that you assert that you know the underlying details of
>> https://www.swi-prolog.org/pldoc/man?predicate=unify_with_occurs_check/2
>> without even glancing at the documentation and write-up in Clocksin and
>> Mellish seems to be willful ignorance.
> 
> What makes you think that? I understand how Prolog works, and why it 
> only models relatively simple logic systems, because it just can't 
> handle the higher order logical primitives. It can't even handle full 
> first order logic.
> 

Your explanation of
https://www.swi-prolog.org/pldoc/man?predicate=unify_with_occurs_check/2
was ridiculous.

BEGIN:(Clocksin & Mellish 2003:254)
Finally, a note about how Prolog matching sometimes differs from the 
unification used in Resolution. Most Prolog systems will allow you to 
satisfy goals like:
    equal(X, X).
    ?- equal(foo(Y), Y).

that is, they will allow you to match a term against an uninstantiated
subterm of itself. In this example, foo(Y) is matched against Y, which
appears within it. As a result, Y will stand for foo(Y), which is
foo(foo(Y)) (because of what Y stands for), which is foo(foo(foo(Y))),
and so on. So Y ends up standing for some kind of infinite structure.

Note that, whereas they may allow you to construct something like this,
most Prolog systems will not be able to write it out at the end.
According to the formal definition of Unification, this kind of
“infinite term” should never come to exist. Thus Prolog systems that
allow a term to match an uninstantiated subterm of itself do not act
correctly as Resolution theorem provers. In order to make them do so, we
would have to add a check that a variable cannot be instantiated to
something containing itself. Such a check, an occurs check, would be
straightforward to implement, but would slow down the execution of
Prolog programs considerably. Since it would only affect very few
programs, most implementors have simply left it out 1. 


    1 The Prolog standard states that the result is undefined if a Prolog
    system attempts to match a term against an uninstantiated subterm of
    itself, which means that programs which cause tills to happen will
    not be portable. A portable program should ensure that wherever an
    occurs check might be applicable the built-in predicate
    unify_with_occurs_check/2 is used explicitly instead of the normal
    unification operation of the Prolog implementation. As its
    name suggests, this predicate acts like =/2 except that it fails if
    an occurs check detects an illegal attempt to instantiate a variable.
END:(Clocksin & Mellish 2003:254)

Clocksin, W.F. and Mellish, C.S. 2003. Programming in Prolog Using the 
ISO Standard Fifth Edition, 254. Berlin Heidelberg: Springer-Verlag.

-- 
Copyright 2024 Olcott "Talent hits a target no one else can hit; Genius
hits a target no one else can see." Arthur Schopenhauer

Back to sci.logic | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-10 21:36 -0500
  Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-10 23:16 -0400
    Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-10 22:35 -0500
      Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-10 23:49 -0400
        Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-10 23:27 -0500
          Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-11 11:36 -0400
          Re: True on the basis of meaning Mikko <mikko.levanto@iki.fi> - 2024-05-12 10:42 +0300
            Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 09:22 -0500
              Re: True on the basis of meaning Mikko <mikko.levanto@iki.fi> - 2024-05-12 18:33 +0300
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 12:19 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-12 13:52 -0400
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 13:06 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-12 14:22 -0400
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 13:36 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-12 16:33 -0400
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 16:54 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-12 18:40 -0400
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 17:56 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-12 19:02 -0400
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 18:22 -0500
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 18:53 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-12 20:06 -0400
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-12 19:55 -0400
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 19:07 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-12 20:35 -0400
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-12 22:41 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-13 07:18 -0400
                Re: True on the basis of meaning --- Good job Richard ! olcott <polcott333@gmail.com> - 2024-05-13 10:04 -0500
                Re: True on the basis of meaning --- Good job Richard ! Richard Damon <richard@damon-family.org> - 2024-05-13 20:29 -0400
                Re: True on the basis of meaning --- Good job Richard ! olcott <polcott333@gmail.com> - 2024-05-13 19:48 -0500
                Re: True on the basis of meaning --- Good job Richard ! Richard Damon <richard@damon-family.org> - 2024-05-13 21:52 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-13 21:03 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-13 22:31 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-13 21:49 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-13 23:16 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-13 22:36 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-14 07:31 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-14 08:53 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-14 22:16 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-14 21:59 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-14 23:44 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-14 23:11 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-15 07:16 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-15 08:48 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-15 20:26 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-15 19:36 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-15 20:52 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method immibis <news@immibis.com> - 2024-05-16 05:38 +0200
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-15 22:58 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-15 20:20 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-15 21:39 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-15 20:57 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-15 22:07 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-15 21:17 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-15 22:33 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-15 21:42 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-15 23:17 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-15 22:33 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-16 07:29 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-16 08:37 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-16 22:29 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-16 21:38 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-15 23:44 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-16 07:32 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-16 08:59 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-16 22:29 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-16 21:44 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-16 22:54 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-16 22:20 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-16 23:29 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-16 22:51 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-17 07:41 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-17 09:32 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-17 21:07 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-17 20:22 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-17 21:33 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-17 21:19 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-17 22:40 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-17 22:35 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-18 08:43 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-18 09:15 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-18 10:32 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-18 11:48 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-18 12:56 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-18 12:26 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-18 13:38 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-18 14:35 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-18 15:54 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-18 14:46 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-18 15:57 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-18 15:00 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-18 18:22 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-18 17:47 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-18 19:04 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-18 22:47 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-19 07:55 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-19 08:41 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Mikko <mikko.levanto@iki.fi> - 2024-05-19 17:03 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-19 09:15 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Mikko <mikko.levanto@iki.fi> - 2024-05-20 10:55 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-20 12:48 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Mikko <mikko.levanto@iki.fi> - 2024-05-21 11:05 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-21 09:36 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-22 19:58 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-22 14:52 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Richard Damon <richard@damon-family.org> - 2024-05-22 19:01 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-22 18:55 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Richard Damon <richard@damon-family.org> - 2024-05-22 21:03 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-22 20:36 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Richard Damon <richard@damon-family.org> - 2024-05-22 22:31 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-22 22:45 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Richard Damon <richard@damon-family.org> - 2024-05-23 07:29 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-23 08:46 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Richard Damon <richard@damon-family.org> - 2024-05-23 21:44 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-23 08:32 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-24 11:18 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-24 14:16 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-25 11:01 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-25 13:13 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-26 11:38 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-26 08:52 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-27 11:00 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-27 09:15 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-27 17:19 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-05-27 09:34 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Mikko <mikko.levanto@iki.fi> - 2024-05-28 09:59 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-05-28 09:59 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Richard Damon <richard@damon-family.org> - 2024-05-28 22:04 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-05-28 21:39 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Richard Damon <richard@damon-family.org> - 2024-05-28 23:38 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-05-28 22:54 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Richard Damon <richard@damon-family.org> - 2024-05-29 07:31 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-05-29 09:00 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Richard Damon <richard@damon-family.org> - 2024-05-29 19:47 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Python <python@invalid.org> - 2024-05-29 09:01 +0200
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-05-29 08:11 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Richard Damon <richard@damon-family.org> - 2024-05-29 19:47 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Mikko <mikko.levanto@iki.fi> - 2024-05-29 11:25 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-05-29 08:31 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Mikko <mikko.levanto@iki.fi> - 2024-05-30 09:52 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-05-30 08:43 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Mikko <mikko.levanto@iki.fi> - 2024-05-31 10:17 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-05-31 10:47 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Mikko <mikko.levanto@iki.fi> - 2024-06-01 10:32 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-06-01 10:41 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Mikko <mikko.levanto@iki.fi> - 2024-06-02 10:29 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-06-02 08:01 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Mikko <mikko.levanto@iki.fi> - 2024-06-03 10:19 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT olcott <polcott333@gmail.com> - 2024-06-03 07:56 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method MTT Mikko <mikko.levanto@iki.fi> - 2024-06-03 17:14 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-23 11:09 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-22 20:07 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-23 08:27 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-24 12:15 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-23 11:05 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-23 08:23 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-24 12:25 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-23 10:54 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) Mikko <mikko.levanto@iki.fi> - 2024-05-22 10:57 +0300
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method (agreement) olcott <polcott333@gmail.com> - 2024-05-22 10:55 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-19 13:17 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-19 15:12 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-19 19:30 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-20 13:59 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-20 20:57 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-20 20:54 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-20 22:24 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-20 21:56 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-20 23:37 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-21 00:52 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-21 07:50 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-21 10:00 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method immibis <news@immibis.com> - 2024-05-21 18:08 +0200
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-21 21:46 -0400
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method immibis <news@immibis.com> - 2024-05-20 13:29 +0200
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method olcott <polcott333@gmail.com> - 2024-05-17 00:28 -0500
                Re: True on the basis of meaning --- Good job Richard ! ---Socratic method Richard Damon <richard@damon-family.org> - 2024-05-17 07:41 -0400
                Re: True on the basis of meaning Mikko <mikko.levanto@iki.fi> - 2024-05-13 12:23 +0300
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-13 09:48 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-13 20:29 -0400
                Re: True on the basis of meaning Mikko <mikko.levanto@iki.fi> - 2024-05-14 12:08 +0300
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-14 09:42 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-14 22:16 -0400
                Re: True on the basis of meaning Mikko <mikko.levanto@iki.fi> - 2024-05-15 11:39 +0300
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-15 09:27 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-15 20:25 -0400
                Re: True on the basis of meaning Mikko <mikko.levanto@iki.fi> - 2024-05-16 11:44 +0300
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-16 10:05 -0500
                Re: True on the basis of meaning Mikko <mikko.levanto@iki.fi> - 2024-05-17 18:49 +0300
                Re: True on the basis of meaning olcott <polcott333@gmail.com> - 2024-05-17 12:23 -0500
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-17 21:07 -0400
                Re: True on the basis of meaning Mikko <mikko.levanto@iki.fi> - 2024-05-18 12:21 +0300
                Re: True on the basis of meaning Richard Damon <richard@damon-family.org> - 2024-05-14 22:24 -0400
                Re: True on the basis of meaning --- Tarski olcott <polcott333@gmail.com> - 2024-05-13 09:34 -0500
                Re: True on the basis of meaning --- Tarski Mikko <mikko.levanto@iki.fi> - 2024-05-14 12:16 +0300
                Re: True on the basis of meaning --- Tarski olcott <polcott333@gmail.com> - 2024-05-14 10:18 -0500
                Re: True on the basis of meaning --- Tarski Richard Damon <richard@damon-family.org> - 2024-05-14 22:16 -0400
                Re: True on the basis of meaning --- Tarski Mikko <mikko.levanto@iki.fi> - 2024-05-15 11:43 +0300
                Re: True on the basis of meaning --- Tarski olcott <polcott333@gmail.com> - 2024-05-15 09:31 -0500
                Re: True on the basis of meaning --- Tarski Richard Damon <richard@damon-family.org> - 2024-05-15 20:26 -0400
                Re: True on the basis of meaning --- Tarski Mikko <mikko.levanto@iki.fi> - 2024-05-16 11:59 +0300
                Re: True on the basis of meaning --- Tarski olcott <polcott333@gmail.com> - 2024-05-16 11:00 -0500
                Re: True on the basis of meaning --- Tarski Mikko <mikko.levanto@iki.fi> - 2024-05-17 18:56 +0300
                Re: True on the basis of meaning --- Tarski olcott <polcott333@gmail.com> - 2024-05-17 12:28 -0500
                Re: True on the basis of meaning --- Tarski Richard Damon <richard@damon-family.org> - 2024-05-17 21:07 -0400
                Re: True on the basis of meaning --- Tarski Mikko <mikko.levanto@iki.fi> - 2024-05-18 10:46 +0300
                Re: True on the basis of meaning --- Tarski olcott <polcott333@gmail.com> - 2024-05-18 11:59 -0500
                Re: True on the basis of meaning --- Tarski Mikko <mikko.levanto@iki.fi> - 2024-05-14 13:09 +0300
                Re: True on the basis of meaning --- Tarski olcott <polcott333@gmail.com> - 2024-05-14 10:26 -0500

csiph-web