• Defeating the Tarski Undefinability Theorem

    From olcott@polcott333@gmail.com to sci.logic,comp.ai.philosophy,comp.theory on Mon Aug 25 12:54:02 2025
    From Newsgroup: sci.logic

    All that we must do to defeat the Tarski Undefinability Theorem:

    We define the notion of formal system as an extended
    version of Prolog's Facts and Rules. This new system
    can handle arbitrary orders of logic. Encodes Facts
    in formalized natural language.

    The Rules only allow semantic logical entailment from
    Facts. When we do this Tarski's Liar Paradox basis is
    simply rejected as untrue and
    Boolean True(Language L, Expression E) becomes definable.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Damon@Richard@Damon-Family.org to sci.logic,comp.ai.philosophy,comp.theory on Mon Aug 25 19:16:32 2025
    From Newsgroup: sci.logic

    On 8/25/25 1:54 PM, olcott wrote:
    All that we must do to defeat the Tarski Undefinability Theorem:

    We define the notion of formal system as an extended
    version of Prolog's Facts and Rules. This new system
    can handle arbitrary orders of logic. Encodes Facts
    in formalized natural language.

    In other words, restrict them to very simple systems, too simple to
    support incompleteness or the limitation of the truth predicate.

    That is because prolog can't handle the properties of the Natural Numbers.


    The Rules only allow semantic logical entailment from
    Facts. When we do this Tarski's Liar Paradox basis is
    simply rejected as untrue and
    Boolean True(Language L, Expression E) becomes definable.



    And doesn't allow us to define the Arithmatic of Natural Numbers.

    Sorry, you don't understand the limitations of your logic.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Aug 26 13:11:46 2025
    From Newsgroup: sci.logic

    On 2025-08-25 17:54:02 +0000, olcott said:

    All that we must do to defeat the Tarski Undefinability Theorem:

    Bad luck if you must but can't.

    We define the notion of formal system as an extended
    version of Prolog's Facts and Rules. This new system
    can handle arbitrary orders of logic.

    Prolog's system already can. But it cannot handle negations.

    Encodes Facts
    in formalized natural language.

    The Rules only allow semantic logical entailment from
    Facts.

    You can't encode "semantic logical entailment" in the rules.
    Without a formal definition those words are formally nonsense.

    When we do this Tarski's Liar Paradox basis is
    simply rejected as untrue and
    Boolean True(Language L, Expression E) becomes definable.

    As Tarski proved, if True(Language L, Expression E) is definable
    then Liar Paradox is provably true (therefore not rejectable as
    untrue) and provably false, so true is the same as false.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Aug 26 10:16:31 2025
    From Newsgroup: sci.logic

    On 8/26/2025 5:11 AM, Mikko wrote:
    On 2025-08-25 17:54:02 +0000, olcott said:

    All that we must do to defeat the Tarski Undefinability Theorem:

    Bad luck if you must but can't.


    I create the basic architecture and others implement it.

    We define the notion of formal system as an extended
    version of Prolog's Facts and Rules. This new system
    can handle arbitrary orders of logic.

    Prolog's system already can. But it cannot handle negations.


    It not that it can't handle negations.
    It handles them differently.
    https://en.wikipedia.org/wiki/Negation_as_failure
    That is the key to avoiding self-referential paradoxes.
    They simply are not derived in the system making them
    untrue in the system.

    LP = "this sentence is not true"
    Boolean True("English", LP)==FALSE
    Boolean True("English", ~LP)==FALSE

    Encodes Facts
    in formalized natural language.

    The Rules only allow semantic logical entailment from
    Facts.

    You can't encode "semantic logical entailment" in the rules.
    Without a formal definition those words are formally nonsense.


    https://plato.stanford.edu/entries/montague-semantics/
    Formalizes natural language semantics syntactically.

    When we do this Tarski's Liar Paradox basis is
    simply rejected as untrue and
    Boolean True(Language L, Expression E) becomes definable.

    As Tarski proved, if True(Language L, Expression E) is definable
    then Liar Paradox is provably true (therefore not rejectable as
    untrue) and provably false, so true is the same as false.


    Not at all. Tarski got confused by this.
    This sentence is not true: "This sentence is not true" is true.

    He never noticed that the Liar Paradox is not a bearer of truth
    and must be rejected on that basis as not an member of any
    logic system. Prolog does notice that:

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Aug 27 11:28:23 2025
    From Newsgroup: sci.logic

    On 2025-08-26 15:16:31 +0000, olcott said:

    On 8/26/2025 5:11 AM, Mikko wrote:
    On 2025-08-25 17:54:02 +0000, olcott said:

    All that we must do to defeat the Tarski Undefinability Theorem:

    Bad luck if you must but can't.

    I create the basic architecture and others implement it.

    Post again when you have the basic architecture on a web site.

    We define the notion of formal system as an extended
    version of Prolog's Facts and Rules. This new system
    can handle arbitrary orders of logic.

    Prolog's system already can. But it cannot handle negations.

    It not that it can't handle negations.

    It is.

    It handles them differently.

    It handles a different thing.

    https://en.wikipedia.org/wiki/Negation_as_failure
    That is the key to avoiding self-referential paradoxes.
    They simply are not derived in the system making them
    untrue in the system.

    You can define a self-reference. You cant refer to the
    negation of self.

    LP = "this sentence is not true"
    Boolean True("English", LP)==FALSE
    Boolean True("English", ~LP)==FALSE

    There is nothing in Prolog that means '~'.

    Encodes Facts
    in formalized natural language.

    The Rules only allow semantic logical entailment from
    Facts.

    You can't encode "semantic logical entailment" in the rules.
    Without a formal definition those words are formally nonsense.

    https://plato.stanford.edu/entries/montague-semantics/
    Formalizes natural language semantics syntactically.

    You can't formalize all of natural language semantics.

    When we do this Tarski's Liar Paradox basis is
    simply rejected as untrue and
    Boolean True(Language L, Expression E) becomes definable.

    It doesn't be come definable if it isn't already.

    As Tarski proved, if True(Language L, Expression E) is definable
    then Liar Paradox is provably true (therefore not rejectable as
    untrue) and provably false, so true is the same as false.

    Not at all. Tarski got confused by this.
    This sentence is not true: "This sentence is not true" is true.

    No, Tarski got it right when he said that "This sentence is not true"
    is not true. You can't prove that "This sentence is not true" is true.

    He never noticed that the Liar Paradox is not a bearer of truth
    and must be rejected on that basis as not an member of any
    logic system. Prolog does notice that:

    What he used in place of the Liar paradox is a valid sentence that
    can be used in proofs, either as a sentence or as a part of a larger
    sentence.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    Note that the word "not" above does not mean the logical negation.

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Note that the word "not" above does not mean the logical negation.

    That unify_with_occurs_check fails does not prove that the two
    expressions do not mean the same.

    ?- unify_with_occurs_check(LP, true(LP)).
    false.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Aug 27 10:27:26 2025
    From Newsgroup: sci.logic

    On 8/27/2025 3:28 AM, Mikko wrote:
    On 2025-08-26 15:16:31 +0000, olcott said:

    On 8/26/2025 5:11 AM, Mikko wrote:
    On 2025-08-25 17:54:02 +0000, olcott said:

    All that we must do to defeat the Tarski Undefinability Theorem:

    Bad luck if you must but can't.

    I create the basic architecture and others implement it.

    Post again when you have the basic architecture on a web site.


    No. The basic architecture requires encoding the
    entire finite set of human general knowledge that
    can be expressed in language in formalized natural
    language. The only inference rule is semantic logical
    entailment.

    This is the same idea as Prolog's Facts and Rules
    as well as negation as failure. The only difference
    is that my system has an enormously greater scope,
    much more knowledge.

    We define the notion of formal system as an extended
    version of Prolog's Facts and Rules. This new system
    can handle arbitrary orders of logic.

    Prolog's system already can. But it cannot handle negations.

    It not that it can't handle negations.

    It is.

    It handles them differently.

    It handles a different thing.

    https://en.wikipedia.org/wiki/Negation_as_failure
    That is the key to avoiding self-referential paradoxes.
    They simply are not derived in the system making them
    untrue in the system.

    You can define a self-reference. You cant refer to the
    negation of self.


    Pathological self reference is rejected by
    unify_with_occurs_check()

    LP =-a "this sentence is not true"
    Boolean True("English", LP)==FALSE
    Boolean True("English", ~LP)==FALSE

    There is nothing in Prolog that means '~'.

    Encodes Facts
    in formalized natural language.

    The Rules only allow semantic logical entailment from
    Facts.

    You can't encode "semantic logical entailment" in the rules.
    Without a formal definition those words are formally nonsense.

    https://plato.stanford.edu/entries/montague-semantics/
    Formalizes natural language semantics syntactically.

    You can't formalize all of natural language semantics.


    Sure you can. Merely extend Montague Grammar.
    If you don't understand Montague Grammar then
    you lack the basis for evaluating this aspect
    of my proposal.

    When we do this Tarski's Liar Paradox basis is
    simply rejected as untrue and
    Boolean True(Language L, Expression E) becomes definable.

    It doesn't be come definable if it isn't already.


    It is definable only within the Prolog like architecture
    that I specified.

    As Tarski proved, if True(Language L, Expression E) is definable
    then Liar Paradox is provably true (therefore not rejectable as
    untrue) and provably false, so true is the same as false.

    Not at all. Tarski got confused by this.
    This sentence is not true: "This sentence is not true" is true.

    No, Tarski got it right when he said that "This sentence is not true"
    is not true.

    He never said that.
    Instead he said the outer sentence is true.
    This sentence is not true: "This sentence is not true".
    and confused himself into believing that True(L,x)
    requires an infinite hierarchy.

    You can't prove that "This sentence is not true" is true.


    I have proven that it is not true because it is not a bearer of truth.

    He never noticed that the Liar Paradox is not a bearer of truth
    and must be rejected on that basis as not an member of any
    logic system. Prolog does notice that:

    What he used in place of the Liar paradox is a valid sentence that
    can be used in proofs, either as a sentence or as a part of a larger sentence.


    No he clearly used the Liar paradox itself.

    It would then be possible to reconstruct the
    antinomy of the liar in the metalanguage, by
    forming in the language itself a sentence x
    such that the sentence of the metalanguage
    which is correlated with x asserts that x is
    not a true sentence.

    https://liarparadox.org/Tarski_247_248.pdf

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    Note that the word "not" above does not mean the logical negation.

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Note that the word "not" above does not mean the logical negation.

    That unify_with_occurs_check fails does not prove that the two
    expressions do not mean the same.

    ?- unify_with_occurs_check(LP, true(LP)).
    false.


    It means that LP is not a truth bearer.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Aug 28 10:50:00 2025
    From Newsgroup: sci.logic

    On 2025-08-27 15:27:26 +0000, olcott said:

    On 8/27/2025 3:28 AM, Mikko wrote:
    On 2025-08-26 15:16:31 +0000, olcott said:

    On 8/26/2025 5:11 AM, Mikko wrote:
    On 2025-08-25 17:54:02 +0000, olcott said:

    All that we must do to defeat the Tarski Undefinability Theorem:

    Bad luck if you must but can't.

    I create the basic architecture and others implement it.

    Post again when you have the basic architecture on a web site.

    No.

    OK, but then we can't discuss it.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Aug 28 10:31:28 2025
    From Newsgroup: sci.logic

    On 8/28/2025 2:50 AM, Mikko wrote:
    On 2025-08-27 15:27:26 +0000, olcott said:

    On 8/27/2025 3:28 AM, Mikko wrote:
    On 2025-08-26 15:16:31 +0000, olcott said:

    On 8/26/2025 5:11 AM, Mikko wrote:
    On 2025-08-25 17:54:02 +0000, olcott said:

    All that we must do to defeat the Tarski Undefinability Theorem:

    Bad luck if you must but can't.

    I create the basic architecture and others implement it.

    Post again when you have the basic architecture on a web site.

    No.

    OK, but then we can't discuss it.


    Prolog already knows to reject the Liar Paradox
    as not a truth-bearer.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    This by itself proves that Tarski was wrong
    for basing his analysis of a the possibility
    of a Boolean True(Language L, Expression E)
    on a non truth bearer.

    It would then be possible to reconstruct the
    antinomy of the liar in the metalanguage, by
    forming in the language itself a sentence x
    such that the sentence of the metalanguage
    which is correlated with x asserts that x
    is not a true sentence.
    https://liarparadox.org/Tarski_247_248.pdf
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Aug 29 09:42:28 2025
    From Newsgroup: sci.logic

    On 2025-08-28 15:31:28 +0000, olcott said:

    On 8/28/2025 2:50 AM, Mikko wrote:
    On 2025-08-27 15:27:26 +0000, olcott said:

    On 8/27/2025 3:28 AM, Mikko wrote:
    On 2025-08-26 15:16:31 +0000, olcott said:

    On 8/26/2025 5:11 AM, Mikko wrote:
    On 2025-08-25 17:54:02 +0000, olcott said:

    All that we must do to defeat the Tarski Undefinability Theorem:

    Bad luck if you must but can't.

    I create the basic architecture and others implement it.

    Post again when you have the basic architecture on a web site.

    No.

    OK, but then we can't discuss it.

    Prolog already knows to reject the Liar Paradox
    as not a truth-bearer.

    No, it does not. Prolog doesn't identify anything as a "truth-bearer"
    or "non-truth-bearer".

    ?- LP = not(true(LP)).

    The Prolog standard allows an implementation to accept or reject that.
    Most implementations accept.

    LP = not(true(LP)).

    This time the implementation accepted and assigned a value to LP.

    ?- unify_with_occurs_check(LP, not(true(LP))).

    In this case an implementation is required to reject as the result
    of unification would be an expression that contains itself. Whether
    anything is a truth-bearer or not is not checked.

    false.

    Implementation rejected as required.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Aug 29 08:56:47 2025
    From Newsgroup: sci.logic

    On 8/29/2025 1:42 AM, Mikko wrote:
    On 2025-08-28 15:31:28 +0000, olcott said:

    On 8/28/2025 2:50 AM, Mikko wrote:
    On 2025-08-27 15:27:26 +0000, olcott said:

    On 8/27/2025 3:28 AM, Mikko wrote:
    On 2025-08-26 15:16:31 +0000, olcott said:

    On 8/26/2025 5:11 AM, Mikko wrote:
    On 2025-08-25 17:54:02 +0000, olcott said:

    All that we must do to defeat the Tarski Undefinability Theorem: >>>>>>>
    Bad luck if you must but can't.

    I create the basic architecture and others implement it.

    Post again when you have the basic architecture on a web site.

    No.

    OK, but then we can't discuss it.

    Prolog already knows to reject the Liar Paradox
    as not a truth-bearer.

    No, it does not. Prolog doesn't identify anything as a "truth-bearer"
    or "non-truth-bearer".

    The code below proves that LP is not a truth
    bearer even if Prolog were to call it an ice
    cream sundae with a cherry on top.

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.


    ?- LP = not(true(LP)).

    The Prolog standard allows an implementation to accept or reject that.
    Most implementations accept.

    LP = not(true(LP)).

    This time the implementation accepted and assigned a value to LP.

    ?- unify_with_occurs_check(LP, not(true(LP))).

    In this case an implementation is required to reject as the result
    of unification would be an expression that contains itself. Whether
    anything is a truth-bearer or not is not checked.

    false.

    Implementation rejected as required.


    Because it specifies infinite recursion.
    Other systems might just get stuck in infinite recursion.

    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* END:(Clocksin & Mellish 2003:254)

    https://www.researchgate.net/publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Aug 30 10:51:25 2025
    From Newsgroup: sci.logic

    On 2025-08-29 13:56:47 +0000, olcott said:

    On 8/29/2025 1:42 AM, Mikko wrote:
    On 2025-08-28 15:31:28 +0000, olcott said:

    On 8/28/2025 2:50 AM, Mikko wrote:
    On 2025-08-27 15:27:26 +0000, olcott said:

    On 8/27/2025 3:28 AM, Mikko wrote:
    On 2025-08-26 15:16:31 +0000, olcott said:

    On 8/26/2025 5:11 AM, Mikko wrote:
    On 2025-08-25 17:54:02 +0000, olcott said:

    All that we must do to defeat the Tarski Undefinability Theorem: >>>>>>>>
    Bad luck if you must but can't.

    I create the basic architecture and others implement it.

    Post again when you have the basic architecture on a web site.

    No.

    OK, but then we can't discuss it.

    Prolog already knows to reject the Liar Paradox
    as not a truth-bearer.

    No, it does not. Prolog doesn't identify anything as a "truth-bearer"
    or "non-truth-bearer".

    The code below proves that LP is not a truth
    bearer even if Prolog were to call it an ice
    cream sundae with a cherry on top.

    Prolog does not call it anything. For Prolog it is first an open
    variable and later possibly a variable bound to a data value.

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.

    ?- LP = not(true(LP)).

    When the implementation displays the value the recursion is detected and
    the name of the variable is shown instead of the value.

    The Prolog standard allows an implementation to accept or reject that.
    Most implementations accept.

    LP = not(true(LP)).

    This time the implementation accepted and assigned a value to LP.

    ?- unify_with_occurs_check(LP, not(true(LP))).

    In this case an implementation is required to reject as the result
    of unification would be an expression that contains itself. Whether
    anything is a truth-bearer or not is not checked.

    false.

    Implementation rejected as required.

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values.

    Other systems might just get stuck in infinite recursion.

    That is possible. In such systems a program that produces a recursive
    structure is often defiend as erroneous even if the system is not
    required to detect the error.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Aug 30 10:31:20 2025
    From Newsgroup: sci.logic

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    It would then be possible to reconstruct the
    antinomy of the liar in the metalanguage, by
    forming in the language itself a sentence x
    such that the sentence of the metalanguage
    which is correlated with x asserts that x is
    not a true sentence.
    https://liarparadox.org/Tarski_247_248.pdf

    Other systems might just get stuck in infinite recursion.

    That is possible. In such systems a program that produces a recursive structure is often defiend as erroneous even if the system is not
    required to detect the error.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Aug 31 11:24:58 2025
    From Newsgroup: sci.logic

    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    ?- unify_with_occurs_check(true(not(LP)), not(true(LP))).

    which does not contain any infinite recursion.

    It would then be possible to reconstruct the
    antinomy of the liar in the metalanguage, by
    forming in the language itself a sentence x
    such that the sentence of the metalanguage
    which is correlated with x asserts that x is
    not a true sentence.
    https://liarparadox.org/Tarski_247_248.pdf

    Your quote omits essential context. In particular the meanng of "then"
    is not clear from the quote. From the omitted context it is clear that
    the meaning is 'if a truth predicate could be defined'.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sun Aug 31 10:21:08 2025
    From Newsgroup: sci.logic

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for


    *Yes it does, you just deleted this*
    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. 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.

    https://www.researchgate.net/publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    -a?- unify_with_occurs_check(true(not(LP)), not(true(LP))).

    which does not contain any infinite recursion.

    -a-a It would then be possible to reconstruct the
    -a-a antinomy of the liar in the metalanguage, by
    -a-a forming in the language itself a sentence x
    -a-a such that the sentence of the metalanguage
    -a-a which is correlated with x asserts that x is
    -a-a not a true sentence.
    -a-a https://liarparadox.org/Tarski_247_248.pdf


    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x https://liarparadox.org/Tarski_275_276.pdf

    Your quote omits essential context. In particular the meanng of "then"
    is not clear from the quote. From the omitted context it is clear that
    the meaning is 'if a truth predicate could be defined'.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Mon Sep 1 10:46:37 2025
    From Newsgroup: sci.logic

    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would >>>> be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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. 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.

    https://www.researchgate.net/publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that
    Prolog say anything about an infinite recursion. If the predicate unify_with_occurs_check is used then that predicate checks whether the unification would produce a recursive structure but it also fails if
    no unification is possible, and it does nor tell why it fails. Otherwise
    a Prolog inmplementation is allowed but not required to check whether unification would produce recursion. As I said, both
    ?- unify_with_occurs_check(LP, not(true(LP))).
    and
    ?- unify_with_occurs_check(true(not(LP)), not(true(LP))).
    give the same result.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 1 09:41:08 2025
    From Newsgroup: sci.logic

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would >>>>> be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 2 11:07:30 2025
    From Newsgroup: sci.logic

    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would >>>>>> be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 2 07:11:14 2025
    From Newsgroup: sci.logic

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it >>>>>>> would
    be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    That you fail to understand that Prolog proves
    that the Liar Paradox has an infinitely recursive
    structure that cannot be resolved to a truth value
    is far far less that no rebuttal what-so-ever.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 2 07:13:23 2025
    From Newsgroup: sci.logic

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it >>>>>>> would
    be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 3 10:39:23 2025
    From Newsgroup: sci.logic

    On 2025-09-02 12:11:14 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would >>>>>>>> be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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. >>>>> 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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that >>>> Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves
    that the Liar Paradox has an infinitely recursive
    structure that cannot be resolved to a truth value
    is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant
    to what Tarski proved does not make it relevant.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 3 10:43:36 2025
    From Newsgroup: sci.logic

    On 2025-09-02 12:13:23 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would >>>>>>>> be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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. >>>>> 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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that >>>> Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.

    Tarski thought that "This sentence is not true" must be unprovable.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 3 09:29:07 2025
    From Newsgroup: sci.logic

    On 9/3/2025 2:39 AM, Mikko wrote:
    On 2025-09-02 12:11:14 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as >>>>>>>>> it would
    be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't claim that >>>>> Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves
    that the Liar Paradox has an infinitely recursive
    structure that cannot be resolved to a truth value
    is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant
    to what Tarski proved does not make it relevant.


    Whenever I make a proof it is standard procedure
    of all of my reviewers to make sure to totally dodge
    the first step of this proof and then falsely claim
    that I did not prove my point.

    The first step of this proof requires understanding
    that "this sentence is not true" does not have a
    truth value. So far no one else in the world has
    gotten this far.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 3 09:32:11 2025
    From Newsgroup: sci.logic

    On 9/3/2025 2:43 AM, Mikko wrote:
    On 2025-09-02 12:13:23 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as >>>>>>>>> it would
    be if the two arguments were bound to incompatible values.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't claim that >>>>> Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.

    Tarski thought that "This sentence is not true" must be unprovable.


    Likewise: "What time is it?" is equally unprovable
    for the same reason. When making lunch house bricks
    cannot be the main ingredient. When defining formal
    systems of logic one must exclude expressions of
    language having no truth value.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From joes@noreply@example.org to sci.logic on Wed Sep 3 15:10:39 2025
    From Newsgroup: sci.logic

    Am Wed, 03 Sep 2025 09:29:07 -0500 schrieb olcott:
    On 9/3/2025 2:39 AM, Mikko wrote:
    On 2025-09-02 12:11:14 +0000, olcott said:
    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:
    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:
    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:
    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because it specifies >>>>>>>>>>> infinite recursion.
    Prolog does not even try to resolve LP to a truth value.

    Because it specifies infinite recursion.
    Yes, but the cause is not reported. The result is the same as >>>>>>>>>> it would be if the two arguments were bound to incompatible >>>>>>>>>> values.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion thus
    rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*

    Clocksin & Mellish merely say what I said above. They don't claim
    that Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for some kind of
    infinite structure.

    Irrelevanto to your false claims about Prolog, which are irrelevant
    to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves that the Liar Paradox
    has an infinitely recursive structure that cannot be resolved to a
    truth value is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant to
    what Tarski proved does not make it relevant.

    The first step of this proof requires understanding that "this sentence
    is not true" does not have a truth value. So far no one else in the
    world has gotten this far.
    What? Nobody says it does.
    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 3 11:46:07 2025
    From Newsgroup: sci.logic

    On 9/3/2025 10:10 AM, joes wrote:
    Am Wed, 03 Sep 2025 09:29:07 -0500 schrieb olcott:
    On 9/3/2025 2:39 AM, Mikko wrote:
    On 2025-09-02 12:11:14 +0000, olcott said:
    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:
    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:
    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:
    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because it specifies >>>>>>>>>>>> infinite recursion.
    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>
    Because it specifies infinite recursion.
    Yes, but the cause is not reported. The result is the same as >>>>>>>>>>> it would be if the two arguments were bound to incompatible >>>>>>>>>>> values.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion thus
    rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*

    Clocksin & Mellish merely say what I said above. They don't claim >>>>>>> that Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for some kind of >>>>>> infinite structure.

    Irrelevanto to your false claims about Prolog, which are irrelevant
    to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves that the Liar Paradox
    has an infinitely recursive structure that cannot be resolved to a
    truth value is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant to
    what Tarski proved does not make it relevant.

    The first step of this proof requires understanding that "this sentence
    is not true" does not have a truth value. So far no one else in the
    world has gotten this far.
    What? Nobody says it does.


    *The best expert that I found in the whole world says this*

    I do not mean to commit myself to the claim that
    denying that the Liar expresses a proposition is
    the best solution to the Liar paradox, nor do I
    want to commit Truthmaker Maximalism to that claim. https://philarchive.org/archive/RODTMD

    Truthmaker Maximalism is the appropriate sub-field
    of philosophy of logic. Logic only says what the
    rules are. Philosophy of logic examines why the
    rules are what they are and examines alternative
    possibilities.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 3 11:48:51 2025
    From Newsgroup: sci.logic

    On 9/3/2025 11:46 AM, olcott wrote:
    On 9/3/2025 10:10 AM, joes wrote:
    Am Wed, 03 Sep 2025 09:29:07 -0500 schrieb olcott:
    On 9/3/2025 2:39 AM, Mikko wrote:
    On 2025-09-02 12:11:14 +0000, olcott said:
    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:
    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:
    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:
    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because it specifies >>>>>>>>>>>>> infinite recursion.
    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>>
    Because it specifies infinite recursion.
    Yes, but the cause is not reported. The result is the same as >>>>>>>>>>>> it would be if the two arguments were bound to incompatible >>>>>>>>>>>> values.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion thus
    rejecting the basis of the Tarski Undefinability Theorem

    Prolog does not say anyathing about an infinite recursion. >>>>>>>>>> The result is the same for

    *Yes it does, you just deleted this*

    Clocksin & Mellish merely say what I said above. They don't claim >>>>>>>> that Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for some kind of >>>>>>> infinite structure.

    Irrelevanto to your false claims about Prolog, which are irrelevant >>>>>> to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves that the Liar Paradox >>>>> has an infinitely recursive structure that cannot be resolved to a
    truth value is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant to >>>> what Tarski proved does not make it relevant.

    The first step of this proof requires understanding that "this sentence
    is not true" does not have a truth value. So far no one else in the
    world has gotten this far.
    What? Nobody says it does.


    *The best expert that I found in the whole world says this*

    I do not mean to commit myself to the claim that
    denying that the Liar expresses a proposition is
    the best solution to the Liar paradox, nor do I
    want to commit Truthmaker Maximalism to that claim. https://philarchive.org/archive/RODTMD

    Truthmaker Maximalism is the appropriate sub-field
    of philosophy of logic. Logic only says what the
    rules are. Philosophy of logic examines why the
    rules are what they are and examines alternative
    possibilities.


    This is why I rebuke everyone that claims that I
    did not correctly memorize the rules and obey
    these rules. Learning by rote is a very shallow
    depth of understanding.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 4 09:31:01 2025
    From Newsgroup: sci.logic

    On 2025-09-03 14:29:07 +0000, olcott said:

    On 9/3/2025 2:39 AM, Mikko wrote:
    On 2025-09-02 12:11:14 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>
    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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. >>>>>>> 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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that >>>>>> Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves
    that the Liar Paradox has an infinitely recursive
    structure that cannot be resolved to a truth value
    is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant
    to what Tarski proved does not make it relevant.

    Whenever I make a proof it is standard procedure
    of all of my reviewers to make sure to totally dodge
    the first step of this proof and then falsely claim
    that I did not prove my point.

    You have never presented any proofs. Apparently you don't even
    know what the word means.

    The first step of this proof requires understanding
    that "this sentence is not true" does not have a
    truth value. So far no one else in the world has
    gotten this far.

    Above you disagreed with the sentnece "The liar parac-|dox has
    no truth value". If you don't think so anymore you should
    go back to that point in the discussion and try again from there.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 4 09:37:36 2025
    From Newsgroup: sci.logic

    On 2025-09-03 14:32:11 +0000, olcott said:

    On 9/3/2025 2:43 AM, Mikko wrote:
    On 2025-09-02 12:13:23 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value.


    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>
    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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. >>>>>>> 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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that >>>>>> Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.

    Tarski thought that "This sentence is not true" must be unprovable.

    Likewise: "What time is it?" is equally unprovable
    for the same reason. When making lunch house bricks
    cannot be the main ingredient. When defining formal
    systems of logic one must exclude expressions of
    language having no truth value.

    No, the reason is not the same. "What time is it?" does not claim
    anything, so there is nothing to prove. "This sentence is not true"
    does claim but the sentence is not semantically well founded.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 4 18:38:16 2025
    From Newsgroup: sci.logic

    On 9/4/2025 1:31 AM, Mikko wrote:
    On 2025-09-03 14:29:07 +0000, olcott said:

    On 9/3/2025 2:39 AM, Mikko wrote:
    On 2025-09-02 12:11:14 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as >>>>>>>>>>> it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>
    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't claim >>>>>>> that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves
    that the Liar Paradox has an infinitely recursive
    structure that cannot be resolved to a truth value
    is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant
    to what Tarski proved does not make it relevant.

    Whenever I make a proof it is standard procedure
    of all of my reviewers to make sure to totally dodge
    the first step of this proof and then falsely claim
    that I did not prove my point.

    You have never presented any proofs. Apparently you don't even
    know what the word means.


    When I present the first step of my proof it is
    rejected out-of-hand without review.

    The first step of this proof requires understanding
    that "this sentence is not true" does not have a
    truth value. So far no one else in the world has
    gotten this far.

    Above you disagreed with the sentnece "The liar parac-|dox has
    no truth value". If you don't think so anymore you should
    go back to that point in the discussion and try again from there.


    The Liar Paradox has no truth value thus must be
    rejected as the basis of any formal proof.

    Tarski did not know this.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 4 18:39:24 2025
    From Newsgroup: sci.logic

    On 9/4/2025 1:37 AM, Mikko wrote:
    On 2025-09-03 14:32:11 +0000, olcott said:

    On 9/3/2025 2:43 AM, Mikko wrote:
    On 2025-09-02 12:13:23 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as >>>>>>>>>>> it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>
    Prolog does not say anyathing about an infinite recursion.
    The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't claim >>>>>>> that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.

    Tarski thought that "This sentence is not true" must be unprovable.

    Likewise: "What time is it?" is equally unprovable
    for the same reason.-a When making lunch house bricks
    cannot be the main ingredient. When defining formal
    systems of logic one must exclude expressions of
    language having no truth value.

    No, the reason is not the same. "What time is it?" does not claim
    anything, so there is nothing to prove. "This sentence is not true"
    does claim but the sentence is not semantically well founded.


    So both equally have no truth value.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Sep 5 10:31:40 2025
    From Newsgroup: sci.logic

    On 2025-09-04 23:38:16 +0000, olcott said:

    On 9/4/2025 1:31 AM, Mikko wrote:
    On 2025-09-03 14:29:07 +0000, olcott said:

    On 9/3/2025 2:39 AM, Mikko wrote:
    On 2025-09-02 12:11:14 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>>
    Prolog does not say anyathing about an infinite recursion. >>>>>>>>>> The result is the same for

    *Yes it does, you just deleted this*
    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. >>>>>>>>> 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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that >>>>>>>> Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves
    that the Liar Paradox has an infinitely recursive
    structure that cannot be resolved to a truth value
    is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant
    to what Tarski proved does not make it relevant.

    Whenever I make a proof it is standard procedure
    of all of my reviewers to make sure to totally dodge
    the first step of this proof and then falsely claim
    that I did not prove my point.

    You have never presented any proofs. Apparently you don't even
    know what the word means.

    When I present the first step of my proof it is
    rejected out-of-hand without review.

    The first step of a proof is usually a definition. If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.
    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    The first step of this proof requires understanding
    that "this sentence is not true" does not have a
    truth value. So far no one else in the world has
    gotten this far.

    Above you disagreed with the sentnece "The liar parac-|dox has
    no truth value". If you don't think so anymore you should
    go back to that point in the discussion and try again from there.

    The Liar Paradox has no truth value thus must be
    rejected as the basis of any formal proof.

    The why is the sentence "The liar paradox has no truth value"
    unacceptable as a basis of proof?

    Tarski did not know this.

    Then how could he say that the liar paradox cannot be true?
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Sep 5 10:32:52 2025
    From Newsgroup: sci.logic

    On 2025-09-04 23:39:24 +0000, olcott said:

    On 9/4/2025 1:37 AM, Mikko wrote:
    On 2025-09-03 14:32:11 +0000, olcott said:

    On 9/3/2025 2:43 AM, Mikko wrote:
    On 2025-09-02 12:13:23 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>>
    Prolog does not say anyathing about an infinite recursion. >>>>>>>>>> The result is the same for

    *Yes it does, you just deleted this*
    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. >>>>>>>>> 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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that >>>>>>>> Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.

    Tarski thought that "This sentence is not true" must be unprovable.

    Likewise: "What time is it?" is equally unprovable
    for the same reason.-a When making lunch house bricks
    cannot be the main ingredient. When defining formal
    systems of logic one must exclude expressions of
    language having no truth value.

    No, the reason is not the same. "What time is it?" does not claim
    anything, so there is nothing to prove. "This sentence is not true"
    does claim but the sentence is not semantically well founded.

    So both equally have no truth value.

    Yes, but they are different enough that only one of them is useful
    for Tarski's purposes.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Sep 5 09:46:13 2025
    From Newsgroup: sci.logic

    On 9/5/2025 2:31 AM, Mikko wrote:
    On 2025-09-04 23:38:16 +0000, olcott said:

    On 9/4/2025 1:31 AM, Mikko wrote:
    On 2025-09-03 14:29:07 +0000, olcott said:

    On 9/3/2025 2:39 AM, Mikko wrote:
    On 2025-09-02 12:11:14 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same >>>>>>>>>>>>> as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>>>
    Prolog does not say anyathing about an infinite recursion. >>>>>>>>>>> The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't >>>>>>>>> claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves
    that the Liar Paradox has an infinitely recursive
    structure that cannot be resolved to a truth value
    is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant
    to what Tarski proved does not make it relevant.

    Whenever I make a proof it is standard procedure
    of all of my reviewers to make sure to totally dodge
    the first step of this proof and then falsely claim
    that I did not prove my point.

    You have never presented any proofs. Apparently you don't even
    know what the word means.

    When I present the first step of my proof it is
    rejected out-of-hand without review.

    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.


    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    Here is my own Minimal Type Theory
    https://philarchive.org/archive/PETMTT-4 https://philpapers.org/archive/OLCPWM.pdf
    I created this before I knew that Prolog does the same thing

    The first step of this proof requires understanding
    that "this sentence is not true" does not have a
    truth value. So far no one else in the world has
    gotten this far.

    Above you disagreed with the sentnece "The liar parac-|dox has
    no truth value". If you don't think so anymore you should
    go back to that point in the discussion and try again from there.

    The Liar Paradox has no truth value thus must be
    rejected as the basis of any formal proof.

    The why is the sentence "The liar paradox has no truth value"
    unacceptable as a basis of proof?


    That is not the way it works.
    Tarski incorrectly used "this sentence is not true"
    as the basis of his proof, when we reject that as
    not a truth bearer then Tarski's proof has no basis.

    See the last paragraph https://en.wikipedia.org/wiki/Tarski%27s_undefinability_theorem#General_form

    Tarski did not know this.

    Then how could he say that the liar paradox cannot be true?


    He thought that it was true yet could not be proved true.
    He never noticed that it cannot be proved true because
    it is not a truth bearer.

    He was a brilliant man yet this was his blind spot, just
    like Einstein's "God does not play dive with the universe"
    blind spot on quantum mechanics.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Sep 5 09:47:56 2025
    From Newsgroup: sci.logic

    On 9/5/2025 2:32 AM, Mikko wrote:
    On 2025-09-04 23:39:24 +0000, olcott said:

    On 9/4/2025 1:37 AM, Mikko wrote:
    On 2025-09-03 14:32:11 +0000, olcott said:

    On 9/3/2025 2:43 AM, Mikko wrote:
    On 2025-09-02 12:13:23 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same >>>>>>>>>>>>> as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>>>
    Prolog does not say anyathing about an infinite recursion. >>>>>>>>>>> The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't >>>>>>>>> claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.

    Tarski thought that "This sentence is not true" must be unprovable.

    Likewise: "What time is it?" is equally unprovable
    for the same reason.-a When making lunch house bricks
    cannot be the main ingredient. When defining formal
    systems of logic one must exclude expressions of
    language having no truth value.

    No, the reason is not the same. "What time is it?" does not claim
    anything, so there is nothing to prove. "This sentence is not true"
    does claim but the sentence is not semantically well founded.

    So both equally have no truth value.

    Yes, but they are different enough that only one of them is useful
    for Tarski's purposes.


    I only used the other example so that you could
    totally understand what "not a truth bearer" means.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Sep 6 11:25:23 2025
    From Newsgroup: sci.logic

    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:
    On 2025-09-04 23:38:16 +0000, olcott said:

    On 9/4/2025 1:31 AM, Mikko wrote:
    On 2025-09-03 14:29:07 +0000, olcott said:

    On 9/3/2025 2:39 AM, Mikko wrote:
    On 2025-09-02 12:11:14 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>>>>
    Prolog does not say anyathing about an infinite recursion. >>>>>>>>>>>> The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.

    That you fail to understand that Prolog proves
    that the Liar Paradox has an infinitely recursive
    structure that cannot be resolved to a truth value
    is far far less that no rebuttal what-so-ever.

    That you fail to understand that whatever Prolog does id irrelevant >>>>>> to what Tarski proved does not make it relevant.

    Whenever I make a proof it is standard procedure
    of all of my reviewers to make sure to totally dodge
    the first step of this proof and then falsely claim
    that I did not prove my point.

    You have never presented any proofs. Apparently you don't even
    know what the word means.

    When I present the first step of my proof it is
    rejected out-of-hand without review.

    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer
    it cannot be provable in a consistent system.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen. In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,

    ?- LP = not(true_(LP)).
    false.

    would also be correct.

    Here is my own Minimal Type Theory
    https://philarchive.org/archive/PETMTT-4 https://philpapers.org/archive/OLCPWM.pdf
    I created this before I knew that Prolog does the same thing

    Apparently you don't know what Prolog does.

    The first step of this proof requires understanding
    that "this sentence is not true" does not have a
    truth value. So far no one else in the world has
    gotten this far.

    Above you disagreed with the sentnece "The liar parac-|dox has
    no truth value". If you don't think so anymore you should
    go back to that point in the discussion and try again from there.

    The Liar Paradox has no truth value thus must be
    rejected as the basis of any formal proof.

    The why is the sentence "The liar paradox has no truth value"
    unacceptable as a basis of proof?

    That is not the way it works.
    Tarski incorrectly used "this sentence is not true"
    as the basis of his proof, when we reject that as
    not a truth bearer then Tarski's proof has no basis.

    The statement "The liar paradox has no truth value" is true and therefore
    a valid basis for a proof.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Sep 6 11:27:58 2025
    From Newsgroup: sci.logic

    On 2025-09-05 14:47:56 +0000, olcott said:

    On 9/5/2025 2:32 AM, Mikko wrote:
    On 2025-09-04 23:39:24 +0000, olcott said:

    On 9/4/2025 1:37 AM, Mikko wrote:
    On 2025-09-03 14:32:11 +0000, olcott said:

    On 9/3/2025 2:43 AM, Mikko wrote:
    On 2025-09-02 12:13:23 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because
    it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion
    thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>>>>
    Prolog does not say anyathing about an infinite recursion. >>>>>>>>>>>> The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.

    Tarski thought that "This sentence is not true" must be unprovable. >>>>>
    Likewise: "What time is it?" is equally unprovable
    for the same reason.-a When making lunch house bricks
    cannot be the main ingredient. When defining formal
    systems of logic one must exclude expressions of
    language having no truth value.

    No, the reason is not the same. "What time is it?" does not claim
    anything, so there is nothing to prove. "This sentence is not true"
    does claim but the sentence is not semantically well founded.

    So both equally have no truth value.

    Yes, but they are different enough that only one of them is useful
    for Tarski's purposes.

    I only used the other example so that you could
    totally understand what "not a truth bearer" means.

    Thanx but I knew already.

    It means that the statement "Liar's paradox is not true" is true
    because only a truth-bearer can be true.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Sep 6 10:23:58 2025
    From Newsgroup: sci.logic

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,


    Not at all. I went through all of the effort of
    creating fully operational "Minimal Type theory"
    that detects cycles in the directed graph of the
    resolution of expressions to their truth value long
    before I knew that Prolog does this same thing.

    https://www.researchgate.net/publication/315367846_Minimal_Type_Theory_MTT

    https://www.researchgate.net/publication/331859461_Minimal_Type_Theory_YACC_BNF

    https://www.researchgate.net/publication/317953772_Provability_with_Minimal_Type_Theory

    ?- LP = not(true_(LP)).
    false.

    would also be correct.

    Here is my own Minimal Type Theory
    https://philarchive.org/archive/PETMTT-4
    https://philpapers.org/archive/OLCPWM.pdf
    I created this before I knew that Prolog does the same thing

    Apparently you don't know what Prolog does.

    The first step of this proof requires understanding
    that "this sentence is not true" does not have a
    truth value. So far no one else in the world has
    gotten this far.

    Above you disagreed with the sentnece "The liar parac-|dox has
    no truth value". If you don't think so anymore you should
    go back to that point in the discussion and try again from there.

    The Liar Paradox has no truth value thus must be
    rejected as the basis of any formal proof.

    The why is the sentence "The liar paradox has no truth value"
    unacceptable as a basis of proof?

    That is not the way it works.
    Tarski incorrectly used "this sentence is not true"
    as the basis of his proof, when we reject that as
    not a truth bearer then Tarski's proof has no basis.

    The statement "The liar paradox has no truth value" is true and therefore
    a valid basis for a proof.


    "What time is it?" can be proved this same way
    in a single HOL formal system / type theory.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Sep 6 10:26:04 2025
    From Newsgroup: sci.logic

    On 9/6/2025 3:27 AM, Mikko wrote:
    On 2025-09-05 14:47:56 +0000, olcott said:

    On 9/5/2025 2:32 AM, Mikko wrote:
    On 2025-09-04 23:39:24 +0000, olcott said:

    On 9/4/2025 1:37 AM, Mikko wrote:
    On 2025-09-03 14:32:11 +0000, olcott said:

    On 9/3/2025 2:43 AM, Mikko wrote:
    On 2025-09-02 12:13:23 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because >>>>>>>>>>>>>>>> it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the >>>>>>>>>>>>>>> same as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion >>>>>>>>>>>>>> thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>>>>>
    Prolog does not say anyathing about an infinite recursion. >>>>>>>>>>>>> The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    Clocksin & Mellish merely say what I said above. They don't >>>>>>>>>>> claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.

    Tarski thought that "This sentence is not true" must be unprovable. >>>>>>
    Likewise: "What time is it?" is equally unprovable
    for the same reason.-a When making lunch house bricks
    cannot be the main ingredient. When defining formal
    systems of logic one must exclude expressions of
    language having no truth value.

    No, the reason is not the same. "What time is it?" does not claim
    anything, so there is nothing to prove. "This sentence is not true"
    does claim but the sentence is not semantically well founded.

    So both equally have no truth value.

    Yes, but they are different enough that only one of them is useful
    for Tarski's purposes.

    I only used the other example so that you could
    totally understand what "not a truth bearer" means.

    Thanx but I knew already.

    It means that the statement "Liar's paradox is not true" is true
    because only a truth-bearer can be true.


    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Sep 7 11:27:14 2025
    From Newsgroup: sci.logic

    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sun Sep 7 12:26:36 2025
    From Newsgroup: sci.logic

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?


    That is all extensively elaborated in the whole
    paragraph that you completely ignored.

    Google[Minimal Type Theory] it knows my work.
    It incorrectly attributes this to: Maietti and Sambin

    I created a whole system named Minimal Type Theory
    that translates logical expressions into the directed
    graph of their resolution sequence. When MTT detects
    a cycle in this graph that is exactly the same thing as:

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Mon Sep 8 10:56:38 2025
    From Newsgroup: sci.logic

    This is a multi-part message in MIME format.

    ----------------1506119791492831282
    Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit

    On 2025-09-07 17:26:36 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    That is all extensively elaborated in the whole
    paragraph that you completely ignored.

    No, it isn't. There is no reference to those words there. In common
    language the words "Not at all", just like plain "No", refer to the
    immediately previous sentence or sentences, usually said by someone
    else. In this case the standard meaning is that you claim that
    "It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular," or at least "In particular," is false. But "In
    particular," is not even a sentence and therefore cannot be false.
    That Prolog meerely executes the instructions according to their
    standard semantics and implementation choices should be quite obvious
    but your "Not at all." means that you don't think it is far from
    true. As it seems unplausible that you would disagree with a so
    obvious truth it seems reasonable to think you meant sometnig else
    but what?
    --
    Mikko
    ----------------1506119791492831282
    Content-Type: text/html; charset=utf-8
    Content-Transfer-Encoding: 8bit

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta http-equiv="Content-Style-Type" content="text/css">
    <title></title>
    <meta name="Generator" content="Cocoa HTML Writer">
    <meta name="CocoaVersion" content="1348.17">
    <style type="text/css">
    p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 15.0px; font: 12.0px 'Courier New'; color: #000000}
    p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 15.0px; font: 12.0px 'Courier New'; color: #000000; min-height: 14.0px}
    p.p3 {margin: 0.0px 0.0px 0.0px 12.0px; line-height: 14.0px; font: 12.0px 'Courier New'; color: #011892}
    p.p4 {margin: 0.0px 0.0px 0.0px 24.0px; font: 12.0px 'Courier New'; color: #008e00}
    p.p5 {margin: 0.0px 0.0px 0.0px 24.0px; font: 12.0px 'Courier New'; color: #008e00; min-height: 14.0px}
    p.p6 {margin: 0.0px 0.0px 0.0px 36.0px; font: 12.0px 'Courier New'; color: #941100}
    p.p7 {margin: 0.0px 0.0px 0.0px 48.0px; font: 12.0px 'Courier New'; color: #011892}
    p.p8 {margin: 0.0px 0.0px 0.0px 48.0px; font: 12.0px 'Courier New'; color: #011892; min-height: 14.0px}
    p.p9 {margin: 0.0px 0.0px 0.0px 60.0px; font: 12.0px 'Courier New'; color: #008e00}
    p.p10 {margin: 0.0px 0.0px 0.0px 72.0px; font: 12.0px 'Courier New'; color: #941100}
    p.p11 {margin: 0.0px 0.0px 0.0px 60.0px; font: 12.0px 'Courier New'; color: #008e00; min-height: 14.0px}
    p.p12 {margin: 0.0px 0.0px 0.0px 36.0px; font: 12.0px 'Courier New'; color: #941100; min-height: 14.0px}
    p.p13 {margin: 0.0px 0.0px 0.0px 12.0px; font: 12.0px 'Courier New'; color: #011892; min-height: 14.0px}
    p.p14 {margin: 0.0px 0.0px 0.0px 12.0px; font: 12.0px 'Courier New'; color: #011892}
    p.p15 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 14.0px; font: 12.0px 'Courier New'; color: #000000; min-height: 14.0px}
    p.p16 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 14.0px; font: 12.0px 'Courier New'; color: #000000}
    p.p17 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 14.0px; font: 12.0px 'Courier New'; color: #011993}
    p.p18 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 14.0px; font: 12.0px 'Courier New'}
    p.p19 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Courier New'; color: #000000; min-height: 14.0px}
    p.p20 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Courier New'; color: #929292}
    span.s1 {color: #011993}
    span.s2 {color: #000000}
    </style>
    </head>
    <body>
    <p class="p1">On 2025-09-07 17:26:36 +0000, olcott said:</p>
    <p class="p2"><br></p>
    <p class="p3">On 9/7/2025 3:27 AM, Mikko wrote:</p>
    <p class="p4">On 2025-09-06 15:23:58 +0000, olcott said:</p>
    <p class="p5"><br></p>
    <p class="p6">On 9/6/2025 3:25 AM, Mikko wrote:</p>
    <p class="p7">On 2025-09-05 14:46:13 +0000, olcott said:</p>
    <p class="p8"><br></p>
    <p class="p9">On 9/5/2025 2:31 AM, Mikko wrote:&gt;&gt;&gt;</p>
    <p class="p10">The first step of a proof is usually a definition.</p>
    <p class="p11"><br></p>
    <p class="p9">Here is is: "this sentence is not true" within the</p>
    <p class="p9">philosophy of logic it would be called not a truth</p>
    <p class="p9">bearer because it cannot possibly have a truth value.</p>
    <p class="p8"><br></p>
    <p class="p7">That is not a definition but could be a valid starting point for</p>
    <p class="p7">a proof. One could also state that because it is not a truth-bearer</p>
    <p class="p7">it cannot be provable in a consistent system.</p>
    <p class="p8"><br></p>
    <p class="p12"><br></p>
    <p class="p6">*I mixed two things together*</p>
    <p class="p6">A truth bearer is any expression of language that</p>
    <p class="p6">possibly be resolved to a truth value. This includes</p>
    <p class="p6">English declarative sentences and logical propositions.</p>
    <p class="p12"><br></p>
    <p class="p6">"This sentence is not true"</p>
    <p class="p6">Cannot possibly be resolved to a truth value.</p>
    <p class="p12"><br></p>
    <p class="p10">If you try to</p>
    <p class="p10">define a term that is alredy in use differently from its usual</p>
    <p class="p10">meaning that is sufficient to reject it without further review.</p>
    <p class="p11"><br></p>
    <p class="p9">The above definition is conventional. It is also a standard</p> <p class="p9">convention that when there is no word for a meaning that</p>
    <p class="p9">the word with the closest existing meaning is used and becomes</p>
    <p class="p9">a term of the art by adapting this meaning.</p>
    <p class="p8"><br></p>
    <p class="p7">It is not always the word with the closest meaning. Sometimes a</p>
    <p class="p7">word with a meaning far from the needed meaning is chosen.</p>
    <p class="p12"><br></p>
    <p class="p6">That makes communication very misleading rather than</p>
    <p class="p6">effective. The best way to do this in natural language</p>
    <p class="p6">is to choose an existing term with the closest meaning</p>
    <p class="p6">and then specify the exact divergence from this conventional</p> <p class="p6">meaning.</p>
    <p class="p12"><br></p>
    <p class="p7">In</p>
    <p class="p7">any case one must be sure that the word is not needed for any</p> <p class="p7">other meaning in the same context.</p>
    <p class="p8"><br></p>
    <p class="p12"><br></p>
    <p class="p6">The CYC project uses 128-bit GUIDs for unique meanings</p>
    <p class="p6">that correspond to sense meanings of words or term-of-the-art</p> <p class="p6">meanings of terms.</p>
    <p class="p12"><br></p>
    <p class="p7">An important rule with the defined words is that they must not</p>
    <p class="p7">be used before the definition. Unless the definition is already</p>
    <p class="p7">well known</p>
    <p class="p12"><br></p>
    <p class="p6">Such as truth bearer.</p>
    <p class="p12"><br></p>
    <p class="p7">this includes the title and the abstract. In the</p>
    <p class="p7">introduction one can say "will be defined" and then use the word.</p>
    <p class="p8"><br></p>
    <p class="p10">If your first step is a premiss then reviewers must consdier</p> <p class="p10">whether it is acceptable or should be proven or can be rejected</p>
    <p class="p10">as false.</p>
    <p class="p11"><br></p>
    <p class="p9">That the Liar Paradox is not a truth bearer is proven</p>
    <p class="p9">completely true by the meaning is these words.</p>
    <p class="p8"><br></p>
    <p class="p7">Therefore it can be introduced as a premiss but it is better to</p>
    <p class="p7">do that only after the defintions, in particular the definition</p>
    <p class="p7">of "the Liar Paradox".</p>
    <p class="p8"><br></p>
    <p class="p12"><br></p>
    <p class="p6">I always define the Liar Paradox as: "This sentence is not true"</p>
    <p class="p12"><br></p>
    <p class="p9">?- LP = not(true_(LP)).</p>
    <p class="p9">LP = not(true(LP)).</p>
    <p class="p9">?- unify_with_occurs_check(LP, not(true(LP))).</p>
    <p class="p9">false.</p>
    <p class="p11"><br></p>
    <p class="p9">Also proves that this is true, yet beyond what you</p>
    <p class="p9">can comprehend.</p>
    <p class="p8"><br></p>
    <p class="p7">It doesn't prove anything. Prolog merely executes the instructions</p>
    <p class="p7">according to their standard semantics and implementation choices.</p>
    <p class="p7">In particular,</p>
    <p class="p12"><br></p>
    <p class="p6">Not at all.</p>
    <p class="p5"><br></p>
    <p class="p4">What not at all? What is that intended to refer to?</p>
    <p class="p13"><br></p>
    <p class="p14">That is all extensively elaborated in the whole</p>
    <p class="p14">paragraph that you completely ignored.</p>
    <p class="p15"><br></p>
    <p class="p16">No, it isn't. There is no reference to those words there. In common</p>
    <p class="p16">language the words "Not at all", just like plain "No", refer to the</p>
    <p class="p16">immediately previous sentence or sentences, usually said by someone</p>
    <p class="p16">else. In this case the standard meaning is that you claim that</p>
    <p class="p16">"It doesn't prove anything. Prolog merely executes the instructions</p>
    <p class="p17">according to their standard semantics and implementation choices.</p>
    <p class="p18"><span class="s1">In particular,</span>" or at least "<span class="s1">In particular,</span>" is false. But "<span class="s1">In</span></p>
    <p class="p18"><span class="s1">particular,</span>" is not even a sentence and therefore cannot be false.</p>
    <p class="p17"><span class="s2">That </span>Prolog meerely executes the instructions according to their</p>
    <p class="p17">standard semantics and implementation choices should be quite obvious</p>
    <p class="p17">but your "Not at all." means that you don't think it is far from</p>
    <p class="p17">true. As it seems unplausible that you would disagree with a so</p>
    <p class="p17">obvious truth it seems reasonable to think you meant sometnig else</p>
    <p class="p17">but what?</p>
    <p class="p19"><br></p>
    <p class="p20">--<span class="Apple-converted-space">-a</span></p>
    <p class="p20">Mikko</p>
    </body>
    </html>
    ----------------1506119791492831282--

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 8 11:40:41 2025
    From Newsgroup: sci.logic

    On 9/8/2025 2:56 AM, Mikko wrote:
    On 2025-09-07 17:26:36 +0000, olcott said:


    On 9/7/2025 3:27 AM, Mikko wrote:

    On 2025-09-06 15:23:58 +0000, olcott said:


    On 9/6/2025 3:25 AM, Mikko wrote:

    On 2025-09-05 14:46:13 +0000, olcott said:


    On 9/5/2025 2:31 AM, Mikko wrote:>>>

    The first step of a proof is usually a definition.


    Here is is: "this sentence is not true" within the

    philosophy of logic it would be called not a truth

    bearer because it cannot possibly have a truth value.


    That is not a definition but could be a valid starting point for

    a proof. One could also state that because it is not a truth-bearer

    it cannot be provable in a consistent system.



    *I mixed two things together*

    A truth bearer is any expression of language that

    possibly be resolved to a truth value. This includes

    English declarative sentences and logical propositions.


    "This sentence is not true"

    Cannot possibly be resolved to a truth value.


    If you try to

    define a term that is alredy in use differently from its usual

    meaning that is sufficient to reject it without further review.


    The above definition is conventional. It is also a standard

    convention that when there is no word for a meaning that

    the word with the closest existing meaning is used and becomes

    a term of the art by adapting this meaning.


    It is not always the word with the closest meaning. Sometimes a

    word with a meaning far from the needed meaning is chosen.


    That makes communication very misleading rather than

    effective. The best way to do this in natural language

    is to choose an existing term with the closest meaning

    and then specify the exact divergence from this conventional

    meaning.


    In

    any case one must be sure that the word is not needed for any

    other meaning in the same context.



    The CYC project uses 128-bit GUIDs for unique meanings

    that correspond to sense meanings of words or term-of-the-art

    meanings of terms.


    An important rule with the defined words is that they must not

    be used before the definition. Unless the definition is already

    well known


    Such as truth bearer.


    this includes the title and the abstract. In the

    introduction one can say "will be defined" and then use the word.


    If your first step is a premiss then reviewers must consdier

    whether it is acceptable or should be proven or can be rejected

    as false.


    That the Liar Paradox is not a truth bearer is proven

    completely true by the meaning is these words.


    Therefore it can be introduced as a premiss but it is better to

    do that only after the defintions, in particular the definition

    of "the Liar Paradox".



    I always define the Liar Paradox as: "This sentence is not true"


    ?- LP = not(true_(LP)).

    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).

    false.


    Also proves that this is true, yet beyond what you

    can comprehend.


    It doesn't prove anything. Prolog merely executes the instructions

    according to their standard semantics and implementation choices.

    In particular,


    Not at all.


    What not at all? What is that intended to refer to?


    That is all extensively elaborated in the whole

    paragraph that you completely ignored.


    No, it isn't. There is no reference to those words there. In common

    language the words "Not at all", just like plain "No", refer to the

    immediately previous sentence or sentences, usually said by someone

    else. In this case the standard meaning is that you claim that

    "It doesn't prove anything. Prolog merely executes the instructions

    according to their standard semantics and implementation choices.

    In particular," or at least "In particular," is false. But "In

    particular," is not even a sentence and therefore cannot be false.

    That Prolog meerely executes the instructions according to their

    standard semantics and implementation choices should be quite obvious

    but your "Not at all." means that you don't think it is far from

    true. As it seems unplausible that you would disagree with a so

    obvious truth it seems reasonable to think you meant sometnig else

    but what?


    --

    Mikko


    I am not going to wade through your screwy HTML

    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory
    I created a whole system named Minimal Type Theory

    Look it up! Look it up! Look it up! Look it up!
    Look it up! Look it up! Look it up! Look it up!
    Look it up! Look it up! Look it up! Look it up!

    that translates logical expressions into the directed
    graph of their resolution sequence. When MTT detects
    a cycle in this graph that is exactly the same thing as:

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 8 11:51:36 2025
    From Newsgroup: sci.logic

    I created fully operational "Minimal Type theory"
    that detects cycles in the directed graph of the
    resolution of expressions to their truth value long
    before I knew that Prolog does this same thing.

    https://www.researchgate.net/publication/315367846_Minimal_Type_Theory_MTT

    https://www.researchgate.net/publication/331859461_Minimal_Type_Theory_YACC_BNF

    https://www.researchgate.net/publication/317953772_Provability_with_Minimal_Type_Theory
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 9 09:51:21 2025
    From Newsgroup: sci.logic

    On 2025-09-07 17:26:36 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?


    That is all extensively elaborated in the whole
    paragraph that you completely ignored.

    Google[Minimal Type Theory] it knows my work.
    It incorrectly attributes this to: Maietti and Sambin

    I created a whole system named Minimal Type Theory
    that translates logical expressions into the directed
    graph of their resolution sequence. When MTT detects
    a cycle in this graph that is exactly the same thing as:

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    No, it isn't. There is no reference to those words there. In common
    language the words "Not at all", just like plain "No", refer to the
    immediately previous sentence or sentences, usually said by someone
    else. In this case the standard meaning is that you claim that
    "It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular," or at least "In particular," is false. But "In
    particular," is not even a sentence and therefore cannot be false.
    That Prolog meerely executes the instructions according to their
    standard semantics and implementation choices should be quite obvious
    but your "Not at all." means that you don't think it is far from
    true. As it seems unplausible that you would disagree with a so
    obvious truth it seems reasonable to think you meant sometnig else
    but what?
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 9 09:57:26 2025
    From Newsgroup: sci.logic

    On 2025-09-06 15:26:04 +0000, olcott said:

    On 9/6/2025 3:27 AM, Mikko wrote:
    On 2025-09-05 14:47:56 +0000, olcott said:

    On 9/5/2025 2:32 AM, Mikko wrote:
    On 2025-09-04 23:39:24 +0000, olcott said:

    On 9/4/2025 1:37 AM, Mikko wrote:
    On 2025-09-03 14:32:11 +0000, olcott said:

    On 9/3/2025 2:43 AM, Mikko wrote:
    On 2025-09-02 12:13:23 +0000, olcott said:

    On 9/2/2025 3:07 AM, Mikko wrote:
    On 2025-09-01 14:41:08 +0000, olcott said:

    On 9/1/2025 2:46 AM, Mikko wrote:
    On 2025-08-31 15:21:08 +0000, olcott said:

    On 8/31/2025 3:24 AM, Mikko wrote:
    On 2025-08-30 15:31:20 +0000, olcott said:

    On 8/30/2025 2:51 AM, Mikko wrote:
    On 2025-08-29 13:56:47 +0000, olcott said:

    LP cannot be resolved to a truth value because >>>>>>>>>>>>>>>>> it specifies infinite recursion.

    Prolog does not even try to resolve LP to a truth value. >>>>>>>>>>>>>>>>

    Because it specifies infinite recursion.

    Yes, but the cause is not reported. The result is the same as it would
    be if the two arguments were bound to incompatible values. >>>>>>>>>>>>>>>>

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Prolog rejects LP as specifying infinite recursion >>>>>>>>>>>>>>> thus rejecting the basis of the Tarski Undefinability Theorem >>>>>>>>>>>>>>
    Prolog does not say anyathing about an infinite recursion. >>>>>>>>>>>>>> The result is the same for

    *Yes it does, you just deleted this*
    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.
    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.

    https://www.researchgate.net/
    publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence


    Clocksin & Mellish merely say what I said above. They don't claim that
    Prolog say anything about an infinite recursion.

    foo(foo(foo(Y))), and so on. So Y ends up standing for
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.
    some kind of infinite structure.

    Irrelevanto to your false claims about Prolog, which are
    irrelevant to the topic specified on the subjec ||ine.


    "This sentence is not true"
    What is it not true about?
    It is not true about being not true.
    What is it is not true about being not true about?
    It is not true about being not true about being not true.

    Tarski thought that "This sentence is not true" must be unprovable. >>>>>>>
    Likewise: "What time is it?" is equally unprovable
    for the same reason.-a When making lunch house bricks
    cannot be the main ingredient. When defining formal
    systems of logic one must exclude expressions of
    language having no truth value.

    No, the reason is not the same. "What time is it?" does not claim
    anything, so there is nothing to prove. "This sentence is not true" >>>>>> does claim but the sentence is not semantically well founded.

    So both equally have no truth value.

    Yes, but they are different enough that only one of them is useful
    for Tarski's purposes.

    I only used the other example so that you could
    totally understand what "not a truth bearer" means.

    Thanx but I knew already.

    It means that the statement "Liar's paradox is not true" is true
    because only a truth-bearer can be true.

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true.
    If it is true it must be a truth bearer. But you have also said that it
    is not a truth bearer. Apparently you have no coherent opionion about
    the liar's paradox.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 9 10:58:51 2025
    From Newsgroup: sci.logic

    On 9/9/2025 1:51 AM, Mikko wrote:
    On 2025-09-07 17:26:36 +0000, olcott said:

    That is all extensively elaborated in the whole
    paragraph that you completely ignored.

    Google[Minimal Type Theory] it knows my work.
    It incorrectly attributes this to: Maietti and Sambin

    I created a whole system named Minimal Type Theory
    that translates logical expressions into the directed
    graph of their resolution sequence. When MTT detects
    a cycle in this graph that is exactly the same thing as:

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    No, it isn't. There is no reference to those words there.

    This requires a deeper understanding of the meaning of
    these words that you lack.

    If you don't know what a directed graph is then you
    won't know the difference between a directed graph
    that contain a cycle and an acyclic directed graph.

    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

    Minimal Type Theory that I created from scratch myself
    translates formal logic expressions into the directed
    graph of their evaluation sequence.

    G := reaX ~Provable(X, G) // Written in Minimal Type Theory
    Automatically translated into a Directed Graph by the MTT compiler

    [01] G (02)(04)
    [02] THERE_EXISTS (03)
    [03] X
    [04] NOT (05)
    [05] Provable (03)(01) // cycle indicates
    // infinite evaluation loop

    (PDF) Prolog detects [and rejects] pathological self reference in the
    G||del sentence. Available from: https://www.researchgate.net/publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence
    [accessed Sep 09 2025].

    In common
    language the words "Not at all", just like plain "No", refer to the immediately previous sentence or sentences, usually said by someone
    else. In this case the standard meaning is that you claim that
    "It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular," or at least "In particular," is false. But "In
    particular," is not even a sentence and therefore cannot be false.
    That Prolog meerely executes the instructions according to their
    standard semantics and implementation choices should be quite obvious
    but your "Not at all." means that you don't think it is far from
    true. As it seems unplausible that you would disagree with a so
    obvious truth it seems reasonable to think you meant sometnig else
    but what?

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 9 11:10:28 2025
    From Newsgroup: sci.logic

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    True(English, X)==FALSE
    ~True(English, X)==TRUE

    True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true")

    If it is true it must be a truth bearer. But you have also said that it
    is not a truth bearer. Apparently you have no coherent opionion about
    the liar's paradox.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 10 11:07:46 2025
    From Newsgroup: sci.logic

    On 2025-09-09 15:58:51 +0000, olcott said:

    On 9/9/2025 1:51 AM, Mikko wrote:
    On 2025-09-07 17:26:36 +0000, olcott said:

    That is all extensively elaborated in the whole
    paragraph that you completely ignored.

    Google[Minimal Type Theory] it knows my work.
    It incorrectly attributes this to: Maietti and Sambin

    I created a whole system named Minimal Type Theory
    that translates logical expressions into the directed
    graph of their resolution sequence. When MTT detects
    a cycle in this graph that is exactly the same thing as:

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    No, it isn't. There is no reference to those words there.

    This requires a deeper understanding of the meaning of
    these words that you lack.

    As the original context is removed it is no longer clear
    what "those words" mean. Consequently it is not clear what
    "deeper understanding" would be required or why.

    The comment was:

    In common
    language the words "Not at all", just like plain "No", refer to the
    immediately previous sentence or sentences, usually said by someone
    else. In this case the standard meaning is that you claim that
    "It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular," or at least "In particular," is false. But "In
    particular," is not even a sentence and therefore cannot be false.
    That Prolog meerely executes the instructions according to their
    standard semantics and implementation choices should be quite obvious
    but your "Not at all." means that you don't think it is far from
    true. As it seems unplausible that you would disagree with a so
    obvious truth it seems reasonable to think you meant sometnig else
    but what?

    Any "deeper understanding" of "not at all" is a misunderstanding.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 10 11:17:59 2025
    From Newsgroup: sci.logic

    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    True(English, X)==FALSE
    ~True(English, X)==TRUE

    True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true")

    To me that is far less simple than "The liar paradox is not true"
    if that is what you think or "The sentence 'This sentence is not true'
    is not true" otherwise.

    Anyway, this does not yet clarify whether you really mean that
    Tarski's proof is invalid because you agree with Tarski about
    someting.

    If it is true it must be a truth bearer. But you have also said that it
    is not a truth bearer. Apparently you have no coherent opionion about
    the liar's paradox.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 10 10:14:53 2025
    From Newsgroup: sci.logic

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?


    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    If you don't know what a directed graph is then you
    won't know the difference between a directed graph
    that contain a cycle and an acyclic directed graph.

    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

    Minimal Type Theory that I created from scratch myself
    translates formal logic expressions into the directed
    graph of their evaluation sequence.

    We are therefore confronted with a proposition
    which asserts its own unprovability. (G||del 1931:39-41)

    G := reaX ~Provable(X, G) // Written in Minimal Type Theory
    Automatically translated into a Directed Graph by the MTT compiler

    [01] G (02)(04)
    [02] THERE_EXISTS (03)
    [03] X
    [04] NOT (05)
    [05] Provable (03)(01) // cycle indicates
    // infinite evaluation loop

    (PDF) Prolog detects [and rejects] pathological self reference in the
    G||del sentence. Available from: https://www.researchgate.net/publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence
    [accessed Sep 09 2025].
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 10 10:20:44 2025
    From Newsgroup: sci.logic

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true")

    To me that is far less simple than "The liar paradox is not true"


    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    Is this sentence true: "This sentence is not true" NO
    Is this sentence false: "This sentence is not true" NO
    In other words "This sentence is not true" is not a truth bearer.

    if that is what you think or "The sentence 'This sentence is not true'
    is not true" otherwise.

    Anyway, this does not yet clarify whether you really mean that
    Tarski's proof is invalid because you agree with Tarski about
    someting.


    I made it completely clear yet if you have no
    idea what a directed graph is then you won't
    understand it.

    If it is true it must be a truth bearer. But you have also said that it
    is not a truth bearer. Apparently you have no coherent opionion about
    the liar's paradox.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 11 12:30:21 2025
    From Newsgroup: sci.logic

    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false".
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 11 12:43:17 2025
    From Newsgroup: sci.logic

    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true. >>>
    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true")

    To me that is far less simple than "The liar paradox is not true"

    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument.

    Is this sentence true: "This sentence is not true" NO
    Is this sentence false: "This sentence is not true" NO
    In other words "This sentence is not true" is not a truth bearer.

    Tarski also required that every arithmetic sentence is either
    true or false and that every sentence that can be validly
    inferred from true sentences is true.

    if that is what you think or "The sentence 'This sentence is not true'
    is not true" otherwise.

    Anyway, this does not yet clarify whether you really mean that
    Tarski's proof is invalid because you agree with Tarski about
    someting.

    I made it completely clear yet if you have no
    idea what a directed graph is then you won't
    understand it.

    You indeed made it complete clear that you think both that the
    liar's paradox is true and that it has not truth value. Which
    means that you have no coherent opinion on that.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 11 10:52:58 2025
    From Newsgroup: sci.logic

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual
    meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false".


    Yet the documentation that you dishonestly ignored does say

    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
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 11 11:21:11 2025
    From Newsgroup: sci.logic

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is
    true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true")

    To me that is far less simple than "The liar paradox is not true"

    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument.


    This is within his false assumption that only
    a single language exists.

    Is this sentence true:-a "This sentence is not true" NO
    Is this sentence false: "This sentence is not true" NO
    In other words "This sentence is not true" is not a truth bearer.

    Tarski also required that every arithmetic sentence is either
    true or false and that every sentence that can be validly
    inferred from true sentences is true.


    Sure and by the same reasoning "What time is it?"
    also proves that no True() predicate exists.

    if that is what you think or "The sentence 'This sentence is not true'
    is not true" otherwise.

    Anyway, this does not yet clarify whether you really mean that
    Tarski's proof is invalid because you agree with Tarski about
    someting.

    I made it completely clear yet if you have no
    idea what a directed graph is then you won't
    understand it.

    You indeed made it complete clear that you think both that the
    liar's paradox is true and that it has not truth value. Which
    means that you have no coherent opinion on that.


    I never said anything like that.
    "This sentence is not true"
    has the same truth value as this sentence
    "What time is it?"

    When the Liar Paradox is applied to itself
    then the outer sentence becomes true because
    the inner sentence has no truth value.

    I had to cover this confusing case because this
    is the confusing case that confused Tarski.

    The Liar Paradox written in the language of his
    theory is proved true by the Liar Paradox written in
    the language of his metatheory.

    "This sentence is not true" because it is not
    a truth bearer. When we apply the same sentence
    to itself we get the Liar_Paradox_Squared this
    new sentence becomes true because the inner
    sentence is not a truth bearer.

    This sentence is not true:
    applied to a copy of itself
    "This sentence in not true"
    becomes true because the inner
    sentence refers to itself and
    the outer sentence refers to
    the inner sentence.

    Here is Tarski's convoluted way of saying part of that:

    It would
    then be possible to reconstruct the antinomy of the liar in the
    metalanguage, by forming in the language itself a sentence x
    such that the sentence of the metalanguage which is correlated
    with x asserts that x is not a true sentence. https://liarparadox.org/Tarski_247_248.pdf

    Here is how he explains the rest of that. https://liarparadox.org/Tarski_275_276.pdf
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Sep 12 09:59:32 2025
    From Newsgroup: sci.logic

    On 2025-09-11 15:52:58 +0000, olcott said:

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for
    a proof. One could also state that because it is not a truth-bearer >>>>>> it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual >>>>>>>> meaning that is sufficient to reject it without further review. >>>>>>>
    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier
    whether it is acceptable or should be proven or can be rejected >>>>>>>> as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions >>>>>> according to their standard semantics and implementation choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false".

    Yet the documentation that you dishonestly ignored does say

    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

    You are right. The point that it may accept already existing cyclic
    structures must not be forgotten.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Sep 12 10:23:39 2025
    From Newsgroup: sci.logic

    On 2025-09-11 16:21:11 +0000, olcott said:

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true. >>>>>
    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true")

    To me that is far less simple than "The liar paradox is not true"

    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument.

    This is within his false assumption that only
    a single language exists.

    No, it does not. Tarski does not assume so. The discussion is for a
    truth predicate for one language only, which is a language that can
    express at least Peano arithmetic and possibly something else that
    one would like to include in the scope of the truth predicate.

    Is this sentence true:-a "This sentence is not true" NO
    Is this sentence false: "This sentence is not true" NO
    In other words "This sentence is not true" is not a truth bearer.

    Tarski also required that every arithmetic sentence is either
    true or false and that every sentence that can be validly
    inferred from true sentences is true.

    Sure and by the same reasoning "What time is it?"
    also proves that no True() predicate exists.

    Tarski didn't intend to prove that no truth predicate exists. One can
    construct a truth predicate for a sufficiently simple system, e.g.
    Abelian groups. But he did prove that it is not possible to construct
    a proof predicate that can determine the truth of a sentene in a
    language that can express sentences of Peano arithmetic or any more
    extended theory.

    if that is what you think or "The sentence 'This sentence is not true' >>>> is not true" otherwise.

    Anyway, this does not yet clarify whether you really mean that
    Tarski's proof is invalid because you agree with Tarski about
    someting.

    I made it completely clear yet if you have no
    idea what a directed graph is then you won't
    understand it.

    You indeed made it complete clear that you think both that the
    liar's paradox is true and that it has not truth value. Which
    means that you have no coherent opinion on that.

    I never said anything like that.
    "This sentence is not true"
    has the same truth value as this sentence
    "What time is it?"

    I said that the statement "Liar's paradox is not true" is true.

    In message 109hjqc$33v70$1@dont-email.me you answered "Not all all".

    Nothing said before that in the discussion supports any other
    interpretation than that you believe that the liar's paradox
    is true.

    You may retract your statement if you think you were wrong
    but so far you havn't.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Sep 12 12:08:30 2025
    From Newsgroup: sci.logic

    On 9/12/2025 1:59 AM, Mikko wrote:
    On 2025-09-11 15:52:58 +0000, olcott said:

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for >>>>>>> a proof. One could also state that because it is not a truth-bearer >>>>>>> it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual >>>>>>>>> meaning that is sufficient to reject it without further review. >>>>>>>>
    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes >>>>>>>> a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a
    word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not
    be used before the definition. Unless the definition is already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word. >>>>>>>
    If your first step is a premiss then reviewers must consdier >>>>>>>>> whether it is acceptable or should be proven or can be rejected >>>>>>>>> as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to
    do that only after the defintions, in particular the definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions >>>>>>> according to their standard semantics and implementation choices. >>>>>>> In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false".

    Yet the documentation that you dishonestly ignored does say

    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

    You are right. The point that it may accept already existing cyclic structures must not be forgotten.


    In other words when you don't have it look at
    errors it will not report them.

    Formal logic make sure to make self-reference
    inexpressible that I why I extended the syntax
    of FOPL to include the "defined as" operator :=

    https://www.researchgate.net/publication/331859461_Minimal_Type_Theory_YACC_BNF

    With this operator FOPL syntax is extended to
    be able to expression any HOL expression. My
    paper provides and example of writing a SOL
    expression in MTT.

    Google AI understands my Minimal Type theory and
    explains it very well. It does err in not attributing
    The MTT that it explains to me.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Sep 12 12:24:17 2025
    From Newsgroup: sci.logic

    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is >>>>>>> true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true")

    To me that is far less simple than "The liar paradox is not true"

    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument.

    This is within his false assumption that only
    a single language exists.

    No, it does not. Tarski does not assume so. The discussion is for a
    truth predicate for one language only, which is a language that can
    express at least Peano arithmetic and possibly something else that
    one would like to include in the scope of the truth predicate.


    What the Hell good would that be for this:
    True(English, "Election fraud change the outcome
    of the 2020 US presidential election")==FALSE

    Also it seems that you didn't bother to pay attention
    to the two languages that his proof does use. The
    language of his theory and the metalanguage of his
    metatheory.

    https://liarparadox.org/Tarski_247_248.pdf

    Is this sentence true:-a "This sentence is not true" NO
    Is this sentence false: "This sentence is not true" NO
    In other words "This sentence is not true" is not a truth bearer.

    Tarski also required that every arithmetic sentence is either
    true or false and that every sentence that can be validly
    inferred from true sentences is true.

    Sure and by the same reasoning "What time is it?"
    also proves that no True() predicate exists.

    Tarski didn't intend to prove that no truth predicate exists. One can construct a truth predicate for a sufficiently simple system, e.g.
    Abelian groups. But he did prove that it is not possible to construct
    a proof predicate that can determine the truth of a sentene in a
    language that can express sentences of Peano arithmetic or any more
    extended theory.


    Only because he mandated rather than excluded an
    expression of language having no truth value.

    if that is what you think or "The sentence 'This sentence is not true' >>>>> is not true" otherwise.

    Anyway, this does not yet clarify whether you really mean that
    Tarski's proof is invalid because you agree with Tarski about
    someting.

    I made it completely clear yet if you have no
    idea what a directed graph is then you won't
    understand it.

    You indeed made it complete clear that you think both that the
    liar's paradox is true and that it has not truth value. Which
    means that you have no coherent opinion on that.

    I never said anything like that.
    "This sentence is not true"
    has the same truth value as this sentence
    "What time is it?"

    I said that the statement "Liar's paradox is not true" is true.


    *IT IS NOT TRUE*
    It creates a cycle in its directed graph
    that can never be resolved to a truth value.

    Are you paying any attention at all?
    Do I have to repeat the term: cycle"
    ten million times before you notice that I said it once?

    This sentence is not true.
    What it is not true about?
    It is not true about being not true.
    What is it not true about being not true about?
    It not true about being not true about being not true...

    In message 109hjqc$33v70$1@dont-email.me you answered "Not all all".

    Nothing said before that in the discussion supports any other
    interpretation than that you believe that the liar's paradox
    is true.

    You may retract your statement if you think you were wrong
    but so far you havn't.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Sep 13 11:33:38 2025
    From Newsgroup: sci.logic

    On 2025-09-12 17:08:30 +0000, olcott said:

    On 9/12/2025 1:59 AM, Mikko wrote:
    On 2025-09-11 15:52:58 +0000, olcott said:

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for >>>>>>>> a proof. One could also state that because it is not a truth-bearer >>>>>>>> it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual >>>>>>>>>> meaning that is sufficient to reject it without further review. >>>>>>>>>
    The above definition is conventional. It is also a standard
    convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes >>>>>>>>> a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a >>>>>>>> word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any
    other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not >>>>>>>> be used before the definition. Unless the definition is already >>>>>>>> well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word. >>>>>>>>
    If your first step is a premiss then reviewers must consdier >>>>>>>>>> whether it is acceptable or should be proven or can be rejected >>>>>>>>>> as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to >>>>>>>> do that only after the defintions, in particular the definition >>>>>>>> of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true" >>>>>>>
    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions >>>>>>>> according to their standard semantics and implementation choices. >>>>>>>> In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false".

    Yet the documentation that you dishonestly ignored does say

    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

    You are right. The point that it may accept already existing cyclic
    structures must not be forgotten.

    In other words when you don't have it look at
    errors it will not report them.

    At least SWI-Prolog doesn't look for already existing cycles. As
    SWI-Prolog permits creation of such cyles it is reasonable to
    regard them as non-errors.

    Formal logic make sure to make self-reference
    inexpressible that I why I extended the syntax
    of FOPL to include the "defined as" operator :=

    One must either be very careful with the := operator or make clear
    rules about self-references. The usual way, if := is permitted, is
    to require that the symbol on the left side is different from all
    symbols used on the right side or anywhere earlier.

    However, the system Tarski used does not have the := operator,
    so the above is irrelevant to the topic as specified on the subject
    line.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Sep 13 11:46:22 2025
    From Newsgroup: sci.logic

    On 2025-09-12 17:24:17 +0000, olcott said:

    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true")

    To me that is far less simple than "The liar paradox is not true"

    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument.

    This is within his false assumption that only
    a single language exists.

    No, it does not. Tarski does not assume so. The discussion is for a
    truth predicate for one language only, which is a language that can
    express at least Peano arithmetic and possibly something else that
    one would like to include in the scope of the truth predicate.

    What the Hell good would that be for this:
    True(English, "Election fraud change the outcome
    of the 2020 US presidential election")==FALSE

    Also it seems that you didn't bother to pay attention
    to the two languages that his proof does use. The
    language of his theory and the metalanguage of his
    metatheory.

    It is a sin to claim about another person anything that might
    be false.

    https://liarparadox.org/Tarski_247_248.pdf

    Is this sentence true:-a "This sentence is not true" NO
    Is this sentence false: "This sentence is not true" NO
    In other words "This sentence is not true" is not a truth bearer.

    Tarski also required that every arithmetic sentence is either
    true or false and that every sentence that can be validly
    inferred from true sentences is true.

    Sure and by the same reasoning "What time is it?"
    also proves that no True() predicate exists.

    Tarski didn't intend to prove that no truth predicate exists. One can
    construct a truth predicate for a sufficiently simple system, e.g.
    Abelian groups. But he did prove that it is not possible to construct
    a proof predicate that can determine the truth of a sentene in a
    language that can express sentences of Peano arithmetic or any more
    extended theory.

    Only because he mandated rather than excluded an
    expression of language having no truth value.

    Taski did not require any lanugage features other that what is necessary
    for the first order arithmetic of natural numbers. He permitted but did
    not require other symbols. Then he proved that no matter what other
    symbols are permitted the truth predicate cannot be constructed.

    if that is what you think or "The sentence 'This sentence is not true' >>>>>> is not true" otherwise.

    Anyway, this does not yet clarify whether you really mean that
    Tarski's proof is invalid because you agree with Tarski about
    someting.

    I made it completely clear yet if you have no
    idea what a directed graph is then you won't
    understand it.

    You indeed made it complete clear that you think both that the
    liar's paradox is true and that it has not truth value. Which
    means that you have no coherent opinion on that.

    I never said anything like that.
    "This sentence is not true"
    has the same truth value as this sentence
    "What time is it?"

    I said that the statement "Liar's paradox is not true" is true.

    *IT IS NOT TRUE*

    And here you say it again.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Sep 13 08:18:25 2025
    From Newsgroup: sci.logic

    On 9/13/2025 3:33 AM, Mikko wrote:
    On 2025-09-12 17:08:30 +0000, olcott said:

    On 9/12/2025 1:59 AM, Mikko wrote:
    On 2025-09-11 15:52:58 +0000, olcott said:

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for >>>>>>>>> a proof. One could also state that because it is not a truth- >>>>>>>>> bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual >>>>>>>>>>> meaning that is sufficient to reject it without further review. >>>>>>>>>>
    The above definition is conventional. It is also a standard >>>>>>>>>> convention that when there is no word for a meaning that
    the word with the closest existing meaning is used and becomes >>>>>>>>>> a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a >>>>>>>>> word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional
    meaning.

    In
    any case one must be sure that the word is not needed for any >>>>>>>>> other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art
    meanings of terms.

    An important rule with the defined words is that they must not >>>>>>>>> be used before the definition. Unless the definition is already >>>>>>>>> well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word. >>>>>>>>>
    If your first step is a premiss then reviewers must consdier >>>>>>>>>>> whether it is acceptable or should be proven or can be rejected >>>>>>>>>>> as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to >>>>>>>>> do that only after the defintions, in particular the definition >>>>>>>>> of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true" >>>>>>>>
    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions >>>>>>>>> according to their standard semantics and implementation choices. >>>>>>>>> In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false".

    Yet the documentation that you dishonestly ignored does say

    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

    You are right. The point that it may accept already existing cyclic
    structures must not be forgotten.

    In other words when you don't have it look at
    errors it will not report them.

    At least SWI-Prolog doesn't look for already existing cycles. As
    SWI-Prolog permits creation of such cyles it is reasonable to
    regard them as non-errors.


    They cause the system to get stuck in an infinite
    loop and fail to answer.

    Formal logic make sure to make self-reference
    inexpressible that I why I extended the syntax
    of FOPL to include the "defined as" operator :=

    One must either be very careful with the := operator or make clear
    rules about self-references. The usual way, if := is permitted, is
    to require that the symbol on the left side is different from all
    symbols used on the right side or anywhere earlier.


    LP := ~True(LP)
    means ~True(~True(~True(~True(~True(~True(~True(...))))))) forever

    However, the system Tarski used does not have the := operator,
    so the above is irrelevant to the topic as specified on the subject
    line.


    The Liar Paradox DOES have a cycle in its
    evaluation sequence. Tarski was stupid to
    not see this.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Sep 13 09:34:02 2025
    From Newsgroup: sci.logic

    On 9/13/2025 3:46 AM, Mikko wrote:
    On 2025-09-12 17:24:17 +0000, olcott said:

    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox >>>>>>>>> is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true") >>>>>>>
    To me that is far less simple than "The liar paradox is not true" >>>>>>
    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument.

    This is within his false assumption that only
    a single language exists.

    No, it does not. Tarski does not assume so. The discussion is for a
    truth predicate for one language only,

    counter factual
    counter factual
    counter factual
    counter factual
    counter factual
    counter factual

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    I had to read and re-read his proof fifty times
    to get a good understanding of it.

    which is a language that can
    express at least Peano arithmetic and possibly something else that
    one would like to include in the scope of the truth predicate.

    What the Hell good would that be for this:
    True(English, "Election fraud change the outcome
    of the 2020 US presidential election")==FALSE

    Also it seems that you didn't bother to pay attention
    to the two languages that his proof does use. The
    language of his theory and the metalanguage of his
    metatheory.

    It is a sin to claim about another person anything that might
    be false.

    https://liarparadox.org/Tarski_247_248.pdf

    Is this sentence true:-a "This sentence is not true" NO
    Is this sentence false: "This sentence is not true" NO
    In other words "This sentence is not true" is not a truth bearer.

    Tarski also required that every arithmetic sentence is either
    true or false and that every sentence that can be validly
    inferred from true sentences is true.

    Sure and by the same reasoning "What time is it?"
    also proves that no True() predicate exists.

    Tarski didn't intend to prove that no truth predicate exists. One can
    construct a truth predicate for a sufficiently simple system, e.g.
    Abelian groups. But he did prove that it is not possible to construct
    a proof predicate that can determine the truth of a sentene in a
    language that can express sentences of Peano arithmetic or any more
    extended theory.

    Only because he mandated rather than excluded an
    expression of language having no truth value.

    Taski did not require any lanugage features other that what is necessary
    for the first order arithmetic of natural numbers. He permitted but did
    not require other symbols. Then he proved that no matter what other
    symbols are permitted the truth predicate cannot be constructed.

    if that is what you think or "The sentence 'This sentence is not >>>>>>> true'
    is not true" otherwise.

    Anyway, this does not yet clarify whether you really mean that
    Tarski's proof is invalid because you agree with Tarski about
    someting.

    I made it completely clear yet if you have no
    idea what a directed graph is then you won't
    understand it.

    You indeed made it complete clear that you think both that the
    liar's paradox is true and that it has not truth value. Which
    means that you have no coherent opinion on that.

    I never said anything like that.
    "This sentence is not true"
    has the same truth value as this sentence
    "What time is it?"

    I said that the statement "Liar's paradox is not true" is true.

    *IT IS NOT TRUE*

    And here you say it again.



    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    is true
    is true
    is true
    is true
    is true
    is true
    Because the inner sentence is not true
    Because the inner sentence is not true
    Because the inner sentence is not true
    Because the inner sentence is not true
    Because the inner sentence is not true
    Because the inner sentence is not true

    This is exactly the same thing as Tarski's metalanguage
    of his metatheory referring to an expression in the
    language of his theory.

    This is exactly the same thing as Tarski's metalanguage
    of his metatheory referring to an expression in the
    language of his theory.

    This is exactly the same thing as Tarski's metalanguage
    of his metatheory referring to an expression in the
    language of his theory.

    I had to read and re-read his proof fifty times
    to get a good understanding of it.

    I had to read and re-read his proof fifty times
    to get a good understanding of it.

    I had to read and re-read his proof fifty times
    to get a good understanding of it.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Sep 14 12:16:39 2025
    From Newsgroup: sci.logic

    On 2025-09-13 13:18:25 +0000, olcott said:

    On 9/13/2025 3:33 AM, Mikko wrote:
    On 2025-09-12 17:08:30 +0000, olcott said:

    On 9/12/2025 1:59 AM, Mikko wrote:
    On 2025-09-11 15:52:58 +0000, olcott said:

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for >>>>>>>>>> a proof. One could also state that because it is not a truth- bearer >>>>>>>>>> it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual >>>>>>>>>>>> meaning that is sufficient to reject it without further review. >>>>>>>>>>>
    The above definition is conventional. It is also a standard >>>>>>>>>>> convention that when there is no word for a meaning that >>>>>>>>>>> the word with the closest existing meaning is used and becomes >>>>>>>>>>> a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a >>>>>>>>>> word with a meaning far from the needed meaning is chosen.

    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional >>>>>>>>> meaning.

    In
    any case one must be sure that the word is not needed for any >>>>>>>>>> other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art >>>>>>>>> meanings of terms.

    An important rule with the defined words is that they must not >>>>>>>>>> be used before the definition. Unless the definition is already >>>>>>>>>> well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word. >>>>>>>>>>
    If your first step is a premiss then reviewers must consdier >>>>>>>>>>>> whether it is acceptable or should be proven or can be rejected >>>>>>>>>>>> as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to >>>>>>>>>> do that only after the defintions, in particular the definition >>>>>>>>>> of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true" >>>>>>>>>
    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions >>>>>>>>>> according to their standard semantics and implementation choices. >>>>>>>>>> In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false". >>>>>
    Yet the documentation that you dishonestly ignored does say

    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 >>>>
    You are right. The point that it may accept already existing cyclic
    structures must not be forgotten.

    In other words when you don't have it look at
    errors it will not report them.

    At least SWI-Prolog doesn't look for already existing cycles. As
    SWI-Prolog permits creation of such cyles it is reasonable to
    regard them as non-errors.


    They cause the system to get stuck in an infinite
    loop and fail to answer.

    Formal logic make sure to make self-reference
    inexpressible that I why I extended the syntax
    of FOPL to include the "defined as" operator :=

    One must either be very careful with the := operator or make clear
    rules about self-references. The usual way, if := is permitted, is
    to require that the symbol on the left side is different from all
    symbols used on the right side or anywhere earlier.

    LP := ~True(LP)

    which is only allowed in languages that don't prohibit the use fo the
    same symbol on the left side and in the right side

    means ~True(~True(~True(~True(~True(~True(~True(...))))))) forever

    However, the system Tarski used does not have the := operator,
    so the above is irrelevant to the topic as specified on the subject
    line.

    The Liar Paradox DOES have a cycle in its
    evaluation sequence. Tarski was stupid to
    not see this.

    The Liar Paradox has but Tarski's language does not. Tarski was not
    stupid: he knew how to transform the liar's paradox to an expression
    that does need the := operator or any other non-arithmetic operator.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Sep 14 12:36:14 2025
    From Newsgroup: sci.logic

    On 2025-09-13 14:34:02 +0000, olcott said:

    On 9/13/2025 3:46 AM, Mikko wrote:
    On 2025-09-12 17:24:17 +0000, olcott said:

    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish >>>>>>>>> -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true") >>>>>>>>
    To me that is far less simple than "The liar paradox is not true" >>>>>>>
    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument.

    This is within his false assumption that only
    a single language exists.

    No, it does not. Tarski does not assume so. The discussion is for a
    truth predicate for one language only,

    counter factual
    counter factual
    counter factual
    counter factual
    counter factual
    counter factual

    You should already know that "counter factual" does not work as
    a magic spell. Nothing works if said six times instead of three
    or nine.

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    I had to read and re-read his proof fifty times
    to get a good understanding of it.

    Apparently fifty times is not enough if you still don't know that
    the proof is about one predicate that has one argument.

    I said that the statement "Liar's paradox is not true" is true.

    *IT IS NOT TRUE*

    And here you say it again.

    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    is true

    Yes, everyone can verify that I really said it. But your anser
    "It is not true" quite clearly refers to the inner statement
    that I said I had said.

    Because the inner sentence is not true

    The subordinate clause says that the "liar's paradox is not true"
    is true. Becase the sentence "liar's paradox is not true" is true the subordinate clause is true. The sentence "Liar's paradox is not true"
    is true because because liar's paradox is not true. The liar's paradox
    is not true beause it is not a truth-bearer.

    That you say "it is not true" does not make anything untrue.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sun Sep 14 09:10:32 2025
    From Newsgroup: sci.logic

    On 9/14/2025 4:36 AM, Mikko wrote:
    On 2025-09-13 14:34:02 +0000, olcott said:

    On 9/13/2025 3:46 AM, Mikko wrote:
    On 2025-09-12 17:24:17 +0000, olcott said:

    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's
    paradox is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish >>>>>>>>>> -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true") >>>>>>>>>
    To me that is far less simple than "The liar paradox is not true" >>>>>>>>
    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument.

    This is within his false assumption that only
    a single language exists.

    No, it does not. Tarski does not assume so. The discussion is for a
    truth predicate for one language only,

    counter factual
    counter factual
    counter factual
    counter factual
    counter factual
    counter factual

    You should already know that "counter factual" does not work as
    a magic spell. Nothing works if said six times instead of three
    or nine.

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    I had to read and re-read his proof fifty times
    to get a good understanding of it.

    Apparently fifty times is not enough if you still don't know that
    the proof is about one predicate that has one argument.

    I said that the statement "Liar's paradox is not true" is true.

    *IT IS NOT TRUE*

    And here you say it again.

    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    is true

    Yes, everyone can verify that I really said it. But your anser
    "It is not true" quite clearly refers to the inner statement
    that I said I had said.

    Because the inner sentence is not true

    The subordinate clause says that the "liar's paradox is not true"
    is true. Becase the sentence "liar's paradox is not true" is true the subordinate clause is true. The sentence "Liar's paradox is not true"
    is true because because liar's paradox is not true. The liar's paradox
    is not true beause it is not a truth-bearer.

    That you say "it is not true" does not make anything untrue.


    This sentence is not true: "This sentence is not true" is true
    is the whole essence of Tarski's proof that no sufficiently complex
    system can define its own truth predicate.

    When we simply toss out "This sentence is not true" as not a
    bearer of truth his whole argument falls apart.

    Also even within Tarski's reasoning a system that includes
    multiple levels of logic within the same system such as
    my Minimal Type Theory (MTT) can define its own truth
    predicate by having one order of logic refer to the
    next lower order of logic.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sun Sep 14 09:12:47 2025
    From Newsgroup: sci.logic

    On 9/14/2025 4:16 AM, Mikko wrote:
    On 2025-09-13 13:18:25 +0000, olcott said:

    On 9/13/2025 3:33 AM, Mikko wrote:
    On 2025-09-12 17:08:30 +0000, olcott said:

    On 9/12/2025 1:59 AM, Mikko wrote:
    On 2025-09-11 15:52:58 +0000, olcott said:

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value.

    That is not a definition but could be a valid starting point for >>>>>>>>>>> a proof. One could also state that because it is not a truth- >>>>>>>>>>> bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual >>>>>>>>>>>>> meaning that is sufficient to reject it without further >>>>>>>>>>>>> review.

    The above definition is conventional. It is also a standard >>>>>>>>>>>> convention that when there is no word for a meaning that >>>>>>>>>>>> the word with the closest existing meaning is used and becomes >>>>>>>>>>>> a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a >>>>>>>>>>> word with a meaning far from the needed meaning is chosen. >>>>>>>>>>
    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional >>>>>>>>>> meaning.

    In
    any case one must be sure that the word is not needed for any >>>>>>>>>>> other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art >>>>>>>>>> meanings of terms.

    An important rule with the defined words is that they must not >>>>>>>>>>> be used before the definition. Unless the definition is already >>>>>>>>>>> well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the >>>>>>>>>>> word.

    If your first step is a premiss then reviewers must consdier >>>>>>>>>>>>> whether it is acceptable or should be proven or can be >>>>>>>>>>>>> rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven
    completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to >>>>>>>>>>> do that only after the defintions, in particular the definition >>>>>>>>>>> of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true" >>>>>>>>>>
    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the
    instructions
    according to their standard semantics and implementation >>>>>>>>>>> choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false". >>>>>>
    Yet the documentation that you dishonestly ignored does say

    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

    You are right. The point that it may accept already existing cyclic
    structures must not be forgotten.

    In other words when you don't have it look at
    errors it will not report them.

    At least SWI-Prolog doesn't look for already existing cycles. As
    SWI-Prolog permits creation of such cyles it is reasonable to
    regard them as non-errors.


    They cause the system to get stuck in an infinite
    loop and fail to answer.

    Formal logic make sure to make self-reference
    inexpressible that I why I extended the syntax
    of FOPL to include the "defined as" operator :=

    One must either be very careful with the := operator or make clear
    rules about self-references. The usual way, if := is permitted, is
    to require that the symbol on the left side is different from all
    symbols used on the right side or anywhere earlier.

    LP := ~True(LP)

    which is only allowed in languages that don't prohibit the use fo the
    same symbol on the left side and in the right side

    means ~True(~True(~True(~True(~True(~True(~True(...))))))) forever

    However, the system Tarski used does not have the := operator,
    so the above is irrelevant to the topic as specified on the subject
    line.

    The Liar Paradox DOES have a cycle in its
    evaluation sequence. Tarski was stupid to
    not see this.

    The Liar Paradox has but Tarski's language does not. Tarski was not
    stupid: he knew how to transform the liar's paradox to an expression
    that does need the := operator or any other non-arithmetic operator.


    He was profoundly brilliant on most things. On the Liar Paradox
    specifying a cycle in its evaluation graph it seems that most
    of humanity is stupid.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From joes@noreply@example.org to sci.logic on Sun Sep 14 16:22:55 2025
    From Newsgroup: sci.logic

    Am Fri, 12 Sep 2025 12:24:17 -0500 schrieb olcott:
    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:
    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:
    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:
    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Boolean True(Language L, Expression E);
    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    -a True(English, X)==FALSE
    ~True(English, X)==TRUE
    Therefore True(~X)=true (and ~True(~X)=false).

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE
    Contradiction.

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence is the
    same as this: ~True(English, "This sentence is not true")
    Isn't the outer sentence true?

    No, it does not. Tarski does not assume so. The discussion is for a
    truth predicate for one language only, which is a language that can
    express at least Peano arithmetic and possibly something else that one
    would like to include in the scope of the truth predicate.

    What the Hell good would that be for this: True(English, "Election fraud change the outcome of the 2020 US presidential election")==FALSE
    I don't know why you want to do that! English is not a formal language.

    Is this sentence true:-a "This sentence is not true" NO Is this
    sentence false: "This sentence is not true" NO In other words "This
    sentence is not true" is not a truth bearer.

    Tarski also required that every arithmetic sentence is either true or
    false and that every sentence that can be validly inferred from true
    sentences is true.

    Sure and by the same reasoning "What time is it?"
    also proves that no True() predicate exists.
    That is not a sentence.

    Tarski didn't intend to prove that no truth predicate exists. One can
    construct a truth predicate for a sufficiently simple system, e.g.
    Abelian groups. But he did prove that it is not possible to construct a
    proof predicate that can determine the truth of a sentene in a language
    that can express sentences of Peano arithmetic or any more extended
    theory.

    Only because he mandated rather than excluded an expression of language having no truth value.

    There are probably many other sentences like it, and determining
    if you've got one of them is probably impossible.


    You indeed made it complete clear that you think both that the liar's
    paradox is true and that it has not truth value. Which means that you
    have no coherent opinion on that.

    I never said anything like that.
    "This sentence is not true"
    has the same truth value as this sentence "What time is it?"

    I said that the statement "Liar's paradox is not true" is true.

    *IT IS NOT TRUE*
    Yes. Or do you mean that "The liar sentence is not true" is wrong?

    Do I have to repeat the term: cycle"
    ten million times before you notice that I said it once?
    No.

    In message 109hjqc$33v70$1@dont-email.me you answered "Not all all".
    Nothing said before that in the discussion supports any other
    interpretation than that you believe that the liar's paradox is true.
    You may retract your statement if you think you were wrong but so far
    you havn't.
    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From joes@noreply@example.org to sci.logic on Sun Sep 14 16:58:35 2025
    From Newsgroup: sci.logic

    Am Thu, 11 Sep 2025 11:21:11 -0500 schrieb olcott:

    I had to cover this confusing case because this is the confusing case
    that confused Tarski.
    Confusing case is confusing.

    The Liar Paradox written in the language of his theory is proved true by
    the Liar Paradox written in the language of his metatheory.
    WDYM by a paradox being true?

    "This sentence is not true" because it is not a truth bearer. When we
    apply the same sentence to itself we get the Liar_Paradox_Squared this
    new sentence becomes true because the inner sentence is not a truth
    bearer.
    If it were not true, it would be saying the truth, making it wrong.
    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Mon Sep 15 10:39:01 2025
    From Newsgroup: sci.logic

    On 2025-09-14 14:12:47 +0000, olcott said:

    On 9/14/2025 4:16 AM, Mikko wrote:
    On 2025-09-13 13:18:25 +0000, olcott said:

    On 9/13/2025 3:33 AM, Mikko wrote:
    On 2025-09-12 17:08:30 +0000, olcott said:

    On 9/12/2025 1:59 AM, Mikko wrote:
    On 2025-09-11 15:52:58 +0000, olcott said:

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition.

    Here is is: "this sentence is not true" within the
    philosophy of logic it would be called not a truth
    bearer because it cannot possibly have a truth value. >>>>>>>>>>>>
    That is not a definition but could be a valid starting point for >>>>>>>>>>>> a proof. One could also state that because it is not a truth- bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions.

    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual >>>>>>>>>>>>>> meaning that is sufficient to reject it without further review. >>>>>>>>>>>>>
    The above definition is conventional. It is also a standard >>>>>>>>>>>>> convention that when there is no word for a meaning that >>>>>>>>>>>>> the word with the closest existing meaning is used and becomes >>>>>>>>>>>>> a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a >>>>>>>>>>>> word with a meaning far from the needed meaning is chosen. >>>>>>>>>>>
    That makes communication very misleading rather than
    effective. The best way to do this in natural language
    is to choose an existing term with the closest meaning
    and then specify the exact divergence from this conventional >>>>>>>>>>> meaning.

    In
    any case one must be sure that the word is not needed for any >>>>>>>>>>>> other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings
    that correspond to sense meanings of words or term-of-the-art >>>>>>>>>>> meanings of terms.

    An important rule with the defined words is that they must not >>>>>>>>>>>> be used before the definition. Unless the definition is already >>>>>>>>>>>> well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word. >>>>>>>>>>>>
    If your first step is a premiss then reviewers must consdier >>>>>>>>>>>>>> whether it is acceptable or should be proven or can be rejected >>>>>>>>>>>>>> as false.

    That the Liar Paradox is not a truth bearer is proven >>>>>>>>>>>>> completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to >>>>>>>>>>>> do that only after the defintions, in particular the definition >>>>>>>>>>>> of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true" >>>>>>>>>>>
    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you
    can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions >>>>>>>>>>>> according to their standard semantics and implementation choices. >>>>>>>>>>>> In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false". >>>>>>>
    Yet the documentation that you dishonestly ignored does say

    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

    You are right. The point that it may accept already existing cyclic >>>>>> structures must not be forgotten.

    In other words when you don't have it look at
    errors it will not report them.

    At least SWI-Prolog doesn't look for already existing cycles. As
    SWI-Prolog permits creation of such cyles it is reasonable to
    regard them as non-errors.


    They cause the system to get stuck in an infinite
    loop and fail to answer.

    Formal logic make sure to make self-reference
    inexpressible that I why I extended the syntax
    of FOPL to include the "defined as" operator :=

    One must either be very careful with the := operator or make clear
    rules about self-references. The usual way, if := is permitted, is
    to require that the symbol on the left side is different from all
    symbols used on the right side or anywhere earlier.

    LP := ~True(LP)

    which is only allowed in languages that don't prohibit the use fo the
    same symbol on the left side and in the right side

    means ~True(~True(~True(~True(~True(~True(~True(...))))))) forever

    However, the system Tarski used does not have the := operator,
    so the above is irrelevant to the topic as specified on the subject
    line.

    The Liar Paradox DOES have a cycle in its
    evaluation sequence. Tarski was stupid to
    not see this.

    The Liar Paradox has but Tarski's language does not. Tarski was not
    stupid: he knew how to transform the liar's paradox to an expression
    that does need the := operator or any other non-arithmetic operator.

    He was profoundly brilliant on most things. On the Liar Paradox
    specifying a cycle in its evaluation graph it seems that most
    of humanity is stupid.

    Perhaps most of humanity is stupid although only a small part is
    stupic enough to shoe their naked stupidity to everyone. But that
    does not matter. The topic of the discussion is Tarski, who was
    not stupid.

    Most people quickly see that it is not possibly to assign a truth
    value to the liar's paradox. Some don't know what an "evaluation
    graph" is but they can reach the same conclusion with different
    thinking. What is too hard for many but not everyone is that that
    means that there cannot be a truth predicate over any domain that
    includes the liar's paradox or any similar paradox, e.g., "This
    sentence is false", "This sentence is not true", "This sentence
    is not provable".
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Mon Sep 15 10:53:17 2025
    From Newsgroup: sci.logic

    On 2025-09-14 14:10:32 +0000, olcott said:

    On 9/14/2025 4:36 AM, Mikko wrote:
    On 2025-09-13 14:34:02 +0000, olcott said:

    On 9/13/2025 3:46 AM, Mikko wrote:
    On 2025-09-12 17:24:17 +0000, olcott said:

    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish >>>>>>>>>>> -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence
    is the same as this: ~True(English, "This sentence is not true") >>>>>>>>>>
    To me that is far less simple than "The liar paradox is not true" >>>>>>>>>
    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument. >>>>>>>
    This is within his false assumption that only
    a single language exists.

    No, it does not. Tarski does not assume so. The discussion is for a >>>>>> truth predicate for one language only,

    counter factual
    counter factual
    counter factual
    counter factual
    counter factual
    counter factual

    You should already know that "counter factual" does not work as
    a magic spell. Nothing works if said six times instead of three
    or nine.

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    I had to read and re-read his proof fifty times
    to get a good understanding of it.

    Apparently fifty times is not enough if you still don't know that
    the proof is about one predicate that has one argument.

    I said that the statement "Liar's paradox is not true" is true.

    *IT IS NOT TRUE*

    And here you say it again.

    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    is true

    Yes, everyone can verify that I really said it. But your anser
    "It is not true" quite clearly refers to the inner statement
    that I said I had said.

    Because the inner sentence is not true

    The subordinate clause says that the "liar's paradox is not true"
    is true. Becase the sentence "liar's paradox is not true" is true the
    subordinate clause is true. The sentence "Liar's paradox is not true"
    is true because because liar's paradox is not true. The liar's paradox
    is not true beause it is not a truth-bearer.

    That you say "it is not true" does not make anything untrue.


    This sentence is not true: "This sentence is not true" is true
    is the whole essence of Tarski's proof that no sufficiently complex
    system can define its own truth predicate.

    When we simply toss out "This sentence is not true" as not a
    bearer of truth his whole argument falls apart.

    No, it does not. If "This sentence is not true" is not a truth
    bearer it is neither true nor false. That means that there is
    no predicate that can correctly say that it is true and there
    is no truth predicate that can correctly say that it is false.
    So there cannot be any truth predicate over any domain where
    "This sentence is not true" can be expressed.

    Also even within Tarski's reasoning a system that includes
    multiple levels of logic within the same system such as
    my Minimal Type Theory (MTT) can define its own truth
    predicate by having one order of logic refer to the
    next lower order of logic.

    Taski's proof does not assume that the logic is first order. Consequently
    the proof that any theory of any order that includes arithmetic cannot
    have a truth predicate.

    Every first order theory can be extended to a higher order so every
    first order proof is also a higher order proof.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 15 10:58:00 2025
    From Newsgroup: sci.logic

    On 9/14/2025 11:22 AM, joes wrote:
    Am Fri, 12 Sep 2025 12:24:17 -0500 schrieb olcott:
    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:
    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:
    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:
    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Boolean True(Language L, Expression E);
    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish
    -a True(English, X)==FALSE
    ~True(English, X)==TRUE
    Therefore True(~X)=true (and ~True(~X)=false).

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    Contradiction.


    Not paying close enough attention.

    This sentence is not true: "This sentence is not true"
    with the outer sentence referring to the inner sentence is the >>>>>>>> same as this: ~True(English, "This sentence is not true")

    Isn't the outer sentence true?


    That is the single sentence version of the two sentence form
    This sentence is not true: is replaced with ~True(

    No, it does not. Tarski does not assume so. The discussion is for a
    truth predicate for one language only, which is a language that can
    express at least Peano arithmetic and possibly something else that one
    would like to include in the scope of the truth predicate.

    What the Hell good would that be for this: True(English, "Election fraud
    change the outcome of the 2020 US presidential election")==FALSE
    I don't know why you want to do that! English is not a formal language.


    Mathematically formalized natural language https://plato.stanford.edu/entries/montague-semantics/

    Because I don't want Nazi death chambers to return
    or for climate change to kill all life on Earth in
    145 F heat waves.

    Is this sentence true:-a "This sentence is not true" NO Is this
    sentence false: "This sentence is not true" NO In other words "This >>>>>> sentence is not true" is not a truth bearer.

    Tarski also required that every arithmetic sentence is either true or >>>>> false and that every sentence that can be validly inferred from true >>>>> sentences is true.

    Sure and by the same reasoning "What time is it?"
    also proves that no True() predicate exists.
    That is not a sentence.

    Tarski didn't intend to prove that no truth predicate exists. One can
    construct a truth predicate for a sufficiently simple system, e.g.
    Abelian groups. But he did prove that it is not possible to construct a
    proof predicate that can determine the truth of a sentene in a language
    that can express sentences of Peano arithmetic or any more extended
    theory.

    Only because he mandated rather than excluded an expression of language
    having no truth value.

    There are probably many other sentences like it, and determining
    if you've got one of them is probably impossible.


    A sufficiently intelligent system will be able
    to reject expressions of language that are not
    truth bearers.


    You indeed made it complete clear that you think both that the liar's >>>>> paradox is true and that it has not truth value. Which means that you >>>>> have no coherent opinion on that.

    I never said anything like that.
    "This sentence is not true"
    has the same truth value as this sentence "What time is it?"

    I said that the statement "Liar's paradox is not true" is true.

    *IT IS NOT TRUE*
    Yes. Or do you mean that "The liar sentence is not true" is wrong?


    What time is it? is neither true nor false.
    Formal logic is too stupid to reject expressions
    that are not *semantically* WFF.

    Do I have to repeat the term: cycle"
    ten million times before you notice that I said it once?
    No.


    Formal expressions of language can be translated
    into their corresponding directed graph by my own
    Minimal Type Theory (MTT). When there is a cycle
    in the graph then the expression is rejected as
    not a truth bearer.

    Prolog can do this same thing.

    In message 109hjqc$33v70$1@dont-email.me you answered "Not all all".
    Nothing said before that in the discussion supports any other
    interpretation than that you believe that the liar's paradox is true.
    You may retract your statement if you think you were wrong but so far
    you havn't.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 15 11:00:40 2025
    From Newsgroup: sci.logic

    On 9/14/2025 11:58 AM, joes wrote:
    Am Thu, 11 Sep 2025 11:21:11 -0500 schrieb olcott:

    I had to cover this confusing case because this is the confusing case
    that confused Tarski.
    Confusing case is confusing.

    The Liar Paradox written in the language of his theory is proved true by
    the Liar Paradox written in the language of his metatheory.
    WDYM by a paradox being true?

    "This sentence is not true" because it is not a truth bearer. When we
    apply the same sentence to itself we get the Liar_Paradox_Squared this
    new sentence becomes true because the inner sentence is not a truth
    bearer.
    If it were not true, it would be saying the truth, making it wrong.


    This gibberish: "klJK897BJHUYTDKJAoi8ew" is not
    true because it is gibberish.
    True("klJK897BJHUYTDKJAoi8ew")==FALSE
    ~True("klJK897BJHUYTDKJAoi8ew")==TRUE
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 15 11:16:29 2025
    From Newsgroup: sci.logic

    On 9/15/2025 2:39 AM, Mikko wrote:
    On 2025-09-14 14:12:47 +0000, olcott said:

    On 9/14/2025 4:16 AM, Mikko wrote:
    On 2025-09-13 13:18:25 +0000, olcott said:

    On 9/13/2025 3:33 AM, Mikko wrote:
    On 2025-09-12 17:08:30 +0000, olcott said:

    On 9/12/2025 1:59 AM, Mikko wrote:
    On 2025-09-11 15:52:58 +0000, olcott said:

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition. >>>>>>>>>>>>>>
    Here is is: "this sentence is not true" within the >>>>>>>>>>>>>> philosophy of logic it would be called not a truth >>>>>>>>>>>>>> bearer because it cannot possibly have a truth value. >>>>>>>>>>>>>
    That is not a definition but could be a valid starting >>>>>>>>>>>>> point for
    a proof. One could also state that because it is not a >>>>>>>>>>>>> truth- bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes
    English declarative sentences and logical propositions. >>>>>>>>>>>>
    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its >>>>>>>>>>>>>>> usual
    meaning that is sufficient to reject it without further >>>>>>>>>>>>>>> review.

    The above definition is conventional. It is also a standard >>>>>>>>>>>>>> convention that when there is no word for a meaning that >>>>>>>>>>>>>> the word with the closest existing meaning is used and >>>>>>>>>>>>>> becomes
    a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. >>>>>>>>>>>>> Sometimes a
    word with a meaning far from the needed meaning is chosen. >>>>>>>>>>>>
    That makes communication very misleading rather than
    effective. The best way to do this in natural language >>>>>>>>>>>> is to choose an existing term with the closest meaning >>>>>>>>>>>> and then specify the exact divergence from this conventional >>>>>>>>>>>> meaning.

    In
    any case one must be sure that the word is not needed for any >>>>>>>>>>>>> other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings >>>>>>>>>>>> that correspond to sense meanings of words or term-of-the-art >>>>>>>>>>>> meanings of terms.

    An important rule with the defined words is that they must not >>>>>>>>>>>>> be used before the definition. Unless the definition is >>>>>>>>>>>>> already
    well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the >>>>>>>>>>>>> word.

    If your first step is a premiss then reviewers must consdier >>>>>>>>>>>>>>> whether it is acceptable or should be proven or can be >>>>>>>>>>>>>>> rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven >>>>>>>>>>>>>> completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is >>>>>>>>>>>>> better to
    do that only after the defintions, in particular the >>>>>>>>>>>>> definition
    of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not >>>>>>>>>>>> true"

    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you >>>>>>>>>>>>>> can comprehend.

    It doesn't prove anything. Prolog merely executes the >>>>>>>>>>>>> instructions
    according to their standard semantics and implementation >>>>>>>>>>>>> choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says
    "false".

    Yet the documentation that you dishonestly ignored does say

    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

    You are right. The point that it may accept already existing cyclic >>>>>>> structures must not be forgotten.

    In other words when you don't have it look at
    errors it will not report them.

    At least SWI-Prolog doesn't look for already existing cycles. As
    SWI-Prolog permits creation of such cyles it is reasonable to
    regard them as non-errors.


    They cause the system to get stuck in an infinite
    loop and fail to answer.

    Formal logic make sure to make self-reference
    inexpressible that I why I extended the syntax
    of FOPL to include the "defined as" operator :=

    One must either be very careful with the := operator or make clear
    rules about self-references. The usual way, if := is permitted, is
    to require that the symbol on the left side is different from all
    symbols used on the right side or anywhere earlier.

    LP := ~True(LP)

    which is only allowed in languages that don't prohibit the use fo the
    same symbol on the left side and in the right side

    means ~True(~True(~True(~True(~True(~True(~True(...))))))) forever

    However, the system Tarski used does not have the := operator,
    so the above is irrelevant to the topic as specified on the subject
    line.

    The Liar Paradox DOES have a cycle in its
    evaluation sequence. Tarski was stupid to
    not see this.

    The Liar Paradox has but Tarski's language does not. Tarski was not
    stupid: he knew how to transform the liar's paradox to an expression
    that does need the := operator or any other non-arithmetic operator.

    He was profoundly brilliant on most things. On the Liar Paradox
    specifying a cycle in its evaluation graph it seems that most
    of humanity is stupid.

    Perhaps most of humanity is stupid although only a small part is
    stupic enough to shoe their naked stupidity to everyone. But that
    does not matter. The topic of the discussion is Tarski, who was
    not stupid.

    Most people quickly see that it is not possibly to assign a truth
    value to the liar's paradox. Some don't know what an "evaluation
    graph" is but they can reach the same conclusion with different
    thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    What is too hard for many but not everyone is that that
    means that there cannot be a truth predicate over any domain that
    includes the liar's paradox or any similar paradox, e.g., "This
    sentence is false", "This sentence is not true", "This sentence
    is not provable".


    Likewise there cannot be any truth predicate over any
    domain that has questions when people are stupid enough
    to think that questions have a truth value.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 15 11:19:57 2025
    From Newsgroup: sci.logic

    On 9/15/2025 2:53 AM, Mikko wrote:
    On 2025-09-14 14:10:32 +0000, olcott said:

    On 9/14/2025 4:36 AM, Mikko wrote:
    On 2025-09-13 14:34:02 +0000, olcott said:

    On 9/13/2025 3:46 AM, Mikko wrote:
    On 2025-09-12 17:24:17 +0000, olcott said:

    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's >>>>>>>>>>>>> paradox is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish >>>>>>>>>>>> -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE
    ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true" >>>>>>>>>>>> with the outer sentence referring to the inner sentence >>>>>>>>>>>> is the same as this: ~True(English, "This sentence is not >>>>>>>>>>>> true")

    To me that is far less simple than "The liar paradox is not >>>>>>>>>>> true"

    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument. >>>>>>>>
    This is within his false assumption that only
    a single language exists.

    No, it does not. Tarski does not assume so. The discussion is for a >>>>>>> truth predicate for one language only,

    counter factual
    counter factual
    counter factual
    counter factual
    counter factual
    counter factual

    You should already know that "counter factual" does not work as
    a magic spell. Nothing works if said six times instead of three
    or nine.

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    I had to read and re-read his proof fifty times
    to get a good understanding of it.

    Apparently fifty times is not enough if you still don't know that
    the proof is about one predicate that has one argument.

    I said that the statement "Liar's paradox is not true" is true.

    *IT IS NOT TRUE*

    And here you say it again.

    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    is true

    Yes, everyone can verify that I really said it. But your anser
    "It is not true" quite clearly refers to the inner statement
    that I said I had said.

    Because the inner sentence is not true

    The subordinate clause says that the "liar's paradox is not true"
    is true. Becase the sentence "liar's paradox is not true" is true the
    subordinate clause is true. The sentence "Liar's paradox is not true"
    is true because because liar's paradox is not true. The liar's paradox
    is not true beause it is not a truth-bearer.

    That you say "it is not true" does not make anything untrue.


    This sentence is not true: "This sentence is not true" is true
    is the whole essence of Tarski's proof that no sufficiently complex
    system can define its own truth predicate.

    When we simply toss out "This sentence is not true" as not a
    bearer of truth his whole argument falls apart.

    No, it does not. If "This sentence is not true" is not a truth
    bearer it is neither true nor false. That means that there is
    no predicate that can correctly say that it is true and there
    is no truth predicate that can correctly say that it is false.
    So there cannot be any truth predicate over any domain where
    "This sentence is not true" can be expressed.

    Also even within Tarski's reasoning a system that includes
    multiple levels of logic within the same system such as
    my Minimal Type Theory (MTT) can define its own truth
    predicate by having one order of logic refer to the
    next lower order of logic.

    Taski's proof does not assume that the logic is first order. Consequently
    the proof that any theory of any order that includes arithmetic cannot
    have a truth predicate.

    Every first order theory can be extended to a higher order so every
    first order proof is also a higher order proof.


    He assumes that it is a single fixed order otherwise
    the dumb bunny would understand that he could make
    a truth predicate that formalizes:
    This sentence is not true: "This sentence is not true"
    at his two levels and do this in the same single formal system.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 16 11:54:37 2025
    From Newsgroup: sci.logic

    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:
    On 2025-09-14 14:12:47 +0000, olcott said:

    On 9/14/2025 4:16 AM, Mikko wrote:
    On 2025-09-13 13:18:25 +0000, olcott said:

    On 9/13/2025 3:33 AM, Mikko wrote:
    On 2025-09-12 17:08:30 +0000, olcott said:

    On 9/12/2025 1:59 AM, Mikko wrote:
    On 2025-09-11 15:52:58 +0000, olcott said:

    On 9/11/2025 4:30 AM, Mikko wrote:
    On 2025-09-10 15:14:53 +0000, olcott said:

    On 9/7/2025 3:27 AM, Mikko wrote:
    On 2025-09-06 15:23:58 +0000, olcott said:

    On 9/6/2025 3:25 AM, Mikko wrote:
    On 2025-09-05 14:46:13 +0000, olcott said:

    On 9/5/2025 2:31 AM, Mikko wrote:>>>
    The first step of a proof is usually a definition. >>>>>>>>>>>>>>>
    Here is is: "this sentence is not true" within the >>>>>>>>>>>>>>> philosophy of logic it would be called not a truth >>>>>>>>>>>>>>> bearer because it cannot possibly have a truth value. >>>>>>>>>>>>>>
    That is not a definition but could be a valid starting point for >>>>>>>>>>>>>> a proof. One could also state that because it is not a truth- bearer
    it cannot be provable in a consistent system.


    *I mixed two things together*
    A truth bearer is any expression of language that
    possibly be resolved to a truth value. This includes >>>>>>>>>>>>> English declarative sentences and logical propositions. >>>>>>>>>>>>>
    "This sentence is not true"
    Cannot possibly be resolved to a truth value.

    If you try to
    define a term that is alredy in use differently from its usual >>>>>>>>>>>>>>>> meaning that is sufficient to reject it without further review.

    The above definition is conventional. It is also a standard >>>>>>>>>>>>>>> convention that when there is no word for a meaning that >>>>>>>>>>>>>>> the word with the closest existing meaning is used and becomes >>>>>>>>>>>>>>> a term of the art by adapting this meaning.

    It is not always the word with the closest meaning. Sometimes a >>>>>>>>>>>>>> word with a meaning far from the needed meaning is chosen. >>>>>>>>>>>>>
    That makes communication very misleading rather than >>>>>>>>>>>>> effective. The best way to do this in natural language >>>>>>>>>>>>> is to choose an existing term with the closest meaning >>>>>>>>>>>>> and then specify the exact divergence from this conventional >>>>>>>>>>>>> meaning.

    In
    any case one must be sure that the word is not needed for any >>>>>>>>>>>>>> other meaning in the same context.


    The CYC project uses 128-bit GUIDs for unique meanings >>>>>>>>>>>>> that correspond to sense meanings of words or term-of-the-art >>>>>>>>>>>>> meanings of terms.

    An important rule with the defined words is that they must not >>>>>>>>>>>>>> be used before the definition. Unless the definition is already >>>>>>>>>>>>>> well known

    Such as truth bearer.

    this includes the title and the abstract. In the
    introduction one can say "will be defined" and then use the word.

    If your first step is a premiss then reviewers must consdier >>>>>>>>>>>>>>>> whether it is acceptable or should be proven or can be rejected
    as false.

    That the Liar Paradox is not a truth bearer is proven >>>>>>>>>>>>>>> completely true by the meaning is these words.

    Therefore it can be introduced as a premiss but it is better to >>>>>>>>>>>>>> do that only after the defintions, in particular the definition >>>>>>>>>>>>>> of "the Liar Paradox".


    I always define the Liar Paradox as: "This sentence is not true" >>>>>>>>>>>>>
    ?- LP = not(true_(LP)).
    LP = not(true(LP)).
    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    Also proves that this is true, yet beyond what you >>>>>>>>>>>>>>> can comprehend.

    It doesn't prove anything. Prolog merely executes the instructions
    according to their standard semantics and implementation choices.
    In particular,

    Not at all.

    What not at all? What is that intended to refer to?

    Prolog does prove that the Liar Paradox has a
    cycle in its resolution directed graph the same
    way that I use Minimal Type Theory so show that
    the G||del sentence has a cycle below.

    Prolog does not say "a cycle in resolution graph". It says "false". >>>>>>>>>
    Yet the documentation that you dishonestly ignored does say

    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

    You are right. The point that it may accept already existing cyclic >>>>>>>> structures must not be forgotten.

    In other words when you don't have it look at
    errors it will not report them.

    At least SWI-Prolog doesn't look for already existing cycles. As
    SWI-Prolog permits creation of such cyles it is reasonable to
    regard them as non-errors.


    They cause the system to get stuck in an infinite
    loop and fail to answer.

    Formal logic make sure to make self-reference
    inexpressible that I why I extended the syntax
    of FOPL to include the "defined as" operator :=

    One must either be very careful with the := operator or make clear >>>>>> rules about self-references. The usual way, if := is permitted, is >>>>>> to require that the symbol on the left side is different from all
    symbols used on the right side or anywhere earlier.

    LP := ~True(LP)

    which is only allowed in languages that don't prohibit the use fo the
    same symbol on the left side and in the right side

    means ~True(~True(~True(~True(~True(~True(~True(...))))))) forever

    However, the system Tarski used does not have the := operator,
    so the above is irrelevant to the topic as specified on the subject >>>>>> line.

    The Liar Paradox DOES have a cycle in its
    evaluation sequence. Tarski was stupid to
    not see this.

    The Liar Paradox has but Tarski's language does not. Tarski was not
    stupid: he knew how to transform the liar's paradox to an expression
    that does need the := operator or any other non-arithmetic operator.

    He was profoundly brilliant on most things. On the Liar Paradox
    specifying a cycle in its evaluation graph it seems that most
    of humanity is stupid.

    Perhaps most of humanity is stupid although only a small part is
    stupic enough to shoe their naked stupidity to everyone. But that
    does not matter. The topic of the discussion is Tarski, who was
    not stupid.

    Most people quickly see that it is not possibly to assign a truth
    value to the liar's paradox. Some don't know what an "evaluation
    graph" is but they can reach the same conclusion with different
    thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values.
    Checking for cycles is Turing computable, truth is not. The
    reason the check is not always done is that it is a complex
    computation that may cost more than the value of the result.

    What is too hard for many but not everyone is that that
    means that there cannot be a truth predicate over any domain that
    includes the liar's paradox or any similar paradox, e.g., "This
    sentence is false", "This sentence is not true", "This sentence
    is not provable".

    Likewise there cannot be any truth predicate over any
    domain that has questions when people are stupid enough
    to think that questions have a truth value.

    Predicates only answer what a theory predicts. No theory about
    stupidity of people is exact.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 16 11:56:46 2025
    From Newsgroup: sci.logic

    On 2025-09-15 16:19:57 +0000, olcott said:

    On 9/15/2025 2:53 AM, Mikko wrote:
    On 2025-09-14 14:10:32 +0000, olcott said:

    On 9/14/2025 4:36 AM, Mikko wrote:
    On 2025-09-13 14:34:02 +0000, olcott said:

    On 9/13/2025 3:46 AM, Mikko wrote:
    On 2025-09-12 17:24:17 +0000, olcott said:

    On 9/12/2025 2:23 AM, Mikko wrote:
    On 2025-09-11 16:21:11 +0000, olcott said:

    On 9/11/2025 4:43 AM, Mikko wrote:
    On 2025-09-10 15:20:44 +0000, olcott said:

    On 9/10/2025 3:17 AM, Mikko wrote:
    On 2025-09-09 16:10:28 +0000, olcott said:

    On 9/9/2025 1:57 AM, Mikko wrote:
    On 2025-09-06 15:26:04 +0000, olcott said:

    Not all all see my other reply about cycles
    in directed graphs of resolution sequences.

    Here your "not at all" says that you think that liar's paradox is true.

    *You got confused let me simplify*
    Boolean True(Language L, Expression E);

    X = "k*lsndesoiedfem,89234rm,dv0io9werf" // random gibberish >>>>>>>>>>>>> -a True(English, X)==FALSE
    ~True(English, X)==TRUE

    -a True(English, "this sentence is not true" )==FALSE >>>>>>>>>>>>> ~True(English, "this sentence is not true" )==TRUE

    This sentence is not true: "This sentence is not true" >>>>>>>>>>>>> with the outer sentence referring to the inner sentence >>>>>>>>>>>>> is the same as this: ~True(English, "This sentence is not true") >>>>>>>>>>>>
    To me that is far less simple than "The liar paradox is not true" >>>>>>>>>>>
    It is the way that we would correctly apply Tarski's
    Boolean True(Language L, Expression E);
    to the liar paradox.

    The truth predicate Tarski was discussing has only one argument. >>>>>>>>>
    This is within his false assumption that only
    a single language exists.

    No, it does not. Tarski does not assume so. The discussion is for a >>>>>>>> truth predicate for one language only,

    counter factual
    counter factual
    counter factual
    counter factual
    counter factual
    counter factual

    You should already know that "counter factual" does not work as
    a magic spell. Nothing works if said six times instead of three
    or nine.

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    He had the language of his theory and
    the metalanguage of his metatheory

    I had to read and re-read his proof fifty times
    to get a good understanding of it.

    Apparently fifty times is not enough if you still don't know that
    the proof is about one predicate that has one argument.

    I said that the statement "Liar's paradox is not true" is true. >>>>>>>
    *IT IS NOT TRUE*

    And here you say it again.

    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    The outer sentence
    is true

    Yes, everyone can verify that I really said it. But your anser
    "It is not true" quite clearly refers to the inner statement
    that I said I had said.

    Because the inner sentence is not true

    The subordinate clause says that the "liar's paradox is not true"
    is true. Becase the sentence "liar's paradox is not true" is true the >>>> subordinate clause is true. The sentence "Liar's paradox is not true"
    is true because because liar's paradox is not true. The liar's paradox >>>> is not true beause it is not a truth-bearer.

    That you say "it is not true" does not make anything untrue.


    This sentence is not true: "This sentence is not true" is true
    is the whole essence of Tarski's proof that no sufficiently complex
    system can define its own truth predicate.

    When we simply toss out "This sentence is not true" as not a
    bearer of truth his whole argument falls apart.

    No, it does not. If "This sentence is not true" is not a truth
    bearer it is neither true nor false. That means that there is
    no predicate that can correctly say that it is true and there
    is no truth predicate that can correctly say that it is false.
    So there cannot be any truth predicate over any domain where
    "This sentence is not true" can be expressed.

    Also even within Tarski's reasoning a system that includes
    multiple levels of logic within the same system such as
    my Minimal Type Theory (MTT) can define its own truth
    predicate by having one order of logic refer to the
    next lower order of logic.

    Taski's proof does not assume that the logic is first order. Consequently
    the proof that any theory of any order that includes arithmetic cannot
    have a truth predicate.

    Every first order theory can be extended to a higher order so every
    first order proof is also a higher order proof.

    He assumes that it is a single fixed order otherwise
    the dumb bunny would understand that he could make
    a truth predicate that formalizes:
    This sentence is not true: "This sentence is not true"
    at his two levels and do this in the same single formal system.

    Every theory of any order contains all lower orders.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From joes@noreply@example.org to sci.logic on Tue Sep 16 16:33:56 2025
    From Newsgroup: sci.logic

    Am Mon, 15 Sep 2025 11:00:40 -0500 schrieb olcott:
    On 9/14/2025 11:58 AM, joes wrote:
    Am Thu, 11 Sep 2025 11:21:11 -0500 schrieb olcott:

    "This sentence is not true" because it is not a truth bearer. When we
    apply the same sentence to itself we get the Liar_Paradox_Squared this
    new sentence becomes true because the inner sentence is not a truth
    bearer.
    If it were not true, it would be saying the truth, making it wrong.
    This gibberish: "klJK897BJHUYTDKJAoi8ew" is not true because it is
    gibberish.
    True("klJK897BJHUYTDKJAoi8ew")==FALSE
    ~True("klJK897BJHUYTDKJAoi8ew")==TRUE
    Neither is it false. Not being well-formed, it can't be negated.
    But I was talking about the liar sentence.
    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 16 15:12:45 2025
    From Newsgroup: sci.logic

    On 9/16/2025 11:33 AM, joes wrote:
    Am Mon, 15 Sep 2025 11:00:40 -0500 schrieb olcott:
    On 9/14/2025 11:58 AM, joes wrote:
    Am Thu, 11 Sep 2025 11:21:11 -0500 schrieb olcott:

    "This sentence is not true" because it is not a truth bearer. When we
    apply the same sentence to itself we get the Liar_Paradox_Squared this >>>> new sentence becomes true because the inner sentence is not a truth
    bearer.
    If it were not true, it would be saying the truth, making it wrong.
    This gibberish: "klJK897BJHUYTDKJAoi8ew" is not true because it is
    gibberish.
    True("klJK897BJHUYTDKJAoi8ew")==FALSE
    ~True("klJK897BJHUYTDKJAoi8ew")==TRUE
    Neither is it false. Not being well-formed, it can't be negated.
    But I was talking about the liar sentence.


    It is not true that gibberish is true.
    It is not true that gibberish is false.
    This same thing goes for the Liar Paradox and Tarski didn't get it.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 16 15:22:28 2025
    From Newsgroup: sci.logic

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a truth
    value to the liar's paradox. Some don't know what an "evaluation
    graph" is but they can reach the same conclusion with different
    thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values.

    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    These same expressions form the body of analytic knowledge
    that nitwit Willard Van Orman Quine convinced most everyone
    does not exist.

    reason the check is not always done is that it is a complex
    computation that may cost more than the value of the result.


    That it is not done is directly causing the rise of the Fourth
    Reich and the end of life on Earth through climate change.

    Most people act as if their wrong-headed opinions carry
    more truth weight than proven facts. We need to hurry
    up and make truth computable.

    What is too hard for many but not everyone is that that
    means that there cannot be a truth predicate over any domain that
    includes the liar's paradox or any similar paradox, e.g., "This
    sentence is false", "This sentence is not true", "This sentence
    is not provable".

    Likewise there cannot be any truth predicate over any
    domain that has questions when people are stupid enough
    to think that questions have a truth value.

    Predicates only answer what a theory predicts. No theory about
    stupidity of people is exact.


    It is stupid to call semantic tautologies any type of theory.
    Is it merely a theory that feline cats are not any type of
    fifteen story office building?
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 16 15:27:05 2025
    From Newsgroup: sci.logic

    On 9/16/2025 3:56 AM, Mikko wrote:
    On 2025-09-15 16:19:57 +0000, olcott said:

    On 9/15/2025 2:53 AM, Mikko wrote:

    Taski's proof does not assume that the logic is first order.
    Consequently
    the proof that any theory of any order that includes arithmetic cannot
    have a truth predicate.

    Every first order theory can be extended to a higher order so every
    first order proof is also a higher order proof.

    He assumes that it is a single fixed order otherwise
    the dumb bunny would understand that he could make
    a truth predicate that formalizes:
    This sentence is not true: "This sentence is not true"
    at his two levels and do this in the same single formal system.

    Every theory of any order contains all lower orders.

    https://liarparadox.org/Tarski_275_276.pdf

    That may be true, yet then why would Tarski say this:
    the sentence x which is undecidable in the original
    theory becomes a decidable sentence in the enriched theory.

    These theories only vary by orders of logic.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 17 10:43:02 2025
    From Newsgroup: sci.logic

    On 2025-09-16 20:22:28 +0000, olcott said:

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a truth
    value to the liar's paradox. Some don't know what an "evaluation
    graph" is but they can reach the same conclusion with different
    thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values.

    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    If you already know that it is proven there is nothing to compute.
    There is no Turing decider that can determine whether a sentence
    is a theorem except for some simple theories. There is one for
    the Abelian group theory but none for the group theory.

    These same expressions form the body of analytic knowledge
    that nitwit Willard Van Orman Quine convinced most everyone
    does not exist.

    Does the body of analytic knowledge include what is not yet known
    but will be found in the future?
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 17 10:52:42 2025
    From Newsgroup: sci.logic

    On 2025-09-16 20:27:05 +0000, olcott said:

    On 9/16/2025 3:56 AM, Mikko wrote:
    On 2025-09-15 16:19:57 +0000, olcott said:

    On 9/15/2025 2:53 AM, Mikko wrote:

    Taski's proof does not assume that the logic is first order. Consequently >>>> the proof that any theory of any order that includes arithmetic cannot >>>> have a truth predicate.

    Every first order theory can be extended to a higher order so every
    first order proof is also a higher order proof.

    He assumes that it is a single fixed order otherwise
    the dumb bunny would understand that he could make
    a truth predicate that formalizes:
    This sentence is not true: "This sentence is not true"
    at his two levels and do this in the same single formal system.

    Every theory of any order contains all lower orders.

    https://liarparadox.org/Tarski_275_276.pdf

    That may be true, yet then why would Tarski say this:
    the sentence x which is undecidable in the original
    theory becomes a decidable sentence in the enriched theory.

    These theories only vary by orders of logic.

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 17 10:55:10 2025
    From Newsgroup: sci.logic

    On 2025-09-16 20:12:45 +0000, olcott said:

    On 9/16/2025 11:33 AM, joes wrote:
    Am Mon, 15 Sep 2025 11:00:40 -0500 schrieb olcott:
    On 9/14/2025 11:58 AM, joes wrote:
    Am Thu, 11 Sep 2025 11:21:11 -0500 schrieb olcott:

    "This sentence is not true" because it is not a truth bearer. When we >>>>> apply the same sentence to itself we get the Liar_Paradox_Squared this >>>>> new sentence becomes true because the inner sentence is not a truth
    bearer.
    If it were not true, it would be saying the truth, making it wrong.
    This gibberish: "klJK897BJHUYTDKJAoi8ew" is not true because it is
    gibberish.
    True("klJK897BJHUYTDKJAoi8ew")==FALSE
    ~True("klJK897BJHUYTDKJAoi8ew")==TRUE
    Neither is it false. Not being well-formed, it can't be negated.
    But I was talking about the liar sentence.


    It is not true that gibberish is true.
    It is not true that gibberish is false.
    This same thing goes for the Liar Paradox and Tarski didn't get it.

    That Tarski agrees with you is not quite sufficient to infer that Tarski
    didn't get it.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 17 09:48:42 2025
    From Newsgroup: sci.logic

    On 9/17/2025 2:43 AM, Mikko wrote:
    On 2025-09-16 20:22:28 +0000, olcott said:

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a truth
    value to the liar's paradox. Some don't know what an "evaluation
    graph" is but they can reach the same conclusion with different
    thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values.

    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    If you already know that it is proven there is nothing to compute.

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    Includes every expression of math or logic.

    G||del's famous G simply becomes untrue in PA.

    Tarski's:
    "We shall show that the sentence x is
    actually undecidable and at the same time true." https://liarparadox.org/Tarski_275_276.pdf
    Cannot possibly occur.

    The same kind of changes that ZFC made to Naive set theory
    to abolish Russell's Paradox can be applied to convert
    The halting problem into the naive halting problem.

    This same reasoning can also convert formal systems
    into naive formal systems.

    There is no Turing decider that can determine whether a sentence
    is a theorem except for some simple theories. There is one for
    the Abelian group theory but none for the group theory.

    These same expressions form the body of analytic knowledge
    that nitwit Willard Van Orman Quine convinced most everyone
    does not exist.

    Does the body of analytic knowledge include what is not yet known
    but will be found in the future?


    The answer is already there right in your question.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 17 09:51:01 2025
    From Newsgroup: sci.logic

    On 9/17/2025 2:52 AM, Mikko wrote:
    On 2025-09-16 20:27:05 +0000, olcott said:

    On 9/16/2025 3:56 AM, Mikko wrote:
    On 2025-09-15 16:19:57 +0000, olcott said:

    On 9/15/2025 2:53 AM, Mikko wrote:

    Taski's proof does not assume that the logic is first order.
    Consequently
    the proof that any theory of any order that includes arithmetic cannot >>>>> have a truth predicate.

    Every first order theory can be extended to a higher order so every
    first order proof is also a higher order proof.

    He assumes that it is a single fixed order otherwise
    the dumb bunny would understand that he could make
    a truth predicate that formalizes:
    This sentence is not true: "This sentence is not true"
    at his two levels and do this in the same single formal system.

    Every theory of any order contains all lower orders.

    https://liarparadox.org/Tarski_275_276.pdf

    That may be true, yet then why would Tarski say this:
    -a-a the sentence x which is undecidable in the original
    -a-a theory becomes a decidable sentence in the enriched theory.

    These theories only vary by orders of logic.

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.


    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic. https://www.researchgate.net/publication/331859461_Minimal_Type_Theory_YACC_BNF --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 17 09:53:58 2025
    From Newsgroup: sci.logic

    On 9/17/2025 2:55 AM, Mikko wrote:
    On 2025-09-16 20:12:45 +0000, olcott said:

    On 9/16/2025 11:33 AM, joes wrote:
    Am Mon, 15 Sep 2025 11:00:40 -0500 schrieb olcott:
    On 9/14/2025 11:58 AM, joes wrote:
    Am Thu, 11 Sep 2025 11:21:11 -0500 schrieb olcott:

    "This sentence is not true" because it is not a truth bearer. When we >>>>>> apply the same sentence to itself we get the Liar_Paradox_Squared >>>>>> this
    new sentence becomes true because the inner sentence is not a truth >>>>>> bearer.
    If it were not true, it would be saying the truth, making it wrong.
    This gibberish: "klJK897BJHUYTDKJAoi8ew" is not true because it is
    gibberish.
    True("klJK897BJHUYTDKJAoi8ew")==FALSE
    ~True("klJK897BJHUYTDKJAoi8ew")==TRUE
    Neither is it false. Not being well-formed, it can't be negated.
    But I was talking about the liar sentence.


    It is not true that gibberish is true.
    It is not true that gibberish is false.
    This same thing goes for the Liar Paradox and Tarski didn't get it.

    That Tarski agrees with you is not quite sufficient to infer that Tarski didn't get it.


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.


    It would
    then be possible to reconstruct the antinomy of the liar in the
    metalanguage, by forming in the language itself a sentence x
    such that the sentence of the metalanguage which is correlated
    with x asserts that x is not a true sentence. https://liarparadox.org/Tarski_247_248.pdf
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 18 12:24:39 2025
    From Newsgroup: sci.logic

    On 2025-09-17 14:48:42 +0000, olcott said:

    On 9/17/2025 2:43 AM, Mikko wrote:
    On 2025-09-16 20:22:28 +0000, olcott said:

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a truth
    value to the liar's paradox. Some don't know what an "evaluation
    graph" is but they can reach the same conclusion with different
    thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values.

    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    If you already know that it is proven there is nothing to compute.

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    Includes every expression of math or logic.

    If every expression of your math or logic is proven true then
    your math and logic are inconsistent.

    G||del's famous G simply becomes untrue in PA.

    Yet is says someting about natural numbers that is either true
    or false.

    Tarski's:
    "We shall show that the sentence x is
    actually undecidable and at the same time true." https://liarparadox.org/Tarski_275_276.pdf

    Cannot possibly occur.

    The formal expression that the above refers to is proven true from
    axioms and definitions with truth preserving transformations so it
    is a part of analytic truth.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 18 12:25:34 2025
    From Newsgroup: sci.logic

    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:
    On 2025-09-16 20:27:05 +0000, olcott said:

    On 9/16/2025 3:56 AM, Mikko wrote:
    On 2025-09-15 16:19:57 +0000, olcott said:

    On 9/15/2025 2:53 AM, Mikko wrote:

    Taski's proof does not assume that the logic is first order. Consequently
    the proof that any theory of any order that includes arithmetic cannot >>>>>> have a truth predicate.

    Every first order theory can be extended to a higher order so every >>>>>> first order proof is also a higher order proof.

    He assumes that it is a single fixed order otherwise
    the dumb bunny would understand that he could make
    a truth predicate that formalizes:
    This sentence is not true: "This sentence is not true"
    at his two levels and do this in the same single formal system.

    Every theory of any order contains all lower orders.

    https://liarparadox.org/Tarski_275_276.pdf

    That may be true, yet then why would Tarski say this:
    -a-a the sentence x which is undecidable in the original
    -a-a theory becomes a decidable sentence in the enriched theory.

    These theories only vary by orders of logic.

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic. https://www.researchgate.net/publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 18 12:26:41 2025
    From Newsgroup: sci.logic

    On 2025-09-17 14:53:58 +0000, olcott said:

    On 9/17/2025 2:55 AM, Mikko wrote:
    On 2025-09-16 20:12:45 +0000, olcott said:

    On 9/16/2025 11:33 AM, joes wrote:
    Am Mon, 15 Sep 2025 11:00:40 -0500 schrieb olcott:
    On 9/14/2025 11:58 AM, joes wrote:
    Am Thu, 11 Sep 2025 11:21:11 -0500 schrieb olcott:

    "This sentence is not true" because it is not a truth bearer. When we >>>>>>> apply the same sentence to itself we get the Liar_Paradox_Squared this >>>>>>> new sentence becomes true because the inner sentence is not a truth >>>>>>> bearer.
    If it were not true, it would be saying the truth, making it wrong. >>>>> This gibberish: "klJK897BJHUYTDKJAoi8ew" is not true because it is
    gibberish.
    True("klJK897BJHUYTDKJAoi8ew")==FALSE
    ~True("klJK897BJHUYTDKJAoi8ew")==TRUE
    Neither is it false. Not being well-formed, it can't be negated.
    But I was talking about the liar sentence.


    It is not true that gibberish is true.
    It is not true that gibberish is false.
    This same thing goes for the Liar Paradox and Tarski didn't get it.

    That Tarski agrees with you is not quite sufficient to infer that Tarski
    didn't get it.

    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 18 09:38:27 2025
    From Newsgroup: sci.logic

    On 9/18/2025 4:24 AM, Mikko wrote:
    On 2025-09-17 14:48:42 +0000, olcott said:

    On 9/17/2025 2:43 AM, Mikko wrote:
    On 2025-09-16 20:22:28 +0000, olcott said:

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a truth >>>>>>> value to the liar's paradox. Some don't know what an "evaluation >>>>>>> graph" is but they can reach the same conclusion with different
    thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values.

    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    If you already know that it is proven there is nothing to compute.

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    Includes every expression of math or logic.

    If every expression of your math or logic is proven true then
    your math and logic are inconsistent.


    Not at all. Unlike the screwballs of the past I don't
    fully integrate expressions having pathological self-reference
    into my formal system.

    G||del's famous G simply becomes untrue in PA.

    Yet is says someting about natural numbers that is either true
    or false.


    Bullshit G||del's own words say otherwise.
    (c) G||del's 1931 Incompleteness theorem
    rCLWe are therefore confronted with a proposition
    which asserts its own unprovability.rCY (G||del 1931:40-41)

    Tarski's:
    -a-a "We shall show that the sentence x is
    -a-a-a actually undecidable and at the same time true."
    https://liarparadox.org/Tarski_275_276.pdf

    Cannot possibly occur.

    The formal expression that the above refers to is proven true from
    axioms and definitions with truth preserving transformations so it
    is a part of analytic truth.


    Only because Tarski it too stupid (on this one point)
    to toss out the Liar Paradox as not a member of any
    formal system.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 18 09:42:11 2025
    From Newsgroup: sci.logic

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.


    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate.
    This seems to be the same as FOPL and SOPL.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 18 09:47:10 2025
    From Newsgroup: sci.logic

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.


    This sentence is not true.
    What it is not true about?
    It is not true about being not true.
    What is it not true about being not true about?
    It is not true about being not true about being not true...
    never resolving to a truth value.

    *Prolog determines this same cyclic structure*

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Sep 19 12:19:04 2025
    From Newsgroup: sci.logic

    On 2025-09-18 14:38:27 +0000, olcott said:

    On 9/18/2025 4:24 AM, Mikko wrote:
    On 2025-09-17 14:48:42 +0000, olcott said:

    On 9/17/2025 2:43 AM, Mikko wrote:
    On 2025-09-16 20:22:28 +0000, olcott said:

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a truth >>>>>>>> value to the liar's paradox. Some don't know what an "evaluation >>>>>>>> graph" is but they can reach the same conclusion with different >>>>>>>> thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values.

    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    If you already know that it is proven there is nothing to compute.

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    Includes every expression of math or logic.

    If every expression of your math or logic is proven true then
    your math and logic are inconsistent.

    Not at all. Unlike the screwballs of the past I don't
    fully integrate expressions having pathological self-reference
    into my formal system.

    The phrase "every expression of math or logic" includes "1 + 1 = 1".
    You said that it is included is "every expression of language that
    is proven true on the basis of other expressions of language".
    Therefore "1 + 1 = 1" is proven true according to your logic.
    But it is proven false in ordinary arithmetic. So you "1 + 1 = 1"
    is both true and false, which is an inconsistency.

    The term "consistent" is often defined as: a theroy is consisten
    if some sentence in the language of the theory is not provable
    in the theory.

    G||del's famous G simply becomes untrue in PA.

    Yet is says someting about natural numbers that is either true
    or false.

    Bullshit G||del's own words say otherwise.
    (c) G||del's 1931 Incompleteness theorem
    rCLWe are therefore confronted with a proposition
    which asserts its own unprovability.rCY (G||del 1931:40-41)

    Where "unprovability" means that it cannot be proven within the
    first order theory of Peano arithmetic unless the first order
    theory of Peano arithmetic is inconsistent. But in the metatheory
    G||del proved that that proposition has in a model of the first
    order Peano arithmetic that proposition is true if it is not
    provable in Peano arthmetic. The conclusion of the proof can be
    expressed as G||del did above.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Sep 19 12:20:40 2025
    From Newsgroup: sci.logic

    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate.
    This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true"
    then we all agree.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Sep 19 12:22:43 2025
    From Newsgroup: sci.logic

    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Sep 19 10:10:06 2025
    From Newsgroup: sci.logic

    On 9/19/2025 4:19 AM, Mikko wrote:
    On 2025-09-18 14:38:27 +0000, olcott said:

    On 9/18/2025 4:24 AM, Mikko wrote:
    On 2025-09-17 14:48:42 +0000, olcott said:

    On 9/17/2025 2:43 AM, Mikko wrote:
    On 2025-09-16 20:22:28 +0000, olcott said:

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a truth >>>>>>>>> value to the liar's paradox. Some don't know what an "evaluation >>>>>>>>> graph" is but they can reach the same conclusion with different >>>>>>>>> thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values.

    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    If you already know that it is proven there is nothing to compute.

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    Includes every expression of math or logic.

    If every expression of your math or logic is proven true then
    your math and logic are inconsistent.

    Not at all. Unlike the screwballs of the past I don't
    fully integrate expressions having pathological self-reference
    into my formal system.

    The phrase "every expression of math or logic" includes "1 + 1 = 1".
    You said that it is included is "every expression of language that
    is proven true on the basis of other expressions of language".
    Therefore "1 + 1 = 1" is proven true according to your logic.
    But it is proven false in ordinary arithmetic. So you "1 + 1 = 1"
    is both true and false, which is an inconsistency.

    The term "consistent" is often defined as: a theroy is consisten
    if some sentence in the language of the theory is not provable
    in the theory.

    G||del's famous G simply becomes untrue in PA.

    Yet is says someting about natural numbers that is either true
    or false.

    Bullshit G||del's own words say otherwise.
    (c) G||del's 1931 Incompleteness theorem
    rCLWe are therefore confronted with a proposition
    which asserts its own unprovability.rCY (G||del 1931:40-41)

    Where "unprovability" means that it cannot be proven within the
    first order theory of Peano arithmetic unless the first order
    theory of Peano arithmetic is inconsistent.

    Self-referential expressions are stupidly incorrect.
    rCLWe are therefore confronted with a proposition
    which asserts its own unprovability.rCY (G||del 1931:40-41)

    Making a proof on this basis is a psychotic break from reality.
    Did you know that G||del starved himself to death because
    he could not get his wife's home cooking?

    But in the metatheory
    G||del proved that that proposition has in a model of the first
    order Peano arithmetic that proposition is true if it is not
    provable in Peano arthmetic. The conclusion of the proof can be
    expressed as G||del did above.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Sep 20 12:31:17 2025
    From Newsgroup: sci.logic

    On 2025-09-19 15:10:06 +0000, olcott said:

    On 9/19/2025 4:19 AM, Mikko wrote:
    On 2025-09-18 14:38:27 +0000, olcott said:

    On 9/18/2025 4:24 AM, Mikko wrote:
    On 2025-09-17 14:48:42 +0000, olcott said:

    On 9/17/2025 2:43 AM, Mikko wrote:
    On 2025-09-16 20:22:28 +0000, olcott said:

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a truth >>>>>>>>>> value to the liar's paradox. Some don't know what an "evaluation >>>>>>>>>> graph" is but they can reach the same conclusion with different >>>>>>>>>> thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values. >>>>>>>
    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    If you already know that it is proven there is nothing to compute.

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    Includes every expression of math or logic.

    If every expression of your math or logic is proven true then
    your math and logic are inconsistent.

    Not at all. Unlike the screwballs of the past I don't
    fully integrate expressions having pathological self-reference
    into my formal system.

    The phrase "every expression of math or logic" includes "1 + 1 = 1".
    You said that it is included is "every expression of language that
    is proven true on the basis of other expressions of language".
    Therefore "1 + 1 = 1" is proven true according to your logic.
    But it is proven false in ordinary arithmetic. So you "1 + 1 = 1"
    is both true and false, which is an inconsistency.

    The term "consistent" is often defined as: a theroy is consisten
    if some sentence in the language of the theory is not provable
    in the theory.

    G||del's famous G simply becomes untrue in PA.

    Yet is says someting about natural numbers that is either true
    or false.

    Bullshit G||del's own words say otherwise.
    (c) G||del's 1931 Incompleteness theorem
    rCLWe are therefore confronted with a proposition
    which asserts its own unprovability.rCY (G||del 1931:40-41)

    Where "unprovability" means that it cannot be proven within the
    first order theory of Peano arithmetic unless the first order
    theory of Peano arithmetic is inconsistent.

    Self-referential expressions are stupidly incorrect.
    rCLWe are therefore confronted with a proposition
    which asserts its own unprovability.rCY (G||del 1931:40-41)

    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Sep 20 09:57:20 2025
    From Newsgroup: sci.logic

    On 9/20/2025 4:31 AM, Mikko wrote:
    On 2025-09-19 15:10:06 +0000, olcott said:

    On 9/19/2025 4:19 AM, Mikko wrote:
    On 2025-09-18 14:38:27 +0000, olcott said:

    On 9/18/2025 4:24 AM, Mikko wrote:
    On 2025-09-17 14:48:42 +0000, olcott said:

    On 9/17/2025 2:43 AM, Mikko wrote:
    On 2025-09-16 20:22:28 +0000, olcott said:

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a >>>>>>>>>>> truth
    value to the liar's paradox. Some don't know what an "evaluation >>>>>>>>>>> graph" is but they can reach the same conclusion with different >>>>>>>>>>> thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values. >>>>>>>>
    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The

    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    If you already know that it is proven there is nothing to compute. >>>>>>
    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    Includes every expression of math or logic.

    If every expression of your math or logic is proven true then
    your math and logic are inconsistent.

    Not at all. Unlike the screwballs of the past I don't
    fully integrate expressions having pathological self-reference
    into my formal system.

    The phrase "every expression of math or logic" includes "1 + 1 = 1".
    You said that it is included is "every expression of language that
    is proven true on the basis of other expressions of language".
    Therefore "1 + 1 = 1" is proven true according to your logic.
    But it is proven false in ordinary arithmetic. So you "1 + 1 = 1"
    is both true and false, which is an inconsistency.

    The term "consistent" is often defined as: a theroy is consisten
    if some sentence in the language of the theory is not provable
    in the theory.

    G||del's famous G simply becomes untrue in PA.

    Yet is says someting about natural numbers that is either true
    or false.

    Bullshit G||del's own words say otherwise.
    (c) G||del's 1931 Incompleteness theorem
    rCLWe are therefore confronted with a proposition
    which asserts its own unprovability.rCY (G||del 1931:40-41)

    Where "unprovability" means that it cannot be proven within the
    first order theory of Peano arithmetic unless the first order
    theory of Peano arithmetic is inconsistent.

    Self-referential expressions are stupidly incorrect.
    rCLWe are therefore confronted with a proposition
    -a which asserts its own unprovability.rCY (G||del 1931:40-41)

    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.


    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Sep 20 09:58:33 2025
    From Newsgroup: sci.logic

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.


    In an infinitely recursive chain that you dishonestly
    erased.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Sep 20 10:03:01 2025
    From Newsgroup: sci.logic

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already >>>>> is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate.
    This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true"
    then we all agree.


    Its not false either. People that study these things
    are stupid to not bother with a deep dive into truth
    makers and truth bearers.

    It is as if logicians think that:
    I don't already know about these things therefore
    they must be nonsense.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Sep 21 12:22:00 2025
    From Newsgroup: sci.logic

    On 2025-09-20 14:57:20 +0000, olcott said:

    On 9/20/2025 4:31 AM, Mikko wrote:
    On 2025-09-19 15:10:06 +0000, olcott said:

    On 9/19/2025 4:19 AM, Mikko wrote:
    On 2025-09-18 14:38:27 +0000, olcott said:

    On 9/18/2025 4:24 AM, Mikko wrote:
    On 2025-09-17 14:48:42 +0000, olcott said:

    On 9/17/2025 2:43 AM, Mikko wrote:
    On 2025-09-16 20:22:28 +0000, olcott said:

    On 9/16/2025 3:54 AM, Mikko wrote:
    On 2025-09-15 16:16:29 +0000, olcott said:

    On 9/15/2025 2:39 AM, Mikko wrote:


    Most people quickly see that it is not possibly to assign a truth >>>>>>>>>>>> value to the liar's paradox. Some don't know what an "evaluation >>>>>>>>>>>> graph" is but they can reach the same conclusion with different >>>>>>>>>>>> thinking.

    By detecting cycles in the evaluation graphs of
    formalized expressions of language automated
    systems can automatically reject such expressions
    when they implement their truth predicate that
    Tarski incorrectly proved cannot be implemented.

    Wrong. Most graphs that need be checked don't have truth values. >>>>>>>>>
    I am not talking about most graphs.
    I have restricted this to directed graphs of the
    evaluation sequence of logic expressions.

    Checking for cycles is Turing computable, truth is not. The >>>>>>>>>
    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    is Turing computable.

    If you already know that it is proven there is nothing to compute. >>>>>>>
    Every expression of language that is proven true on the
    basis of other expressions of language (AKA analytic truth)
    Includes every expression of math or logic.

    If every expression of your math or logic is proven true then
    your math and logic are inconsistent.

    Not at all. Unlike the screwballs of the past I don't
    fully integrate expressions having pathological self-reference
    into my formal system.

    The phrase "every expression of math or logic" includes "1 + 1 = 1".
    You said that it is included is "every expression of language that
    is proven true on the basis of other expressions of language".
    Therefore "1 + 1 = 1" is proven true according to your logic.
    But it is proven false in ordinary arithmetic. So you "1 + 1 = 1"
    is both true and false, which is an inconsistency.

    The term "consistent" is often defined as: a theroy is consisten
    if some sentence in the language of the theory is not provable
    in the theory.

    G||del's famous G simply becomes untrue in PA.

    Yet is says someting about natural numbers that is either true
    or false.

    Bullshit G||del's own words say otherwise.
    (c) G||del's 1931 Incompleteness theorem
    rCLWe are therefore confronted with a proposition
    which asserts its own unprovability.rCY (G||del 1931:40-41)

    Where "unprovability" means that it cannot be proven within the
    first order theory of Peano arithmetic unless the first order
    theory of Peano arithmetic is inconsistent.

    Self-referential expressions are stupidly incorrect.
    rCLWe are therefore confronted with a proposition
    -a which asserts its own unprovability.rCY (G||del 1931:40-41)

    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ... ...14 Every epistemological antinomy can likewise be used for a similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    The incompleteness theorem is called a teorem because it is inferred from
    the axioms of Peano arithmetic with truth preserving transformations.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Sep 21 12:25:01 2025
    From Newsgroup: sci.logic

    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already >>>>>> is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate.
    This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because
    it is not true it cannot be provable.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Sep 21 12:26:49 2025
    From Newsgroup: sci.logic

    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 22 19:56:19 2025
    From Newsgroup: sci.logic

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a
    similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its
    own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.


    That never has been the important part.
    That has always been bullshit misdirection

    An expression of language claims through an enormously
    convoluted mess that itself is not provable.
    G||del himself summed it up that way (see quotes).

    He merely took the classic incorrect question:
    Is this sentence true or false:
    "This sentence is not true" adapted it slightly
    and converted into convoluted math.

    The incompleteness theorem is called a teorem because it is inferred from
    the axioms of Peano arithmetic with truth preserving transformations.


    Yes that is just his bullshit misdirection.
    He already laid out his whole game in simple
    English above.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 22 19:57:36 2025
    From Newsgroup: sci.logic

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory
    already
    is a higher order theory the enriched theory needs not be higher. >>>>>>> Tarski can say what he says because at that point he has already >>>>>>> proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate.
    This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because
    it is not true it cannot be provable.


    Yes and the square root of a dead chicken
    is uncomputable for the same reason.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 22 19:59:54 2025
    From Newsgroup: sci.logic

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish. >>>>
    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion.


    The meaning is that it is not a truth bearer
    thus has no truth value.

    It can be resolved to not being a truth bearer
    and properly rejected on the basis that it does
    specify infinite recursion.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 23 12:21:49 2025
    From Newsgroup: sci.logic

    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ... >>> ...14 Every epistemological antinomy can likewise be used for a similar >>> undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own >>> unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important. Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.

    An expression of language claims through an enormously
    convoluted mess that itself is not provable.
    G||del himself summed it up that way (see quotes).

    That is, if the sentence is true it is unprovable. If it is false
    and arithmetic is consistent it is unprovable. If it is provable
    then it is false and arithmetic is inconsistent.

    He merely took the classic incorrect question:
    Is this sentence true or false:
    "This sentence is not true" adapted it slightly
    and converted into convoluted math.

    The metamathematical proof proves that the sentence is true only if
    it is unprovable. As it is unprovable there is a model of first order arithmetic where the sentence is false but that model is not the one
    that we consider the space of natural numbers.

    The incompleteness theorem is called a teorem because it is inferred from
    the axioms of Peano arithmetic with truth preserving transformations.

    Yes that is just his bullshit misdirection.
    He already laid out his whole game in simple
    English above.

    Analytic truth is what can be proven, including G||del's incompleteness
    theorem and Tarski's undefinability theorem. That you don't understand
    the proofs is irrelevant.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 23 12:23:25 2025
    From Newsgroup: sci.logic

    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already >>>>>>>> is a higher order theory the enriched theory needs not be higher. >>>>>>>> Tarski can say what he says because at that point he has already >>>>>>>> proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate.
    This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because
    it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 23 12:29:35 2025
    From Newsgroup: sci.logic

    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish. >>>>>
    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion.

    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then
    it is not true.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 23 10:37:27 2025
    From Newsgroup: sci.logic

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory >>>>>>>>> already
    is a higher order theory the enriched theory needs not be higher. >>>>>>>>> Tarski can say what he says because at that point he has already >>>>>>>>> proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate.
    This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because
    it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.


    Computation is not limited when it is required
    to answer any question that has no correct answer.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 23 10:39:53 2025
    From Newsgroup: sci.logic

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic
    gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion.

    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then
    it is not true.


    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 23 11:04:38 2025
    From Newsgroup: sci.logic

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ... >>>> ...14 Every epistemological antinomy can likewise be used for a
    similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its
    own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.


    Yet only when the architecture of the formal system is screwed up.
    If you want to build a formal system that is not anchored in a
    screwed up idea than this is straight forward.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment
    to these basic facts.

    Anything not derived on this basis is either untrue or unknown.
    Screwy stuff such as an expression of language asserting its own
    unprovability is rejected as not a truth bearer.
    An expression of language claims through an enormously
    convoluted mess that itself is not provable.
    G||del himself summed it up that way (see quotes).

    That is, if the sentence is true it is unprovable. If it is false
    and arithmetic is consistent it is unprovable. If it is provable
    then it is false and arithmetic is inconsistent.

    He merely took the classic incorrect question:
    Is this sentence true or false:
    "This sentence is not true" adapted it slightly
    and converted into convoluted math.

    The metamathematical proof proves that the sentence is true only if
    it is unprovable. As it is unprovable there is a model of first order arithmetic where the sentence is false but that model is not the one
    that we consider the space of natural numbers.


    It is actually not a truth bearer thus must be rejected
    as not a member of any formal logic system.

    From Page 2
    ?- G = not(provable(F, G)).
    G = not(provable(F, G)).

    ?- unify_with_occurs_check(G, not(provable(F, G))).
    false.

    From page 4
    G := reaX ~Provable(X, G) // Written in Minimal Type Theory
    Automatically translated into a Directed Graph by the MTT compiler

    [01] G (02)(04)
    [02] THERE_EXISTS (03)
    [03] X
    [04] NOT (05)
    [05] Provable (03)(01) // cycle indicates infinite evaluation loop

    https://www.researchgate.net/publication/350789898_Prolog_detects_and_rejects_pathological_self_reference_in_the_Godel_sentence

    The incompleteness theorem is called a teorem because it is inferred
    from
    the axioms of Peano arithmetic with truth preserving transformations.

    Yes that is just his bullshit misdirection.
    He already laid out his whole game in simple
    English above.

    Analytic truth is what can be proven, including G||del's incompleteness theorem and Tarski's undefinability theorem. That you don't understand
    the proofs is irrelevant.


    It can be proven that
    LP = not(true(LP)).
    LP := ~True(LP)

    G = not(provable(F, G)).
    G := reaX ~Provable(X, G)

    are not truth bearers thus must be rejected from
    any formal system of logic.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 24 10:12:17 2025
    From Newsgroup: sci.logic

    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance. >>>>>
    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ... >>>>> ...14 Every epistemological antinomy can likewise be used for a similar >>>>> undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own >>>>> unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many
    purposes. For a long time there was no need to think about the
    shape of the Earth.

    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up.
    If you want to build a formal system that is not anchored in a
    screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment
    to these basic facts.

    It is generally accepted that the set of axioms can be infinite
    as long as it is Turing computable whether a sentence is an
    axiom. It is also required that the correctness of an inference
    is Turing computable. With these requirements one can ensure
    that the correctness of every proof is Turing computable.

    Anything not derived on this basis is either untrue or unknown.
    Screwy stuff such as an expression of language asserting its own unprovability is rejected as not a truth bearer.

    Numbers are not required to be truth-bearers. That a sentence of
    arithmetic can be encoded as a number is not part of arithmetics
    and does not affect the validity of that number.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 24 10:15:02 2025
    From Newsgroup: sci.logic

    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher. >>>>>>>>>> Tarski can say what he says because at that point he has already >>>>>>>>>> proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate.
    This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true" >>>>>> then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because
    it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a
    valid an important concept even when not formally definable.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Sep 24 10:19:10 2025
    From Newsgroup: sci.logic

    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish. >>>>>>>
    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion.

    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then
    it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true"
    is true and can be used as an element of a proof.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 24 09:27:00 2025
    From Newsgroup: sci.logic

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates >>>>>>> to the G||del number of the sentence has no arithmetic significance. >>>>>>
    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a
    similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts
    its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And >>>>>> Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many
    purposes. For a long time there was no need to think about the
    shape of the Earth.


    The point is that not even a universal consensus equates to truth.

    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up.
    If you want to build a formal system that is not anchored in a
    screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment
    to these basic facts.

    It is generally accepted that the set of axioms can be infinite

    Not when we are representing the finite set of human general knowledge.

    as long as it is Turing computable whether a sentence is an
    axiom. It is also required that the correctness of an inference
    is Turing computable. With these requirements one can ensure
    that the correctness of every proof is Turing computable.


    You are totally missing the point. I redefined the notion
    of a formal system such that incompleteness is impossible.

    Anything not derived on this basis is either untrue or unknown.
    Screwy stuff such as an expression of language asserting its own
    unprovability is rejected as not a truth bearer.

    Numbers are not required to be truth-bearers. That a sentence of
    arithmetic can be encoded as a number is not part of arithmetics
    and does not affect the validity of that number.


    ChatGPT on Olcott MTT viewed through Wittgenstein

    4 rCo Wittgensteinian reading of your
    G := (-4(F reo G)re? -4(F reo -4G))

    Syntactically: The system can express
    G rCo a formal self-referential object.

    Semantically: G is not a truth-bearer,
    so it cannot be said to be rCLtrue but unprovable.rCY

    Interpretation: This mirrors WittgensteinrCOs point:
    the rCLI am not provablerCY sentence does not carry
    truth outside the system; it is merely a syntactic pattern.

    The whole very long extended conversation https://chatgpt.com/share/68d35334-ee58-8011-898c-a21b182914c8
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 24 09:31:55 2025
    From Newsgroup: sci.logic

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory >>>>>>>>>>> already
    is a higher order theory the enriched theory needs not be >>>>>>>>>>> higher.
    Tarski can say what he says because at that point he has already >>>>>>>>>>> proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate.
    This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true" >>>>>>> then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because
    it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a
    valid an important concept even when not formally definable.


    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    He mathematized an ordinary English expression of
    language that is not a truth bearer and anchored his
    formal proof in an expression that cannot be a member
    of any formal logic system.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Sep 24 09:36:46 2025
    From Newsgroup: sci.logic

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic
    gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion.

    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then
    it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true"
    is true and can be used as an element of a proof.


    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    LP := "This sentence is not true"
    True(English, LP)==FALSE
    True(English, ~LP)==FALSE
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 25 10:15:25 2025
    From Newsgroup: sci.logic

    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid >>>>>>>> sentence in the first order language of Peano arithmetic. That >>>>>>>> the value of an arithmetic expression in that sentence evaluates >>>>>>>> to the G||del number of the sentence has no arithmetic significance. >>>>>>>
    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>> are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And >>>>>>> Related Systems

    The most important aspect is the theorem itself: every theory that >>>>>> has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many
    purposes. For a long time there was no need to think about the
    shape of the Earth.

    The point is that not even a universal consensus equates to truth.

    No, but it is a significant aspect of culture. A question of importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up.
    If you want to build a formal system that is not anchored in a
    screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment
    to these basic facts.

    It is generally accepted that the set of axioms can be infinite

    Not when we are representing the finite set of human general knowledge.

    Once again you try to deceive with a change of topic. There is no
    need to prove the incompletenes of human general knowledge as that
    already is obvious. But G||del's and Tarski's theorems are about
    natural number arithmetic and its extensions so they need to cover
    the possibility that there are infinitely many axioms.

    as long as it is Turing computable whether a sentence is an
    axiom. It is also required that the correctness of an inference
    is Turing computable. With these requirements one can ensure
    that the correctness of every proof is Turing computable.

    You are totally missing the point. I redefined the notion
    of a formal system such that incompleteness is impossible.

    Consequently your results are irrelevant to systems that G||del's and
    Tarski's results apply to.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 25 10:24:57 2025
    From Newsgroup: sci.logic

    On 2025-09-24 14:31:55 +0000, olcott said:

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher. >>>>>>>>>>>> Tarski can say what he says because at that point he has already >>>>>>>>>>>> proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate. >>>>>>>>> This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true" >>>>>>>> then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because >>>>>> it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a
    valid an important concept even when not formally definable.

    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    Not really, he applied the methods G||del had already developed to
    a different problem.

    He mathematized an ordinary English expression of
    language that is not a truth bearer and anchored his
    formal proof in an expression that cannot be a member
    of any formal logic system.

    No, he did not do that. The expressions he considered were not of
    ordinary English (or Polish or German) but of a formal theory of
    natural numbers and possibly some additional things.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Sep 25 10:34:53 2025
    From Newsgroup: sci.logic

    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic
    gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion.

    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then
    it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true"
    is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable truth predicate then there is a proof of a false sentence that asserts its
    own unprovability, i.e., the arithmetic with a definable truth predicate
    is provably inconsistent.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 25 20:08:45 2025
    From Newsgroup: sci.logic

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid >>>>>>>>> sentence in the first order language of Peano arithmetic. That >>>>>>>>> the value of an arithmetic expression in that sentence evaluates >>>>>>>>> to the G||del number of the sentence has no arithmetic
    significance.

    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>>> are these plain English direct quotes of G||del from his paper: >>>>>>>>
    ...there is also a close relationship with the rCLliarrCY
    antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a >>>>>>>> similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts >>>>>>>> its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica >>>>>>>> And Related Systems

    The most important aspect is the theorem itself: every theory that >>>>>>> has the symbols and axioms of the first order Peano arithmetic is >>>>>>> either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many
    purposes. For a long time there was no need to think about the
    shape of the Earth.

    The point is that not even a universal consensus equates to truth.

    No, but it is a significant aspect of culture. A question of importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory >>>>> of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up.
    If you want to build a formal system that is not anchored in a
    screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment
    to these basic facts.

    It is generally accepted that the set of axioms can be infinite

    Not when we are representing the finite set of human general knowledge.

    Once again you try to deceive with a change of topic. There is no
    need to prove the incompletenes of human general knowledge as that
    already is obvious. But G||del's and Tarski's theorems are about
    natural number arithmetic and its extensions so they need to cover
    the possibility that there are infinitely many axioms.


    Tarski admits that he anchor his whole proof on the
    liar paradox and

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...

    ...14 Every epistemological antinomy can likewise be used for a similar undecidability proof... (G||del 1931:40-41)

    as long as it is Turing computable whether a sentence is an
    axiom. It is also required that the correctness of an inference
    is Turing computable. With these requirements one can ensure
    that the correctness of every proof is Turing computable.

    You are totally missing the point. I redefined the notion
    of a formal system such that incompleteness is impossible.

    Consequently your results are irrelevant to systems that G||del's and Tarski's results apply to.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 25 20:11:01 2025
    From Newsgroup: sci.logic

    On 9/25/2025 2:24 AM, Mikko wrote:
    On 2025-09-24 14:31:55 +0000, olcott said:

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object >>>>>>>>>>>>> theory already
    is a higher order theory the enriched theory needs not be >>>>>>>>>>>>> higher.
    Tarski can say what he says because at that point he has >>>>>>>>>>>>> already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate. >>>>>>>>>> This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not >>>>>>>>> true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because >>>>>>> it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a
    valid an important concept even when not formally definable.

    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    Not really, he applied the methods G||del had already developed to
    a different problem.


    Tarski admits that he anchored his whole proof on the
    liar paradox and G||del admitted essentially the same thing:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...

    ...14 Every epistemological antinomy can likewise be used for a similar undecidability proof... (G||del 1931:40-41)

    He mathematized an ordinary English expression of
    language that is not a truth bearer and anchored his
    formal proof in an expression that cannot be a member
    of any formal logic system.

    No, he did not do that. The expressions he considered were not of
    ordinary English (or Polish or German) but of a formal theory of
    natural numbers and possibly some additional things.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Sep 25 20:19:50 2025
    From Newsgroup: sci.logic

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly
    anchored his whole Undefinability proof in the semantic >>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic >>>>>>>>>>> gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion.

    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then
    it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true"
    is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable truth predicate then there is a proof of a false sentence that asserts its
    own unprovability, i.e., the arithmetic with a definable truth predicate
    is provably inconsistent.


    There is no true and unprovable.
    Unprovable means untrue.

    G := ((F re4 G) re? (F re4 -4G)) is semantically unsound
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Sep 26 10:43:57 2025
    From Newsgroup: sci.logic

    On 2025-09-26 01:11:01 +0000, olcott said:

    On 9/25/2025 2:24 AM, Mikko wrote:
    On 2025-09-24 14:31:55 +0000, olcott said:

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already >>>>>>>>>>>>>> proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski.
    Tarski has his Theory and his Meta-Theory that are separate. >>>>>>>>>>> This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true" >>>>>>>>>> then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because >>>>>>>> it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a
    valid an important concept even when not formally definable.

    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    Not really, he applied the methods G||del had already developed to
    a different problem.

    Tarski admits that he anchored his whole proof on the
    liar paradox and G||del admitted essentially the same thing:

    Yes, and you addmitted above that "The sentence 'This sentence is
    not true' is not true" is true, so can be used in a sound proof.

    Tarski also said he got the method from G||del.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Sep 26 10:48:04 2025
    From Newsgroup: sci.logic

    On 2025-09-26 01:19:50 +0000, olcott said:

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly >>>>>>>>>>>>> anchored his whole Undefinability proof in the semantic >>>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion. >>>>>>>
    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then >>>>>> it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true"
    is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable truth
    predicate then there is a proof of a false sentence that asserts its
    own unprovability, i.e., the arithmetic with a definable truth predicate
    is provably inconsistent.

    There is no true and unprovable.

    G||del proved that if a first order theory is incomplete it has models
    where some unprovable sentence is true and other models where the same
    sentence is false.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Sep 26 10:24:27 2025
    From Newsgroup: sci.logic

    On 9/26/2025 2:43 AM, Mikko wrote:
    On 2025-09-26 01:11:01 +0000, olcott said:

    On 9/25/2025 2:24 AM, Mikko wrote:
    On 2025-09-24 14:31:55 +0000, olcott said:

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object >>>>>>>>>>>>>>> theory already
    is a higher order theory the enriched theory needs not be >>>>>>>>>>>>>>> higher.
    Tarski can say what he says because at that point he has >>>>>>>>>>>>>>> already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski. >>>>>>>>>>>> Tarski has his Theory and his Meta-Theory that are separate. >>>>>>>>>>>> This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not >>>>>>>>>>> true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that >>>>>>>>> because
    it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a >>>>> valid an important concept even when not formally definable.

    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    Not really, he applied the methods G||del had already developed to
    a different problem.

    Tarski admits that he anchored his whole proof on the
    liar paradox and G||del admitted essentially the same thing:

    Yes, and you addmitted above that "The sentence 'This sentence is
    not true' is not true" is true, so can be used in a sound proof.

    Tarski also said he got the method from G||del.


    We can do the exact same thing for this sentence:
    "What time is it (yes or no)?" is not true.
    Its best to simply reject is as not a truth bearers.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Sep 26 10:28:52 2025
    From Newsgroup: sci.logic

    On 9/26/2025 2:48 AM, Mikko wrote:
    On 2025-09-26 01:19:50 +0000, olcott said:

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly >>>>>>>>>>>>>> anchored his whole Undefinability proof in the semantic >>>>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic >>>>>>>>>>>>> gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion. >>>>>>>>
    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then >>>>>>> it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true"
    is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable truth
    predicate then there is a proof of a false sentence that asserts its
    own unprovability, i.e., the arithmetic with a definable truth predicate >>> is provably inconsistent.

    There is no true and unprovable.

    G||del proved that if a first order theory is incomplete it has models
    where some unprovable sentence is true and other models where the same sentence is false.


    That is only because he did not screen out sentences
    that are not truth bearers like: "What time is it (yes or no)?"
    "This sentence is not true", "This sentence cannot be proven".

    The latter two have a vacuous truth object that specifies
    an infinite recursive evaluation sequence that never gets
    to the point because there is no actual point to get to.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Sep 27 13:05:03 2025
    From Newsgroup: sci.logic

    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid >>>>>>>>>> sentence in the first order language of Peano arithmetic. That >>>>>>>>>> the value of an arithmetic expression in that sentence evaluates >>>>>>>>>> to the G||del number of the sentence has no arithmetic significance. >>>>>>>>>
    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>>>> are these plain English direct quotes of G||del from his paper: >>>>>>>>>
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And >>>>>>>>> Related Systems

    The most important aspect is the theorem itself: every theory that >>>>>>>> has the symbols and axioms of the first order Peano arithmetic is >>>>>>>> either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many
    purposes. For a long time there was no need to think about the
    shape of the Earth.

    The point is that not even a universal consensus equates to truth.

    No, but it is a significant aspect of culture. A question of importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory >>>>>> of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up.
    If you want to build a formal system that is not anchored in a
    screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment
    to these basic facts.

    It is generally accepted that the set of axioms can be infinite

    Not when we are representing the finite set of human general knowledge.

    Once again you try to deceive with a change of topic. There is no
    need to prove the incompletenes of human general knowledge as that
    already is obvious. But G||del's and Tarski's theorems are about
    natural number arithmetic and its extensions so they need to cover
    the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some
    formal similarity to the sentence Tarski constructs but is not a part
    of the proof. Consequently anything said about the liar's paracos is
    irrelevant to the correctness of the proof.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Sep 27 13:07:28 2025
    From Newsgroup: sci.logic

    On 2025-09-26 15:24:27 +0000, olcott said:

    On 9/26/2025 2:43 AM, Mikko wrote:
    On 2025-09-26 01:11:01 +0000, olcott said:

    On 9/25/2025 2:24 AM, Mikko wrote:
    On 2025-09-24 14:31:55 +0000, olcott said:

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF >>>>>>>>>>>>>>
    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski. >>>>>>>>>>>>> Tarski has his Theory and his Meta-Theory that are separate. >>>>>>>>>>>>> This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because >>>>>>>>>> it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a >>>>>> valid an important concept even when not formally definable.

    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    Not really, he applied the methods G||del had already developed to
    a different problem.

    Tarski admits that he anchored his whole proof on the
    liar paradox and G||del admitted essentially the same thing:

    Yes, and you addmitted above that "The sentence 'This sentence is
    not true' is not true" is true, so can be used in a sound proof.

    Tarski also said he got the method from G||del.

    We can do the exact same thing for this sentence:
    "What time is it (yes or no)?" is not true.

    Yes, "'What time is it (yes or no)?' is not true" is true and can be
    used in a sound proof. However, it is hardly useful for any interesting
    proof.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Sep 27 13:12:42 2025
    From Newsgroup: sci.logic

    On 2025-09-26 15:28:52 +0000, olcott said:

    On 9/26/2025 2:48 AM, Mikko wrote:
    On 2025-09-26 01:19:50 +0000, olcott said:

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly >>>>>>>>>>>>>>> anchored his whole Undefinability proof in the semantic >>>>>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself.

    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion. >>>>>>>>>
    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then >>>>>>>> it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true" >>>>>> is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable truth >>>> predicate then there is a proof of a false sentence that asserts its
    own unprovability, i.e., the arithmetic with a definable truth predicate >>>> is provably inconsistent.

    There is no true and unprovable.

    G||del proved that if a first order theory is incomplete it has models
    where some unprovable sentence is true and other models where the same
    sentence is false.

    That is only because he did not screen out sentences
    that are not truth bearers like: "What time is it (yes or no)?"
    "This sentence is not true", "This sentence cannot be proven".

    He didn't need to screen out anything. His proof covers all first order theories. In many theories your examples are unexpressible anyway, so
    there is no need to screen them out.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 29 07:21:25 2025
    From Newsgroup: sci.logic

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid >>>>>>>>>>> sentence in the first order language of Peano arithmetic. That >>>>>>>>>>> the value of an arithmetic expression in that sentence evaluates >>>>>>>>>>> to the G||del number of the sentence has no arithmetic
    significance.

    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>>>>> are these plain English direct quotes of G||del from his paper: >>>>>>>>>>
    ...there is also a close relationship with the rCLliarrCY >>>>>>>>>> antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for >>>>>>>>>> a similar undecidability proof...
    ...We are therefore confronted with a proposition which
    asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica >>>>>>>>>> And Related Systems

    The most important aspect is the theorem itself: every theory that >>>>>>>>> has the symbols and axioms of the first order Peano arithmetic is >>>>>>>>> either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many
    purposes. For a long time there was no need to think about the
    shape of the Earth.

    The point is that not even a universal consensus equates to truth.

    No, but it is a significant aspect of culture. A question of importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete
    theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up. >>>>>> If you want to build a formal system that is not anchored in a
    screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment
    to these basic facts.

    It is generally accepted that the set of axioms can be infinite

    Not when we are representing the finite set of human general knowledge. >>>
    Once again you try to deceive with a change of topic. There is no
    need to prove the incompletenes of human general knowledge as that
    already is obvious. But G||del's and Tarski's theorems are about
    natural number arithmetic and its extensions so they need to cover
    the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some
    formal similarity to the sentence Tarski constructs but is not a part
    of the proof. Consequently anything said about the liar's paracos is irrelevant to the correctness of the proof.


    Factually incorrect.

    Tarski's Liar Paradox from page 248
    It would then be possible to reconstruct the antinomy of the liar
    in the metalanguage, by forming in the language itself a sentence
    x such that the sentence of the metalanguage which is correlated
    with x asserts that x is not a true sentence.
    https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 29 07:24:30 2025
    From Newsgroup: sci.logic

    On 9/27/2025 5:07 AM, Mikko wrote:
    On 2025-09-26 15:24:27 +0000, olcott said:

    On 9/26/2025 2:43 AM, Mikko wrote:
    On 2025-09-26 01:11:01 +0000, olcott said:

    On 9/25/2025 2:24 AM, Mikko wrote:
    On 2025-09-24 14:31:55 +0000, olcott said:

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object >>>>>>>>>>>>>>>>> theory already
    is a higher order theory the enriched theory needs not >>>>>>>>>>>>>>>>> be higher.
    Tarski can say what he says because at that point he >>>>>>>>>>>>>>>>> has already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic.
    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF >>>>>>>>>>>>>>>
    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski. >>>>>>>>>>>>>> Tarski has his Theory and his Meta-Theory that are separate. >>>>>>>>>>>>>> This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is >>>>>>>>>>>>> not true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that >>>>>>>>>>> because
    it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a >>>>>>> valid an important concept even when not formally definable.

    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    Not really, he applied the methods G||del had already developed to
    a different problem.

    Tarski admits that he anchored his whole proof on the
    liar paradox and G||del admitted essentially the same thing:

    Yes, and you addmitted above that "The sentence 'This sentence is
    not true' is not true" is true, so can be used in a sound proof.

    Tarski also said he got the method from G||del.

    We can do the exact same thing for this sentence:
    "What time is it (yes or no)?" is not true.

    Yes, "'What time is it (yes or no)?' is not true" is true and can be
    used in a sound proof. However, it is hardly useful for any interesting proof.


    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Mon Sep 29 07:27:50 2025
    From Newsgroup: sci.logic

    On 9/27/2025 5:12 AM, Mikko wrote:
    On 2025-09-26 15:28:52 +0000, olcott said:

    On 9/26/2025 2:48 AM, Mikko wrote:
    On 2025-09-26 01:19:50 +0000, olcott said:

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly >>>>>>>>>>>>>>>> anchored his whole Undefinability proof in the semantic >>>>>>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not >>>>>>>>>>>>>>> semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself. >>>>>>>>>>>>
    In an infinitely recursive chain that you dishonestly
    erased.

    No, that meaning can be found without considering any recursion. >>>>>>>>>>
    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value >>>>>>>>> then
    it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true" >>>>>>> is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable
    truth
    predicate then there is a proof of a false sentence that asserts its >>>>> own unprovability, i.e., the arithmetic with a definable truth
    predicate
    is provably inconsistent.

    There is no true and unprovable.

    G||del proved that if a first order theory is incomplete it has models
    where some unprovable sentence is true and other models where the same
    sentence is false.

    That is only because he did not screen out sentences
    that are not truth bearers like: "What time is it (yes or no)?"
    "This sentence is not true", "This sentence cannot be proven".

    He didn't need to screen out anything. His proof covers all first order theories. In many theories your examples are unexpressible anyway, so
    there is no need to screen them out.


    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    I just showed you have Tarski expressed one
    of these turds in his formal system.
    x ree True if and only if p
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 30 15:48:40 2025
    From Newsgroup: sci.logic

    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid >>>>>>>>>>>> sentence in the first order language of Peano arithmetic. That >>>>>>>>>>>> the value of an arithmetic expression in that sentence evaluates >>>>>>>>>>>> to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid
    people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>>>>>> are these plain English direct quotes of G||del from his paper: >>>>>>>>>>>
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And >>>>>>>>>>> Related Systems

    The most important aspect is the theorem itself: every theory that >>>>>>>>>> has the symbols and axioms of the first order Peano arithmetic is >>>>>>>>>> either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many
    purposes. For a long time there was no need to think about the
    shape of the Earth.

    The point is that not even a universal consensus equates to truth.

    No, but it is a significant aspect of culture. A question of importance >>>> is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory >>>>>>>> of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up. >>>>>>> If you want to build a formal system that is not anchored in a
    screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment
    to these basic facts.

    It is generally accepted that the set of axioms can be infinite

    Not when we are representing the finite set of human general knowledge. >>>>
    Once again you try to deceive with a change of topic. There is no
    need to prove the incompletenes of human general knowledge as that
    already is obvious. But G||del's and Tarski's theorems are about
    natural number arithmetic and its extensions so they need to cover
    the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some
    formal similarity to the sentence Tarski constructs but is not a part
    of the proof. Consequently anything said about the liar's paracos is
    irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    Tarski's Liar Paradox from page 248
    It would then be possible to reconstruct the antinomy of the liar
    in the metalanguage, by forming in the language itself a sentence
    x such that the sentence of the metalanguage which is correlated
    with x asserts that x is not a true sentence.
    https://liarparadox.org/Tarski_247_248.pdf
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Sep 30 15:54:41 2025
    From Newsgroup: sci.logic

    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:
    On 2025-09-26 15:24:27 +0000, olcott said:

    On 9/26/2025 2:43 AM, Mikko wrote:
    On 2025-09-26 01:11:01 +0000, olcott said:

    On 9/25/2025 2:24 AM, Mikko wrote:
    On 2025-09-24 14:31:55 +0000, olcott said:

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic. >>>>>>>>>>>>>>>>> https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF >>>>>>>>>>>>>>>>
    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski. >>>>>>>>>>>>>>> Tarski has his Theory and his Meta-Theory that are separate. >>>>>>>>>>>>>>> This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because
    it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a >>>>>>>> valid an important concept even when not formally definable.

    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    Not really, he applied the methods G||del had already developed to >>>>>> a different problem.

    Tarski admits that he anchored his whole proof on the
    liar paradox and G||del admitted essentially the same thing:

    Yes, and you addmitted above that "The sentence 'This sentence is
    not true' is not true" is true, so can be used in a sound proof.

    Tarski also said he got the method from G||del.

    We can do the exact same thing for this sentence:
    "What time is it (yes or no)?" is not true.

    Yes, "'What time is it (yes or no)?' is not true" is true and can be
    used in a sound proof. However, it is hardly useful for any interesting
    proof.

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others. Theories need additionan
    postulates that identify which sentences are intended to be true
    and which false in the intended domain of the theory.

    Anyway, the sentence "'What time is it (yes or no)?' is not true" is
    true and therefore is a truth-bearer and is a valid and sound element
    of proof, though perhaps not very useful.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 30 20:46:15 2025
    From Newsgroup: sci.logic

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid >>>>>>>>>>>>> sentence in the first order language of Peano arithmetic. That >>>>>>>>>>>>> the value of an arithmetic expression in that sentence >>>>>>>>>>>>> evaluates
    to the G||del number of the sentence has no arithmetic >>>>>>>>>>>>> significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>> people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness >>>>>>>>>>>> theorem
    are these plain English direct quotes of G||del from his paper: >>>>>>>>>>>>
    ...there is also a close relationship with the rCLliarrCY >>>>>>>>>>>> antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used >>>>>>>>>>>> for a similar undecidability proof...
    ...We are therefore confronted with a proposition which >>>>>>>>>>>> asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia
    Mathematica And Related Systems

    The most important aspect is the theorem itself: every theory >>>>>>>>>>> that
    has the symbols and axioms of the first order Peano
    arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many
    purposes. For a long time there was no need to think about the
    shape of the Earth.

    The point is that not even a universal consensus equates to truth.

    No, but it is a significant aspect of culture. A question of
    importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete >>>>>>>>> theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up. >>>>>>>> If you want to build a formal system that is not anchored in a >>>>>>>> screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment
    to these basic facts.

    It is generally accepted that the set of axioms can be infinite

    Not when we are representing the finite set of human general
    knowledge.

    Once again you try to deceive with a change of topic. There is no
    need to prove the incompletenes of human general knowledge as that
    already is obvious. But G||del's and Tarski's theorems are about
    natural number arithmetic and its extensions so they need to cover
    the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some
    formal similarity to the sentence Tarski constructs but is not a part
    of the proof. Consequently anything said about the liar's paracos is
    irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:


    And I prove my point in the paragraph that you skipped.
    This paragraph is formalized as this:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x


    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar
    -a-a-a in the metalanguage, by forming in the language itself a sentence
    -a-a-a x such that the sentence of the metalanguage which is correlated
    -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Sep 30 20:48:56 2025
    From Newsgroup: sci.logic

    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:
    On 2025-09-26 15:24:27 +0000, olcott said:

    On 9/26/2025 2:43 AM, Mikko wrote:
    On 2025-09-26 01:11:01 +0000, olcott said:

    On 9/25/2025 2:24 AM, Mikko wrote:
    On 2025-09-24 14:31:55 +0000, olcott said:

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said:

    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the >>>>>>>>>>>>>>>>>>> object theory already
    is a higher order theory the enriched theory needs >>>>>>>>>>>>>>>>>>> not be higher.
    Tarski can say what he says because at that point he >>>>>>>>>>>>>>>>>>> has already
    proven both claims.

    Minimal Type Theory (MTT) that I created
    start with the syntax of FOPL and this
    can be extended to any higher order of logic. >>>>>>>>>>>>>>>>>> https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF >>>>>>>>>>>>>>>>>
    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski. >>>>>>>>>>>>>>>> Tarski has his Theory and his Meta-Theory that are >>>>>>>>>>>>>>>> separate.
    This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is >>>>>>>>>>>>>>> not true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that >>>>>>>>>>>>> because
    it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth >>>>>>>>> is a
    valid an important concept even when not formally definable.

    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    Not really, he applied the methods G||del had already developed to >>>>>>> a different problem.

    Tarski admits that he anchored his whole proof on the
    liar paradox and G||del admitted essentially the same thing:

    Yes, and you addmitted above that "The sentence 'This sentence is
    not true' is not true" is true, so can be used in a sound proof.

    Tarski also said he got the method from G||del.

    We can do the exact same thing for this sentence:
    "What time is it (yes or no)?" is not true.

    Yes, "'What time is it (yes or no)?' is not true" is true and can be
    used in a sound proof. However, it is hardly useful for any interesting
    proof.

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others.

    A mere false assumption
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x

    In Olcott's Minimal Type Theory this is: LP := ~True(LP)
    Neither one are true or false in any context.

    Theories need additionan
    postulates that identify which sentences are intended to be true
    and which false in the intended domain of the theory.

    Anyway, the sentence "'What time is it (yes or no)?' is not true" is
    true and therefore is a truth-bearer and is a valid and sound element
    of proof, though perhaps not very useful.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Oct 1 13:12:13 2025
    From Newsgroup: sci.logic

    On 2025-10-01 01:46:15 +0000, olcott said:

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid >>>>>>>>>>>>>> sentence in the first order language of Peano arithmetic. That >>>>>>>>>>>>>> the value of an arithmetic expression in that sentence evaluates >>>>>>>>>>>>>> to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>>> people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>>>>>>>> are these plain English direct quotes of G||del from his paper: >>>>>>>>>>>>>
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that >>>>>>>>>>>> has the symbols and axioms of the first order Peano arithmetic is >>>>>>>>>>>> either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many >>>>>>>> purposes. For a long time there was no need to think about the >>>>>>>> shape of the Earth.

    The point is that not even a universal consensus equates to truth. >>>>>>
    No, but it is a significant aspect of culture. A question of importance >>>>>> is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up. >>>>>>>>> If you want to build a formal system that is not anchored in a >>>>>>>>> screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it >>>>>>>> cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply
    the truth preserving operation of semantic logical entailment >>>>>>>>> to these basic facts.

    It is generally accepted that the set of axioms can be infinite >>>>>>>
    Not when we are representing the finite set of human general knowledge. >>>>>>
    Once again you try to deceive with a change of topic. There is no
    need to prove the incompletenes of human general knowledge as that >>>>>> already is obvious. But G||del's and Tarski's theorems are about
    natural number arithmetic and its extensions so they need to cover >>>>>> the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some
    formal similarity to the sentence Tarski constructs but is not a part
    of the proof. Consequently anything said about the liar's paracos is
    irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    And I prove my point in the paragraph that you skipped.

    Not relevant to Tarski's rerutation of your "Factually incorrect".
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Oct 1 13:13:48 2025
    From Newsgroup: sci.logic

    On 2025-10-01 01:48:56 +0000, olcott said:

    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:
    On 2025-09-26 15:24:27 +0000, olcott said:

    On 9/26/2025 2:43 AM, Mikko wrote:
    On 2025-09-26 01:11:01 +0000, olcott said:

    On 9/25/2025 2:24 AM, Mikko wrote:
    On 2025-09-24 14:31:55 +0000, olcott said:

    On 9/24/2025 2:15 AM, Mikko wrote:
    On 2025-09-23 15:37:27 +0000, olcott said:

    On 9/23/2025 4:23 AM, Mikko wrote:
    On 2025-09-23 00:57:36 +0000, olcott said:

    On 9/21/2025 4:25 AM, Mikko wrote:
    On 2025-09-20 15:03:01 +0000, olcott said:

    On 9/19/2025 4:20 AM, Mikko wrote:
    On 2025-09-18 14:42:11 +0000, olcott said:

    On 9/18/2025 4:25 AM, Mikko wrote:
    On 2025-09-17 14:51:01 +0000, olcott said: >>>>>>>>>>>>>>>>>>
    On 9/17/2025 2:52 AM, Mikko wrote:

    No, there are other extensions, too. And if the object theory already
    is a higher order theory the enriched theory needs not be higher.
    Tarski can say what he says because at that point he has already
    proven both claims.

    Minimal Type Theory (MTT) that I created >>>>>>>>>>>>>>>>>>> start with the syntax of FOPL and this
    can be extended to any higher order of logic. >>>>>>>>>>>>>>>>>>> https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF >>>>>>>>>>>>>>>>>>
    Nice to see that you don't disagree.

    I agree with you and thus we both disagree with Tarski. >>>>>>>>>>>>>>>>> Tarski has his Theory and his Meta-Theory that are separate. >>>>>>>>>>>>>>>>> This seems to be the same as FOPL and SOPL.

    When You and Tarski and I say that "The Liar's paradox is not true"
    then we all agree.

    Its not false either.

    That fact is not needed for the proof. What matters is that because
    it is not true it cannot be provable.

    Yes and the square root of a dead chicken
    is uncomputable for the same reason.

    Nice to see that you don't disagree.

    Computation is not limited when it is required
    to answer any question that has no correct answer.

    Irrelevant to Tarski's undefinability theorem. Atirhmetic truth is a >>>>>>>>>> valid an important concept even when not formally definable. >>>>>>>>>
    Tarski merely did the same thing as G||del yet did this
    much more succinctly and clearly.

    Not really, he applied the methods G||del had already developed to >>>>>>>> a different problem.

    Tarski admits that he anchored his whole proof on the
    liar paradox and G||del admitted essentially the same thing:

    Yes, and you addmitted above that "The sentence 'This sentence is
    not true' is not true" is true, so can be used in a sound proof.

    Tarski also said he got the method from G||del.

    We can do the exact same thing for this sentence:
    "What time is it (yes or no)?" is not true.

    Yes, "'What time is it (yes or no)?' is not true" is true and can be
    used in a sound proof. However, it is hardly useful for any interesting >>>> proof.

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Oct 1 10:40:06 2025
    From Newsgroup: sci.logic

    On 10/1/2025 5:12 AM, Mikko wrote:
    On 2025-10-01 01:46:15 +0000, olcott said:

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a >>>>>>>>>>>>>>> valid
    sentence in the first order language of Peano arithmetic. >>>>>>>>>>>>>>> That
    the value of an arithmetic expression in that sentence >>>>>>>>>>>>>>> evaluates
    to the G||del number of the sentence has no arithmetic >>>>>>>>>>>>>>> significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>>>> people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness >>>>>>>>>>>>>> theorem
    are these plain English direct quotes of G||del from his >>>>>>>>>>>>>> paper:

    ...there is also a close relationship with the rCLliarrCY >>>>>>>>>>>>>> antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used >>>>>>>>>>>>>> for a similar undecidability proof...
    ...We are therefore confronted with a proposition which >>>>>>>>>>>>>> asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia >>>>>>>>>>>>>> Mathematica And Related Systems

    The most important aspect is the theorem itself: every >>>>>>>>>>>>> theory that
    has the symbols and axioms of the first order Peano >>>>>>>>>>>>> arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many >>>>>>>>> purposes. For a long time there was no need to think about the >>>>>>>>> shape of the Earth.

    The point is that not even a universal consensus equates to truth. >>>>>>>
    No, but it is a significant aspect of culture. A question of
    importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a
    cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed >>>>>>>>>> up.
    If you want to build a formal system that is not anchored in a >>>>>>>>>> screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it >>>>>>>>> cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply >>>>>>>>>> the truth preserving operation of semantic logical entailment >>>>>>>>>> to these basic facts.

    It is generally accepted that the set of axioms can be infinite >>>>>>>>
    Not when we are representing the finite set of human general
    knowledge.

    Once again you try to deceive with a change of topic. There is no >>>>>>> need to prove the incompletenes of human general knowledge as that >>>>>>> already is obvious. But G||del's and Tarski's theorems are about >>>>>>> natural number arithmetic and its extensions so they need to cover >>>>>>> the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some >>>>> formal similarity to the sentence Tarski constructs but is not a part >>>>> of the proof. Consequently anything said about the liar's paracos is >>>>> irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    And I prove my point in the paragraph that you skipped.

    Not relevant to Tarski's rerutation of your "Factually incorrect".


    He anchored his whole proof in that he
    needed an extra level of logic to do this:

    X is any expression of language that is not
    a truth bearer. It is true that X is not true.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Oct 1 11:33:46 2025
    From Newsgroup: sci.logic

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.


    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    It was enormously more complicated for G||del
    to say this Olcott Minimal Type Theory Expression.

    G := ((F re4 G) re? (F re4 -4G)) // this one may be imperfect
    Semantically these expressions are not truth bearers.

    ...We are therefore confronted with a proposition
    which asserts its own unprovability. (G||del 1931:40-41)

    This is the exactly correct conventional expression:
    Incomplete(T) rao rea-a ((T re4 -a) reo (T re4 -4-a)).

    The first incompleteness theorem states that in
    any consistent formal system F within which a
    certain amount of arithmetic can be carried out,
    there are statements of the language of F which
    can neither be proved nor disproved in F https://plato.stanford.edu/entries/goedel-incompleteness/

    is exactly encoded by this conventional expression
    (see above) Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).

    Goes through the reasoning of Panu Raatikainen's simplified
    (G) F reo GF rao -4ProvF(roiGFroE) // the less three "F" are subscripts https://plato.stanford.edu/entries/goedel-incompleteness/#FirIncTheCom

    I think that I untangled that to be equivalent
    to this: reaG rao (F re4 G)
    which seems equivalent to this: reaG := ((F re4 G)
    If you can do better feel free.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Oct 2 12:38:56 2025
    From Newsgroup: sci.logic

    On 2025-10-01 15:40:06 +0000, olcott said:

    On 10/1/2025 5:12 AM, Mikko wrote:
    On 2025-10-01 01:46:15 +0000, olcott said:

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That >>>>>>>>>>>>>>>> the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>>>>> people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper: >>>>>>>>>>>>>>>
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important.

    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many >>>>>>>>>> purposes. For a long time there was no need to think about the >>>>>>>>>> shape of the Earth.

    The point is that not even a universal consensus equates to truth. >>>>>>>>
    No, but it is a significant aspect of culture. A question of importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up. >>>>>>>>>>> If you want to build a formal system that is not anchored in a >>>>>>>>>>> screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it >>>>>>>>>> cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply >>>>>>>>>>> the truth preserving operation of semantic logical entailment >>>>>>>>>>> to these basic facts.

    It is generally accepted that the set of axioms can be infinite >>>>>>>>>
    Not when we are representing the finite set of human general knowledge.

    Once again you try to deceive with a change of topic. There is no >>>>>>>> need to prove the incompletenes of human general knowledge as that >>>>>>>> already is obvious. But G||del's and Tarski's theorems are about >>>>>>>> natural number arithmetic and its extensions so they need to cover >>>>>>>> the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some >>>>>> formal similarity to the sentence Tarski constructs but is not a part >>>>>> of the proof. Consequently anything said about the liar's paracos is >>>>>> irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    And I prove my point in the paragraph that you skipped.

    Not relevant to Tarski's rerutation of your "Factually incorrect".

    He anchored his whole proof in that he
    needed an extra level of logic to do this:

    You need metalogic if you want to say anything about logic.

    X is any expression of language that is not
    a truth bearer. It is true that X is not true.

    You cannot say that in the plain language of logic. You need a
    metatheory that can express and infer about expressions and
    relate them to truth.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Oct 2 13:03:27 2025
    From Newsgroup: sci.logic

    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.

    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference. The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic semantics of a formal language of arithmetics do not permit a self-
    reference.

    It was enormously more complicated for G||del
    to say this Olcott Minimal Type Theory Expression.

    G := ((F re4 G) re? (F re4 -4G)) // this one may be imperfect
    Semantically these expressions are not truth bearers.

    Neither the usual first order logic nor the arithmetic semantics
    assingns any meaning to the symbols := and re4. Because G||del's
    proof was about the Peano arithmetic he could only use the symbols
    of the language of Peano arithmetic.

    ...We are therefore confronted with a proposition
    which asserts its own unprovability. (G||del 1931:40-41)

    That is, G||del proved that a particular sentence of Peano arithmetic
    is provable only if it is arithmetically false.

    This is the exactly correct conventional expression:
    Incomplete(T) rao rea-a ((T re4 -a) reo (T re4 -4-a)).

    Here one could use := instead of rao. But I think the conventional way
    is simply to use words.

    All of which is irrelevant to the tautology "Every sentence of logic
    that is not tautology or dontradiction is true in some contexts and
    false in others" and to your false response to it.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Oct 2 05:07:33 2025
    From Newsgroup: sci.logic

    On 10/2/2025 4:38 AM, Mikko wrote:
    On 2025-10-01 15:40:06 +0000, olcott said:

    On 10/1/2025 5:12 AM, Mikko wrote:
    On 2025-10-01 01:46:15 +0000, olcott said:

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is >>>>>>>>>>>>>>>>> a valid
    sentence in the first order language of Peano >>>>>>>>>>>>>>>>> arithmetic. That
    the value of an arithmetic expression in that sentence >>>>>>>>>>>>>>>>> evaluates
    to the G||del number of the sentence has no arithmetic >>>>>>>>>>>>>>>>> significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>>>>>> people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness >>>>>>>>>>>>>>>> theorem
    are these plain English direct quotes of G||del from his >>>>>>>>>>>>>>>> paper:

    ...there is also a close relationship with the rCLliarrCY >>>>>>>>>>>>>>>> antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be >>>>>>>>>>>>>>>> used for a similar undecidability proof...
    ...We are therefore confronted with a proposition which >>>>>>>>>>>>>>>> asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia >>>>>>>>>>>>>>>> Mathematica And Related Systems

    The most important aspect is the theorem itself: every >>>>>>>>>>>>>>> theory that
    has the symbols and axioms of the first order Peano >>>>>>>>>>>>>>> arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important. >>>>>>>>>>>>
    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many >>>>>>>>>>> purposes. For a long time there was no need to think about the >>>>>>>>>>> shape of the Earth.

    The point is that not even a universal consensus equates to >>>>>>>>>> truth.

    No, but it is a significant aspect of culture. A question of >>>>>>>>> importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a >>>>>>>>>>>>> cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is >>>>>>>>>>>> screwed up.
    If you want to build a formal system that is not anchored in a >>>>>>>>>>>> screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it >>>>>>>>>>> cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply >>>>>>>>>>>> the truth preserving operation of semantic logical entailment >>>>>>>>>>>> to these basic facts.

    It is generally accepted that the set of axioms can be infinite >>>>>>>>>>
    Not when we are representing the finite set of human general >>>>>>>>>> knowledge.

    Once again you try to deceive with a change of topic. There is no >>>>>>>>> need to prove the incompletenes of human general knowledge as that >>>>>>>>> already is obvious. But G||del's and Tarski's theorems are about >>>>>>>>> natural number arithmetic and its extensions so they need to cover >>>>>>>>> the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has >>>>>>> some
    formal similarity to the sentence Tarski constructs but is not a >>>>>>> part
    of the proof. Consequently anything said about the liar's paracos is >>>>>>> irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    And I prove my point in the paragraph that you skipped.

    Not relevant to Tarski's rerutation of your "Factually incorrect".

    He anchored his whole proof in that he
    needed an extra level of logic to do this:

    You need metalogic if you want to say anything about logic.

    X is any expression of language that is not
    a truth bearer. It is true that X is not true.

    You cannot say that in the plain language of logic. You need a
    metatheory that can express and infer about expressions and
    relate them to truth.


    I proved otherwise
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Oct 2 05:15:13 2025
    From Newsgroup: sci.logic

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.

    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    Tarski's Liar Paradox from page 248
    It would then be possible to reconstruct the antinomy of the liar
    in the metalanguage, by forming in the language itself a sentence
    x such that the sentence of the metalanguage which is correlated
    with x asserts that x is not a true sentence.
    https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic semantics of a formal language of arithmetics do not permit a self- reference.


    G||del uses tricks for that.

    https://www.researchgate.net/publication/331859461_Minimal_Type_Theory_YACC_BNF

    LP := ~True(LP)

    It was enormously more complicated for G||del
    to say this Olcott Minimal Type Theory Expression.

    G := ((F re4 G) re? (F re4 -4G))-a // this one may be imperfect
    Semantically these expressions are not truth bearers.

    Neither the usual first order logic nor the arithmetic semantics
    assingns any meaning to the symbols := and re4. Because G||del's
    proof was about the Peano arithmetic he could only use the symbols
    of the language of Peano arithmetic.


    Yes he had to go though quite a mess so say the same thing.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own unprovability. 15 ...
    (G||del 1931:40-41)
    ...We are therefore confronted with a proposition
    which asserts its own unprovability. (G||del 1931:40-41)

    That is, G||del proved that a particular sentence of Peano arithmetic
    is provable only if it is arithmetically false.

    This is the exactly correct conventional expression:
    Incomplete(T) rao rea-a ((T re4 -a) reo (T re4 -4-a)).

    Here one could use := instead of rao. But I think the conventional way
    is simply to use words.

    All of which is irrelevant to the tautology "Every sentence of logic
    that is not tautology or dontradiction is true in some contexts and
    false in others" and to your false response to it.


    LP := ~True(LP) is a counter-example.

    Claude AI understood how I defeated Tarski and G||del https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Oct 4 13:11:25 2025
    From Newsgroup: sci.logic

    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.

    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning
    does not refer.

    Tarski's Liar Paradox from page 248
    It would then be possible to reconstruct the antinomy of the liar
    in the metalanguage, by forming in the language itself a sentence
    x such that the sentence of the metalanguage which is correlated
    with x asserts that x is not a true sentence.
    https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic
    semantics of a formal language of arithmetics do not permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    https://www.researchgate.net/publication/331859461_Minimal_Type_Theory_YACC_BNF

    LP := ~True(LP)

    It was enormously more complicated for G||del
    to say this Olcott Minimal Type Theory Expression.

    G := ((F re4 G) re? (F re4 -4G))-a // this one may be imperfect
    Semantically these expressions are not truth bearers.

    Neither the usual first order logic nor the arithmetic semantics
    assingns any meaning to the symbols := and re4. Because G||del's
    proof was about the Peano arithmetic he could only use the symbols
    of the language of Peano arithmetic.

    Yes he had to go though quite a mess so say the same thing.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ... ...14 Every epistemological antinomy can likewise be used for a similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    Those are not parts of the theorem or its proof. They only become
    important (to some extent) after the proof.

    ...We are therefore confronted with a proposition
    which asserts its own unprovability. (G||del 1931:40-41)

    That is, G||del proved that a particular sentence of Peano arithmetic
    is provable only if it is arithmetically false.

    This is the exactly correct conventional expression:
    Incomplete(T) rao rea-a ((T re4 -a) reo (T re4 -4-a)).

    Here one could use := instead of rao. But I think the conventional way
    is simply to use words.

    All of which is irrelevant to the tautology "Every sentence of logic
    that is not tautology or dontradiction is true in some contexts and
    false in others" and to your false response to it.

    LP := ~True(LP) is a counter-example.

    In usual formal languages that is not a sentence and therefore need
    not be interpreted. In languages that allow := it is usually a syntax
    error to have the symbol on the left in the expression on the right.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Oct 4 13:25:33 2025
    From Newsgroup: sci.logic

    On 2025-10-02 10:07:33 +0000, olcott said:

    On 10/2/2025 4:38 AM, Mikko wrote:
    On 2025-10-01 15:40:06 +0000, olcott said:

    On 10/1/2025 5:12 AM, Mikko wrote:
    On 2025-10-01 01:46:15 +0000, olcott said:

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>>>>>>> people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important. >>>>>>>>>>>>>
    Prior to Pythagoras there was a universal consensus
    that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many >>>>>>>>>>>> purposes. For a long time there was no need to think about the >>>>>>>>>>>> shape of the Earth.

    The point is that not even a universal consensus equates to truth. >>>>>>>>>>
    No, but it is a significant aspect of culture. A question of importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up.
    If you want to build a formal system that is not anchored in a >>>>>>>>>>>>> screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it >>>>>>>>>>>> cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply >>>>>>>>>>>>> the truth preserving operation of semantic logical entailment >>>>>>>>>>>>> to these basic facts.

    It is generally accepted that the set of axioms can be infinite >>>>>>>>>>>
    Not when we are representing the finite set of human general knowledge.

    Once again you try to deceive with a change of topic. There is no >>>>>>>>>> need to prove the incompletenes of human general knowledge as that >>>>>>>>>> already is obvious. But G||del's and Tarski's theorems are about >>>>>>>>>> natural number arithmetic and its extensions so they need to cover >>>>>>>>>> the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some >>>>>>>> formal similarity to the sentence Tarski constructs but is not a part >>>>>>>> of the proof. Consequently anything said about the liar's paracos is >>>>>>>> irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    And I prove my point in the paragraph that you skipped.

    Not relevant to Tarski's rerutation of your "Factually incorrect".

    He anchored his whole proof in that he
    needed an extra level of logic to do this:

    You need metalogic if you want to say anything about logic.

    X is any expression of language that is not
    a truth bearer. It is true that X is not true.

    You cannot say that in the plain language of logic. You need a
    metatheory that can express and infer about expressions and
    relate them to truth.

    I proved otherwise https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    You didn't prove anything. If you could you would post here the
    plain logic sentence that says what you said.

    But Tarski proved about natural numbers that if there were a definition
    of a predicate in terms of a formula in the language of Peano arithmetic
    that accepts all numbers that encode a true sentence and rejects all
    other numbers then that predicate would accept a number that encodes
    a false sentence or reject a number that encodes a true sentence.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Oct 4 08:30:22 2025
    From Newsgroup: sci.logic

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is >>>>>>> true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.

    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning
    does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar
    -a-a-a in the metalanguage, by forming in the language itself a sentence
    -a-a-a x such that the sentence of the metalanguage which is correlated
    -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic >>> semantics of a formal language of arithmetics do not permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.


    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    https://www.researchgate.net/
    publication/331859461_Minimal_Type_Theory_YACC_BNF

    LP := ~True(LP)

    It was enormously more complicated for G||del
    to say this Olcott Minimal Type Theory Expression.

    G := ((F re4 G) re? (F re4 -4G))-a // this one may be imperfect
    Semantically these expressions are not truth bearers.

    Neither the usual first order logic nor the arithmetic semantics
    assingns any meaning to the symbols := and re4. Because G||del's
    proof was about the Peano arithmetic he could only use the symbols
    of the language of Peano arithmetic.

    Yes he had to go though quite a mess so say the same thing.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a
    similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its
    own unprovability. 15 ...
    (G||del 1931:40-41)

    Those are not parts of the theorem or its proof. They only become
    important (to some extent) after the proof.


    They accurately boil the whole essence of his
    proof down to something much simpler.

    ...We are therefore confronted with a proposition
    which asserts its own unprovability. (G||del 1931:40-41)

    That is, G||del proved that a particular sentence of Peano arithmetic
    is provable only if it is arithmetically false.

    This is the exactly correct conventional expression:
    Incomplete(T) rao rea-a ((T re4 -a) reo (T re4 -4-a)).

    Here one could use := instead of rao. But I think the conventional way
    is simply to use words.

    All of which is irrelevant to the tautology "Every sentence of logic
    that is not tautology or dontradiction is true in some contexts and
    false in others" and to your false response to it.

    LP := ~True(LP) is a counter-example.

    In usual formal languages that is not a sentence and therefore need
    not be interpreted. In languages that allow := it is usually a syntax
    error to have the symbol on the left in the expression on the right.


    Olcott's Minimal Type Theory syntax specification https://www.researchgate.net/publication/331859461_Minimal_Type_Theory_YACC_BNF

    := (definition operator) x := y means x is defined to be another name
    for y. LHS is assigned as an alias name for the RHS (macro substitution)
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Oct 4 08:34:07 2025
    From Newsgroup: sci.logic

    On 10/4/2025 5:25 AM, Mikko wrote:
    On 2025-10-02 10:07:33 +0000, olcott said:

    On 10/2/2025 4:38 AM, Mikko wrote:
    On 2025-10-01 15:40:06 +0000, olcott said:

    On 10/1/2025 5:12 AM, Mikko wrote:
    On 2025-10-01 01:46:15 +0000, olcott said:

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said:
    On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It >>>>>>>>>>>>>>>>>>> is a valid
    sentence in the first order language of Peano >>>>>>>>>>>>>>>>>>> arithmetic. That
    the value of an arithmetic expression in that >>>>>>>>>>>>>>>>>>> sentence evaluates
    to the G||del number of the sentence has no arithmetic >>>>>>>>>>>>>>>>>>> significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>>>>>>>> people stupidly ignore G||del's own words.

    It is what G||del said and proved.

    The most important aspect of G||del's 1931 >>>>>>>>>>>>>>>>>> Incompleteness theorem
    are these plain English direct quotes of G||del from >>>>>>>>>>>>>>>>>> his paper:

    ...there is also a close relationship with the rCLliarrCY >>>>>>>>>>>>>>>>>> antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be >>>>>>>>>>>>>>>>>> used for a similar undecidability proof... >>>>>>>>>>>>>>>>>> ...We are therefore confronted with a proposition >>>>>>>>>>>>>>>>>> which asserts its own unprovability. 15 ... >>>>>>>>>>>>>>>>>> (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia >>>>>>>>>>>>>>>>>> Mathematica And Related Systems

    The most important aspect is the theorem itself: every >>>>>>>>>>>>>>>>> theory that
    has the symbols and axioms of the first order Peano >>>>>>>>>>>>>>>>> arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important. >>>>>>>>>>>>>>
    Prior to Pythagoras there was a universal consensus >>>>>>>>>>>>>> that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many >>>>>>>>>>>>> purposes. For a long time there was no need to think about the >>>>>>>>>>>>> shape of the Earth.

    The point is that not even a universal consensus equates to >>>>>>>>>>>> truth.

    No, but it is a significant aspect of culture. A question of >>>>>>>>>>> importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a >>>>>>>>>>>>>>> cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is >>>>>>>>>>>>>> screwed up.
    If you want to build a formal system that is not anchored >>>>>>>>>>>>>> in a
    screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory >>>>>>>>>>>>> around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply >>>>>>>>>>>>>> the truth preserving operation of semantic logical entailment >>>>>>>>>>>>>> to these basic facts.

    It is generally accepted that the set of axioms can be >>>>>>>>>>>>> infinite

    Not when we are representing the finite set of human general >>>>>>>>>>>> knowledge.

    Once again you try to deceive with a change of topic. There >>>>>>>>>>> is no
    need to prove the incompletenes of human general knowledge as >>>>>>>>>>> that
    already is obvious. But G||del's and Tarski's theorems are about >>>>>>>>>>> natural number arithmetic and its extensions so they need to >>>>>>>>>>> cover
    the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox >>>>>>>>> has some
    formal similarity to the sentence Tarski constructs but is not >>>>>>>>> a part
    of the proof. Consequently anything said about the liar's
    paracos is
    irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    And I prove my point in the paragraph that you skipped.

    Not relevant to Tarski's rerutation of your "Factually incorrect".

    He anchored his whole proof in that he
    needed an extra level of logic to do this:

    You need metalogic if you want to say anything about logic.

    X is any expression of language that is not
    a truth bearer. It is true that X is not true.

    You cannot say that in the plain language of logic. You need a
    metatheory that can express and infer about expressions and
    relate them to truth.

    I proved otherwise
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    You didn't prove anything. If you could you would post here the
    plain logic sentence that says what you said.


    It explains a correction to an aspect of the
    foundation of logic and it does this in plain
    English and a tiny bit of Prolog.

    But Tarski proved about natural numbers that if there were a definition
    of a predicate in terms of a formula in the language of Peano arithmetic
    that accepts all numbers that encode a true sentence and rejects all
    other numbers then that predicate would accept a number that encodes
    a false sentence or reject a number that encodes a true sentence.


    Mine has a broader scope that can be applied to
    any pathological self-reference(Olcott 2004) in
    formal expressions and formalized natural language
    expressions.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Oct 5 13:06:32 2025
    From Newsgroup: sci.logic

    On 2025-10-04 13:34:07 +0000, olcott said:

    On 10/4/2025 5:25 AM, Mikko wrote:
    On 2025-10-02 10:07:33 +0000, olcott said:

    On 10/2/2025 4:38 AM, Mikko wrote:
    On 2025-10-01 15:40:06 +0000, olcott said:

    On 10/1/2025 5:12 AM, Mikko wrote:
    On 2025-10-01 01:46:15 +0000, olcott said:

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said: >>>>>>>>>>>>>>>>>>> On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>>>>>>>>> people stupidly ignore G||del's own words. >>>>>>>>>>>>>>>>>>
    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important. >>>>>>>>>>>>>>>
    Prior to Pythagoras there was a universal consensus >>>>>>>>>>>>>>> that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many >>>>>>>>>>>>>> purposes. For a long time there was no need to think about the >>>>>>>>>>>>>> shape of the Earth.

    The point is that not even a universal consensus equates to truth.

    No, but it is a significant aspect of culture. A question of importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up.
    If you want to build a formal system that is not anchored in a >>>>>>>>>>>>>>> screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory around it >>>>>>>>>>>>>> cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply >>>>>>>>>>>>>>> the truth preserving operation of semantic logical entailment >>>>>>>>>>>>>>> to these basic facts.

    It is generally accepted that the set of axioms can be infinite >>>>>>>>>>>>>
    Not when we are representing the finite set of human general knowledge.

    Once again you try to deceive with a change of topic. There is no >>>>>>>>>>>> need to prove the incompletenes of human general knowledge as that >>>>>>>>>>>> already is obvious. But G||del's and Tarski's theorems are about >>>>>>>>>>>> natural number arithmetic and its extensions so they need to cover >>>>>>>>>>>> the possibility that there are infinitely many axioms.

    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some
    formal similarity to the sentence Tarski constructs but is not a part
    of the proof. Consequently anything said about the liar's paracos is >>>>>>>>>> irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    And I prove my point in the paragraph that you skipped.

    Not relevant to Tarski's rerutation of your "Factually incorrect".

    He anchored his whole proof in that he
    needed an extra level of logic to do this:

    You need metalogic if you want to say anything about logic.

    X is any expression of language that is not
    a truth bearer. It is true that X is not true.

    You cannot say that in the plain language of logic. You need a
    metatheory that can express and infer about expressions and
    relate them to truth.

    I proved otherwise
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    You didn't prove anything. If you could you would post here the
    plain logic sentence that says what you said.

    It explains a correction to an aspect of the
    foundation of logic and it does this in plain
    English and a tiny bit of Prolog.

    It is not correct to use the word "correction" when the thing to
    be corrected is correct already.

    But Tarski proved about natural numbers that if there were a definition
    of a predicate in terms of a formula in the language of Peano arithmetic
    that accepts all numbers that encode a true sentence and rejects all
    other numbers then that predicate would accept a number that encodes
    a false sentence or reject a number that encodes a true sentence.

    Mine has a broader scope that can be applied to
    any pathological self-reference(Olcott 2004) in
    formal expressions and formalized natural language
    expressions.

    Tarstki's scope is wider, too, but the first order arithmetic of natural numbers is the most interesting part of the scope.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Oct 5 13:26:50 2025
    From Newsgroup: sci.logic

    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is >>>>>>>> true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.

    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning
    does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar >>> -a-a-a in the metalanguage, by forming in the language itself a sentence >>> -a-a-a x such that the sentence of the metalanguage which is correlated
    -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic >>>> semantics of a formal language of arithmetics do not permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct something like LP <-> ~True(LP). G||del then shows that that the expression that asserts its own unprovability is is not provable and therefore true. Tarski shows that if there is there is a formula that is true if its
    argument encodes a true sentence and false if its argument encodes a false statements (its value does not matter if the argument does not encode
    a sentence) then it is possible to encode a sentence that says "the truth formula returns false if given my encoding" and give it to the truth
    formula, which would then return the negation of the value it returns.
    As that would be a contradiction there cannot be a truth formula and
    therefore no definition truth.

    At least for some systems it is possible to have a truth predicate in
    a metatheory even if not in the system itself.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic,comp.ai.philosophy,sci.lang on Sun Oct 5 09:03:37 2025
    From Newsgroup: sci.logic

    On 10/5/2025 5:06 AM, Mikko wrote:
    On 2025-10-04 13:34:07 +0000, olcott said:

    On 10/4/2025 5:25 AM, Mikko wrote:
    On 2025-10-02 10:07:33 +0000, olcott said:

    On 10/2/2025 4:38 AM, Mikko wrote:
    On 2025-10-01 15:40:06 +0000, olcott said:

    On 10/1/2025 5:12 AM, Mikko wrote:
    On 2025-10-01 01:46:15 +0000, olcott said:

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said:

    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said: >>>>>>>>>>>>>>>>>>>> On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It >>>>>>>>>>>>>>>>>>>>> is a valid
    sentence in the first order language of Peano >>>>>>>>>>>>>>>>>>>>> arithmetic. That
    the value of an arithmetic expression in that >>>>>>>>>>>>>>>>>>>>> sentence evaluates
    to the G||del number of the sentence has no >>>>>>>>>>>>>>>>>>>>> arithmetic significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>>>>>>>>>> people stupidly ignore G||del's own words. >>>>>>>>>>>>>>>>>>>
    It is what G||del said and proved.

    The most important aspect of G||del's 1931 >>>>>>>>>>>>>>>>>>>> Incompleteness theorem
    are these plain English direct quotes of G||del from >>>>>>>>>>>>>>>>>>>> his paper:

    ...there is also a close relationship with the >>>>>>>>>>>>>>>>>>>> rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be >>>>>>>>>>>>>>>>>>>> used for a similar undecidability proof... >>>>>>>>>>>>>>>>>>>> ...We are therefore confronted with a proposition >>>>>>>>>>>>>>>>>>>> which asserts its own unprovability. 15 ... >>>>>>>>>>>>>>>>>>>> (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia >>>>>>>>>>>>>>>>>>>> Mathematica And Related Systems

    The most important aspect is the theorem itself: >>>>>>>>>>>>>>>>>>> every theory that
    has the symbols and axioms of the first order Peano >>>>>>>>>>>>>>>>>>> arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection

    It is important because people consider it important. >>>>>>>>>>>>>>>>
    Prior to Pythagoras there was a universal consensus >>>>>>>>>>>>>>>> that the Earth is flat.

    To think the Earth as flat is simpler and good enough for >>>>>>>>>>>>>>> many
    purposes. For a long time there was no need to think >>>>>>>>>>>>>>> about the
    shape of the Earth.

    The point is that not even a universal consensus equates >>>>>>>>>>>>>> to truth.

    No, but it is a significant aspect of culture. A question >>>>>>>>>>>>> of importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a >>>>>>>>>>>>>>>>> cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is >>>>>>>>>>>>>>>> screwed up.
    If you want to build a formal system that is not >>>>>>>>>>>>>>>> anchored in a
    screwed up idea than this is straight forward.

    That 2 + 3 = 5 has practical value even if the theory >>>>>>>>>>>>>>> around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply >>>>>>>>>>>>>>>> the truth preserving operation of semantic logical >>>>>>>>>>>>>>>> entailment
    to these basic facts.

    It is generally accepted that the set of axioms can be >>>>>>>>>>>>>>> infinite

    Not when we are representing the finite set of human >>>>>>>>>>>>>> general knowledge.

    Once again you try to deceive with a change of topic. There >>>>>>>>>>>>> is no
    need to prove the incompletenes of human general knowledge >>>>>>>>>>>>> as that
    already is obvious. But G||del's and Tarski's theorems are >>>>>>>>>>>>> about
    natural number arithmetic and its extensions so they need >>>>>>>>>>>>> to cover
    the possibility that there are infinitely many axioms. >>>>>>>>>>>>
    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox >>>>>>>>>>> has some
    formal similarity to the sentence Tarski constructs but is >>>>>>>>>>> not a part
    of the proof. Consequently anything said about the liar's >>>>>>>>>>> paracos is
    irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    And I prove my point in the paragraph that you skipped.

    Not relevant to Tarski's rerutation of your "Factually incorrect". >>>>>>
    He anchored his whole proof in that he
    needed an extra level of logic to do this:

    You need metalogic if you want to say anything about logic.

    X is any expression of language that is not
    a truth bearer. It is true that X is not true.

    You cannot say that in the plain language of logic. You need a
    metatheory that can express and infer about expressions and
    relate them to truth.

    I proved otherwise
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    You didn't prove anything. If you could you would post here the
    plain logic sentence that says what you said.

    It explains a correction to an aspect of the
    foundation of logic and it does this in plain
    English and a tiny bit of Prolog.

    It is not correct to use the word "correction" when the thing to
    be corrected is correct already.


    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    But Tarski proved about natural numbers that if there were a definition
    of a predicate in terms of a formula in the language of Peano arithmetic >>> that accepts all numbers that encode a true sentence and rejects all
    other numbers then that predicate would accept a number that encodes
    a false sentence or reject a number that encodes a true sentence.

    Mine has a broader scope that can be applied to
    any pathological self-reference(Olcott 2004) in
    formal expressions and formalized natural language
    expressions.

    Tarstki's scope is wider, too, but the first order arithmetic of natural numbers is the most interesting part of the scope.


    My scope is the entire body of human knowledge
    that can be expressed in language.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic,sci.logic,sci.lang on Sun Oct 5 09:09:37 2025
    From Newsgroup: sci.logic

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is >>>>>>>>> true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.

    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning
    does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar >>>> -a-a-a in the metalanguage, by forming in the language itself a sentence >>>> -a-a-a x such that the sentence of the metalanguage which is correlated >>>> -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the
    arithmetic
    semantics of a formal language of arithmetics do not permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct something like LP <-> ~True(LP). G||del then shows that that the expression that asserts its own unprovability is is not provable and therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    Tarski shows that if there is there is a formula that is true if its
    argument encodes a true sentence and false if its argument encodes a false statements (its value does not matter if the argument does not encode
    a sentence) then it is possible to encode a sentence that says "the truth formula returns false if given my encoding" and give it to the truth
    formula, which would then return the negation of the value it returns.
    As that would be a contradiction there cannot be a truth formula and therefore no definition truth.

    At least for some systems it is possible to have a truth predicate in
    a metatheory even if not in the system itself.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Mon Oct 6 15:27:06 2025
    From Newsgroup: sci.logic

    On 2025-10-05 14:03:37 +0000, olcott said:

    On 10/5/2025 5:06 AM, Mikko wrote:
    On 2025-10-04 13:34:07 +0000, olcott said:

    On 10/4/2025 5:25 AM, Mikko wrote:
    On 2025-10-02 10:07:33 +0000, olcott said:

    On 10/2/2025 4:38 AM, Mikko wrote:
    On 2025-10-01 15:40:06 +0000, olcott said:

    On 10/1/2025 5:12 AM, Mikko wrote:
    On 2025-10-01 01:46:15 +0000, olcott said:

    On 9/30/2025 7:48 AM, Mikko wrote:
    On 2025-09-29 12:21:25 +0000, olcott said:

    On 9/27/2025 5:05 AM, Mikko wrote:
    On 2025-09-26 01:08:45 +0000, olcott said:

    On 9/25/2025 2:15 AM, Mikko wrote:
    On 2025-09-24 14:27:00 +0000, olcott said:

    On 9/24/2025 2:12 AM, Mikko wrote:
    On 2025-09-23 16:04:38 +0000, olcott said:

    On 9/23/2025 4:21 AM, Mikko wrote:
    On 2025-09-23 00:56:19 +0000, olcott said: >>>>>>>>>>>>>>>>>>
    On 9/21/2025 4:22 AM, Mikko wrote:
    On 2025-09-20 14:57:20 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>> On 9/20/2025 4:31 AM, Mikko wrote:


    G||del's sentence is not really self-referential. It is a valid
    sentence in the first order language of Peano arithmetic. That
    the value of an arithmetic expression in that sentence evaluates
    to the G||del number of the sentence has no arithmetic significance.

    Yes that is the moronic received view yet these stupid >>>>>>>>>>>>>>>>>>>>> people stupidly ignore G||del's own words. >>>>>>>>>>>>>>>>>>>>
    It is what G||del said and proved.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    The most important aspect is the theorem itself: every theory that
    has the symbols and axioms of the first order Peano arithmetic is
    either incomplete or inconsistent.

    That never has been the important part.
    That has always been bullshit misdirection >>>>>>>>>>>>>>>>>>
    It is important because people consider it important. >>>>>>>>>>>>>>>>>
    Prior to Pythagoras there was a universal consensus >>>>>>>>>>>>>>>>> that the Earth is flat.

    To think the Earth as flat is simpler and good enough for many >>>>>>>>>>>>>>>> purposes. For a long time there was no need to think about the >>>>>>>>>>>>>>>> shape of the Earth.

    The point is that not even a universal consensus equates to truth.

    No, but it is a significant aspect of culture. A question of importance
    is not a matter of truth but a matter of opinion.


    Many poeple also
    find it useful to know that any attempt to construct a cmplete theory
    of arithemtic would be a waste of time.

    Yet only when the architecture of the formal system is screwed up.
    If you want to build a formal system that is not anchored in a
    screwed up idea than this is straight forward. >>>>>>>>>>>>>>>>
    That 2 + 3 = 5 has practical value even if the theory around it
    cannot be made complete.

    *Refuting G||del 1931 Incompleteness*
    You begin with a finite list of basic facts and only apply >>>>>>>>>>>>>>>>> the truth preserving operation of semantic logical entailment >>>>>>>>>>>>>>>>> to these basic facts.

    It is generally accepted that the set of axioms can be infinite

    Not when we are representing the finite set of human general knowledge.

    Once again you try to deceive with a change of topic. There is no
    need to prove the incompletenes of human general knowledge as that
    already is obvious. But G||del's and Tarski's theorems are about >>>>>>>>>>>>>> natural number arithmetic and its extensions so they need to cover
    the possibility that there are infinitely many axioms. >>>>>>>>>>>>>
    Tarski admits that he anchor his whole proof on the
    liar paradox and

    He doesn't "anchor" it to the liar paradix. The liar paradox has some
    formal similarity to the sentence Tarski constructs but is not a part
    of the proof. Consequently anything said about the liar's paracos is
    irrelevant to the correctness of the proof.

    Factually incorrect.

    False. Tarski confirms what I said:

    And I prove my point in the paragraph that you skipped.

    Not relevant to Tarski's rerutation of your "Factually incorrect". >>>>>>>
    He anchored his whole proof in that he
    needed an extra level of logic to do this:

    You need metalogic if you want to say anything about logic.

    X is any expression of language that is not
    a truth bearer. It is true that X is not true.

    You cannot say that in the plain language of logic. You need a
    metatheory that can express and infer about expressions and
    relate them to truth.

    I proved otherwise
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    You didn't prove anything. If you could you would post here the
    plain logic sentence that says what you said.

    It explains a correction to an aspect of the
    foundation of logic and it does this in plain
    English and a tiny bit of Prolog.

    It is not correct to use the word "correction" when the thing to
    be corrected is correct already.

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the
    first order Peano arithmetic is not a truth bearer? That you can't
    determine the truth value of some expression does not mean that ir
    has none. That you don't understand the proof does not mean that
    the proofs are not sound.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    But Tarski proved about natural numbers that if there were a definition >>>> of a predicate in terms of a formula in the language of Peano arithmetic >>>> that accepts all numbers that encode a true sentence and rejects all
    other numbers then that predicate would accept a number that encodes
    a false sentence or reject a number that encodes a true sentence.

    Mine has a broader scope that can be applied to
    any pathological self-reference(Olcott 2004) in
    formal expressions and formalized natural language
    expressions.

    Tarstki's scope is wider, too, but the first order arithmetic of natural
    numbers is the most interesting part of the scope.

    My scope is the entire body of human knowledge
    that can be expressed in language.

    Tarski's scope was only formal theories and their languages. Within that
    scope it is at least clear what constitutes a proof.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Mon Oct 6 15:36:32 2025
    From Newsgroup: sci.logic

    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is >>>>>>>>>> true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.

    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning
    does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar >>>>> -a-a-a in the metalanguage, by forming in the language itself a sentence >>>>> -a-a-a x such that the sentence of the metalanguage which is correlated >>>>> -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic >>>>>> semantics of a formal language of arithmetics do not permit a self- >>>>>> reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct
    something like LP <-> ~True(LP). G||del then shows that that the expression >> that asserts its own unprovability is is not provable and therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not
    the negation of any sentnece of that theory is true in some model of
    that theory. Therefore every sentence of every first order theory is
    a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true"
    is true and therefore a valid basis for a proof you cannot say anything
    about Tarski's proof but are stuck to straw men.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic,comp.ai.philosophy on Mon Oct 6 08:14:35 2025
    From Newsgroup: sci.logic

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:


    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the
    first order Peano arithmetic is not a truth bearer? That you can't
    determine the truth value of some expression does not mean that ir
    has none. That you don't understand the proof does not mean that
    the proofs are not sound.


    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    It turns out that the essence of these two papers is much
    simpler than that.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.


    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    But Tarski proved about natural numbers that if there were a
    definition
    of a predicate in terms of a formula in the language of Peano
    arithmetic
    that accepts all numbers that encode a true sentence and rejects all >>>>> other numbers then that predicate would accept a number that encodes >>>>> a false sentence or reject a number that encodes a true sentence.

    Mine has a broader scope that can be applied to
    any pathological self-reference(Olcott 2004) in
    formal expressions and formalized natural language
    expressions.

    Tarstki's scope is wider, too, but the first order arithmetic of natural >>> numbers is the most interesting part of the scope.

    My scope is the entire body of human knowledge
    that can be expressed in language.

    Tarski's scope was only formal theories and their languages. Within that scope it is at least clear what constitutes a proof.

    What good would that be?

    True(English, "Election fraud changed
    the outcome of the 2020 presidential election")==FALSE

    True(English, "Unmitigated climate change caused by humans
    will have increasing severe effects on global climate")==TRUE

    For either answer the system would be able to cite all of its
    sources and provide its fully specified complete and correct
    reasoning.

    True(English, "This sentence is not true")==INCORRECT
    True(English, "This sentence cannot be proven")==INCORRECT

    Getting from Generative AI to Trustworthy AI:
    What LLMs might learn from Cyc

    Doug Lenat
    doug@cyc.com
    Gary Marcus
    gary.marcus@nyu.edu
    July 31, 2023

    https://arxiv.org/ftp/arxiv/papers/2308/2308.04445.pdf
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic,comp.ai.philosophy,sci.math on Mon Oct 6 08:23:10 2025
    From Newsgroup: sci.logic

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or
    dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.

    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning
    does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar >>>>>> -a-a-a in the metalanguage, by forming in the language itself a sentence >>>>>> -a-a-a x such that the sentence of the metalanguage which is correlated >>>>>> -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the
    arithmetic
    semantics of a formal language of arithmetics do not permit a self- >>>>>>> reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct >>> something like LP <-> ~True(LP). G||del then shows that that the
    expression
    that asserts its own unprovability is is not provable and therefore
    true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not
    the negation of any sentnece of that theory is true in some model of
    that theory. Therefore every sentence of every first order theory is
    a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true"
    is true and therefore a valid basis for a proof you cannot say anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI* https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    https://monoskop.org/images/9/93/Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf


    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness. https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Oct 7 12:48:05 2025
    From Newsgroup: sci.logic

    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the
    first order Peano arithmetic is not a truth bearer? That you can't
    determine the truth value of some expression does not mean that ir
    has none. That you don't understand the proof does not mean that
    the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing.
    If a reliable automatic proof checker could confirm your proof
    that might mean something.

    But Tarski proved about natural numbers that if there were a definition >>>>>> of a predicate in terms of a formula in the language of Peano arithmetic >>>>>> that accepts all numbers that encode a true sentence and rejects all >>>>>> other numbers then that predicate would accept a number that encodes >>>>>> a false sentence or reject a number that encodes a true sentence.

    Mine has a broader scope that can be applied to
    any pathological self-reference(Olcott 2004) in
    formal expressions and formalized natural language
    expressions.

    Tarstki's scope is wider, too, but the first order arithmetic of natural >>>> numbers is the most interesting part of the scope.

    My scope is the entire body of human knowledge
    that can be expressed in language.

    Tarski's scope was only formal theories and their languages. Within that
    scope it is at least clear what constitutes a proof.

    What good would that be?

    At the time the problem of the determination of arithmetic truth
    was considered important. Mathematics has so much applications
    that it was felt necessary to have a firm foundation for it. A
    method to determine mathematial truth was therefore desidrable.
    The arithmetic of natural numbers is a simple theory and the
    most central one to much of mathematics, so it was a good starting
    point for the search of powerful methods. If such methods could be
    developed for natural numbers they might then be extensible to
    other parts of mathematics.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Tue Oct 7 12:52:43 2025
    From Newsgroup: sci.logic

    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is >>>>>>>>>>>> true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words.

    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning >>>>>> does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar
    -a-a-a in the metalanguage, by forming in the language itself a sentence
    -a-a-a x such that the sentence of the metalanguage which is correlated >>>>>>> -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic
    semantics of a formal language of arithmetics do not permit a self- >>>>>>>> reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct >>>> something like LP <-> ~True(LP). G||del then shows that that the expression
    that asserts its own unprovability is is not provable and therefore true. >>>
    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not
    the negation of any sentnece of that theory is true in some model of
    that theory. Therefore every sentence of every first order theory is
    a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true"
    is true and therefore a valid basis for a proof you cannot say anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI* https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ... ...14 Every epistemological antinomy can likewise be used for a similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    https://monoskop.org/images/9/93/Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf


    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness. https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    None of the above demonstrates any understanding of the fact that "The
    liar's paradox is not true" is true and therefore a valid basis for a
    proof. Consequently there is no reason to expect that you could say
    anything about Tarski's work instead of your straw man.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Oct 7 09:16:11 2025
    From Newsgroup: sci.logic

    On 10/7/2025 4:48 AM, Mikko wrote:
    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the
    first order Peano arithmetic is not a truth bearer? That you can't
    determine the truth value of some expression does not mean that ir
    has none. That you don't understand the proof does not mean that
    the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing.
    If a reliable automatic proof checker could confirm your proof
    that might mean something.


    The proof is entirely semantic.
    Claude AI verified that the meaning of my words
    proved my point. You could to if you looked at
    the dialogue.

    But Tarski proved about natural numbers that if there were a
    definition
    of a predicate in terms of a formula in the language of Peano
    arithmetic
    that accepts all numbers that encode a true sentence and rejects all >>>>>>> other numbers then that predicate would accept a number that encodes >>>>>>> a false sentence or reject a number that encodes a true sentence. >>>>>>
    Mine has a broader scope that can be applied to
    any pathological self-reference(Olcott 2004) in
    formal expressions and formalized natural language
    expressions.

    Tarstki's scope is wider, too, but the first order arithmetic of
    natural
    numbers is the most interesting part of the scope.

    My scope is the entire body of human knowledge
    that can be expressed in language.

    Tarski's scope was only formal theories and their languages. Within that >>> scope it is at least clear what constitutes a proof.

    What good would that be?


    True(Language, Expression) could be a reliable arbiter
    of truth providing all of the reasoning why we can know
    that a well crafted lie is not true.

    At the time the problem of the determination of arithmetic truth
    was considered important. Mathematics has so much applications
    that it was felt necessary to have a firm foundation for it. A
    method to determine mathematial truth was therefore desidrable.
    The arithmetic of natural numbers is a simple theory and the
    most central one to much of mathematics, so it was a good starting
    point for the search of powerful methods. If such methods could be
    developed for natural numbers they might then be extensible to
    other parts of mathematics.


    And he couldn't even get that right.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Tue Oct 7 09:19:09 2025
    From Newsgroup: sci.logic

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or
    dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words. >>>>>>>>>>
    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning >>>>>>> does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the >>>>>>>> liar
    -a-a-a in the metalanguage, by forming in the language itself a >>>>>>>> sentence
    -a-a-a x such that the sentence of the metalanguage which is
    correlated
    -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the >>>>>>>>> arithmetic
    semantics of a formal language of arithmetics do not permit a >>>>>>>>> self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they
    construct
    something like LP <-> ~True(LP). G||del then shows that that the
    expression
    that asserts its own unprovability is is not provable and therefore >>>>> true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not
    the negation of any sentnece of that theory is true in some model of
    that theory. Therefore every sentence of every first order theory is
    a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true"
    is true and therefore a valid basis for a proof you cannot say anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a
    similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its
    own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf

    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness.
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    None of the above demonstrates any understanding of the fact that "The
    liar's paradox is not true" is true and therefore a valid basis for a
    proof. Consequently there is no reason to expect that you could say
    anything about Tarski's work instead of your straw man.


    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    While you refrain from looking at this https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    You will continue to have views anchored in incorrect guesses.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Oct 8 13:52:16 2025
    From Newsgroup: sci.logic

    On 2025-09-29 12:27:50 +0000, olcott said:

    On 9/27/2025 5:12 AM, Mikko wrote:
    On 2025-09-26 15:28:52 +0000, olcott said:

    On 9/26/2025 2:48 AM, Mikko wrote:
    On 2025-09-26 01:19:50 +0000, olcott said:

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly >>>>>>>>>>>>>>>>> anchored his whole Undefinability proof in the semantic >>>>>>>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself. >>>>>>>>>>>>>
    In an infinitely recursive chain that you dishonestly >>>>>>>>>>>>> erased.

    No, that meaning can be found without considering any recursion. >>>>>>>>>>>
    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then >>>>>>>>>> it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true" >>>>>>>> is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable truth >>>>>> predicate then there is a proof of a false sentence that asserts its >>>>>> own unprovability, i.e., the arithmetic with a definable truth predicate >>>>>> is provably inconsistent.

    There is no true and unprovable.

    G||del proved that if a first order theory is incomplete it has models >>>> where some unprovable sentence is true and other models where the same >>>> sentence is false.

    That is only because he did not screen out sentences
    that are not truth bearers like: "What time is it (yes or no)?"
    "This sentence is not true", "This sentence cannot be proven".

    He didn't need to screen out anything. His proof covers all first order
    theories. In many theories your examples are unexpressible anyway, so
    there is no need to screen them out.

    Any sentence that is neither true nor false
    must be rejected from any system of logic.

    Whether a sentence is true or false or neither depends on semantics.
    In an uninterpreted formal theory a sentence has not meaning and
    therefore no truth value so cannot be relejcted for a lack of truth
    value. Every consistent first order theory has a model where all
    provable sentences are true and all other sentencese are either true
    or false so every sentence is a truth-bearer. But it is possible to
    use different semantics that does not assign a truth value to every
    sentence.

    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    At least in first order logic there isn't any.

    I just showed you have Tarski expressed one
    of these turds in his formal system.
    x ree True if and only if p

    If you mean the sentence "The Liar's paradox is not true" then
    that sentence is true and therefore is a truth-bearer. If you
    mean something else then you are only talking about your straw
    man.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Wed Oct 8 13:54:22 2025
    From Newsgroup: sci.logic

    On 2025-10-07 14:19:09 +0000, olcott said:

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words. >>>>>>>>>>>
    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning >>>>>>>> does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar
    -a-a-a in the metalanguage, by forming in the language itself a sentence
    -a-a-a x such that the sentence of the metalanguage which is correlated
    -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic
    semantics of a formal language of arithmetics do not permit a self- >>>>>>>>>> reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct >>>>>> something like LP <-> ~True(LP). G||del then shows that that the expression
    that asserts its own unprovability is is not provable and therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not
    the negation of any sentnece of that theory is true in some model of
    that theory. Therefore every sentence of every first order theory is
    a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true"
    is true and therefore a valid basis for a proof you cannot say anything >>>> about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ... >>> ...14 Every epistemological antinomy can likewise be used for a similar >>> undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own >>> unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf


    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness.
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    None of the above demonstrates any understanding of the fact that "The
    liar's paradox is not true" is true and therefore a valid basis for a
    proof. Consequently there is no reason to expect that you could say
    anything about Tarski's work instead of your straw man.

    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    A question is never true and should not be even mentioned in a
    discussion about truth values.

    Anyway, nice to see that you don't disagree.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Oct 8 22:10:56 2025
    From Newsgroup: sci.logic

    On 10/8/2025 5:52 AM, Mikko wrote:
    On 2025-09-29 12:27:50 +0000, olcott said:

    On 9/27/2025 5:12 AM, Mikko wrote:
    On 2025-09-26 15:28:52 +0000, olcott said:

    On 9/26/2025 2:48 AM, Mikko wrote:
    On 2025-09-26 01:19:50 +0000, olcott said:

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said:


    Tarski an otherwise profoundly brilliant man stupidly >>>>>>>>>>>>>>>>>> anchored his whole Undefinability proof in the semantic >>>>>>>>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not >>>>>>>>>>>>>>>>> semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself. >>>>>>>>>>>>>>
    In an infinitely recursive chain that you dishonestly >>>>>>>>>>>>>> erased.

    No, that meaning can be found without considering any >>>>>>>>>>>>> recursion.

    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth >>>>>>>>>>> value then
    it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not >>>>>>>>> true"
    is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable >>>>>>> truth
    predicate then there is a proof of a false sentence that asserts its >>>>>>> own unprovability, i.e., the arithmetic with a definable truth
    predicate
    is provably inconsistent.

    There is no true and unprovable.

    G||del proved that if a first order theory is incomplete it has models >>>>> where some unprovable sentence is true and other models where the same >>>>> sentence is false.

    That is only because he did not screen out sentences
    that are not truth bearers like: "What time is it (yes or no)?"
    "This sentence is not true", "This sentence cannot be proven".

    He didn't need to screen out anything. His proof covers all first order
    theories. In many theories your examples are unexpressible anyway, so
    there is no need to screen them out.

    Any sentence that is neither true nor false
    must be rejected from any system of logic.

    Whether a sentence is true or false or neither depends on semantics.

    Yes.

    In an uninterpreted formal theory a sentence has not meaning and
    therefore no truth value so cannot be relejcted for a lack of truth
    value.

    I have posited that it has always been a huge
    mistake that semantics was divided away from
    the syntax of every formal logic system since
    the syllogism. It is the root cause of the
    divergence of logic from correct reasoning.

    Every consistent first order theory has a model where all
    provable sentences are true and all other sentencese are either true
    or false so every sentence is a truth-bearer. But it is possible to
    use different semantics that does not assign a truth value to every
    sentence.

    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    At least in first order logic there isn't any.


    So G||del requires more than FOL?
    From what I recall PA has one axiom that is SOL.

    I just showed you have Tarski expressed one
    of these turds in his formal system.
    x ree True if and only if p

    If you mean the sentence "The Liar's paradox is not true" then

    No that sentence seems to be Tarski's way
    of saying: ?- LP = not(true(LP)).

    that sentence is true and therefore is a truth-bearer. If you
    mean something else then you are only talking about your straw
    man.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Wed Oct 8 22:13:41 2025
    From Newsgroup: sci.logic

    On 10/8/2025 5:54 AM, Mikko wrote:
    On 2025-10-07 14:19:09 +0000, olcott said:

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or >>>>>>>>>>>>>>> dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words. >>>>>>>>>>>>
    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning >>>>>>>>> does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of >>>>>>>>>> the liar
    -a-a-a in the metalanguage, by forming in the language itself a >>>>>>>>>> sentence
    -a-a-a x such that the sentence of the metalanguage which is >>>>>>>>>> correlated
    -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the >>>>>>>>>>> arithmetic
    semantics of a formal language of arithmetics do not permit a >>>>>>>>>>> self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they
    construct
    something like LP <-> ~True(LP). G||del then shows that that the >>>>>>> expression
    that asserts its own unprovability is is not provable and
    therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not >>>>> the negation of any sentnece of that theory is true in some model of >>>>> that theory. Therefore every sentence of every first order theory is >>>>> a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true" >>>>> is true and therefore a valid basis for a proof you cannot say
    anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ... >>>> ...14 Every epistemological antinomy can likewise be used for a
    similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its
    own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf

    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness.
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    None of the above demonstrates any understanding of the fact that "The
    liar's paradox is not true" is true and therefore a valid basis for a
    proof. Consequently there is no reason to expect that you could say
    anything about Tarski's work instead of your straw man.

    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    A question is never true and should not be even mentioned in a
    discussion about truth values.

    Anyway, nice to see that you don't disagree.


    Yet Tarski anchored his whole proof in this:
    ?- LP = not(true(LP)).

    When it is rejected as not a truth-bearer
    as Prolog does then Claude AI agree the
    basis of his whole proof ceases to exist.

    That may only be a rough paraphrase of what Clause AI said. https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Oct 9 13:51:16 2025
    From Newsgroup: sci.logic

    On 2025-10-07 14:16:11 +0000, olcott said:

    On 10/7/2025 4:48 AM, Mikko wrote:
    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the
    first order Peano arithmetic is not a truth bearer? That you can't
    determine the truth value of some expression does not mean that ir
    has none. That you don't understand the proof does not mean that
    the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing.
    If a reliable automatic proof checker could confirm your proof
    that might mean something.

    The proof is entirely semantic.
    Claude AI verified that the meaning of my words
    proved my point. You could to if you looked at
    the dialogue.

    As I already said, that does not mean anything.

    But Tarski proved about natural numbers that if there were a definition
    of a predicate in terms of a formula in the language of Peano arithmetic
    that accepts all numbers that encode a true sentence and rejects all >>>>>>>> other numbers then that predicate would accept a number that encodes >>>>>>>> a false sentence or reject a number that encodes a true sentence. >>>>>>>
    Mine has a broader scope that can be applied to
    any pathological self-reference(Olcott 2004) in
    formal expressions and formalized natural language
    expressions.

    Tarstki's scope is wider, too, but the first order arithmetic of natural >>>>>> numbers is the most interesting part of the scope.

    My scope is the entire body of human knowledge
    that can be expressed in language.

    Tarski's scope was only formal theories and their languages. Within that >>>> scope it is at least clear what constitutes a proof.

    What good would that be?

    True(Language, Expression) could be a reliable arbiter
    of truth providing all of the reasoning why we can know
    that a well crafted lie is not true.

    What does not exist is not useful for practical purposes.

    At the time the problem of the determination of arithmetic truth
    was considered important. Mathematics has so much applications
    that it was felt necessary to have a firm foundation for it. A
    method to determine mathematial truth was therefore desidrable.
    The arithmetic of natural numbers is a simple theory and the
    most central one to much of mathematics, so it was a good starting
    point for the search of powerful methods. If such methods could be
    developed for natural numbers they might then be extensible to
    other parts of mathematics.

    And he couldn't even get that right.

    You have no evidence about that. What statement he made about these
    topics that you thik is incorrect?
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Oct 9 13:55:43 2025
    From Newsgroup: sci.logic

    On 2025-10-09 03:13:41 +0000, olcott said:

    On 10/8/2025 5:54 AM, Mikko wrote:
    On 2025-10-07 14:19:09 +0000, olcott said:

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false
    must be rejected from any system of logic.
    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words. >>>>>>>>>>>>>
    The syntax of formal logical languages allows
    some expressions to be created having pathological
    self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning >>>>>>>>>> does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar
    -a-a-a in the metalanguage, by forming in the language itself a sentence
    -a-a-a x such that the sentence of the metalanguage which is correlated
    -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic
    semantics of a formal language of arithmetics do not permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct
    something like LP <-> ~True(LP). G||del then shows that that the expression
    that asserts its own unprovability is is not provable and therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not >>>>>> the negation of any sentnece of that theory is true in some model of >>>>>> that theory. Therefore every sentence of every first order theory is >>>>>> a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true" >>>>>> is true and therefore a valid basis for a proof you cannot say anything >>>>>> about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ... >>>>> ...14 Every epistemological antinomy can likewise be used for a similar >>>>> undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own >>>>> unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf


    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness.
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    None of the above demonstrates any understanding of the fact that "The >>>> liar's paradox is not true" is true and therefore a valid basis for a
    proof. Consequently there is no reason to expect that you could say
    anything about Tarski's work instead of your straw man.

    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    A question is never true and should not be even mentioned in a
    discussion about truth values.

    Anyway, nice to see that you don't disagree.

    Yet Tarski anchored his whole proof in this:
    ?- LP = not(true(LP)).

    You anchor your counter-proof on this:
    ?- LP = not(true(LP)).

    But an anchor is not a proof. Tarski had a complete proof. You have not.

    When it is rejected as not a truth-bearer
    as Prolog does then Claude AI agree the
    basis of his whole proof ceases to exist.

    When it is reject mothing is left of your proof.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Thu Oct 9 14:12:01 2025
    From Newsgroup: sci.logic

    On 2025-10-09 03:10:56 +0000, olcott said:

    On 10/8/2025 5:52 AM, Mikko wrote:
    On 2025-09-29 12:27:50 +0000, olcott said:

    On 9/27/2025 5:12 AM, Mikko wrote:
    On 2025-09-26 15:28:52 +0000, olcott said:

    On 9/26/2025 2:48 AM, Mikko wrote:
    On 2025-09-26 01:19:50 +0000, olcott said:

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said: >>>>>>>>>>>>>>>>>>

    Tarski an otherwise profoundly brilliant man stupidly >>>>>>>>>>>>>>>>>>> anchored his whole Undefinability proof in the semantic >>>>>>>>>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself. >>>>>>>>>>>>>>>
    In an infinitely recursive chain that you dishonestly >>>>>>>>>>>>>>> erased.

    No, that meaning can be found without considering any recursion. >>>>>>>>>>>>>
    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then
    it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not true" >>>>>>>>>> is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable truth
    predicate then there is a proof of a false sentence that asserts its >>>>>>>> own unprovability, i.e., the arithmetic with a definable truth predicate
    is provably inconsistent.

    There is no true and unprovable.

    G||del proved that if a first order theory is incomplete it has models >>>>>> where some unprovable sentence is true and other models where the same >>>>>> sentence is false.

    That is only because he did not screen out sentences
    that are not truth bearers like: "What time is it (yes or no)?"
    "This sentence is not true", "This sentence cannot be proven".

    He didn't need to screen out anything. His proof covers all first order >>>> theories. In many theories your examples are unexpressible anyway, so
    there is no need to screen them out.

    Any sentence that is neither true nor false
    must be rejected from any system of logic.

    Whether a sentence is true or false or neither depends on semantics.

    Yes.

    In an uninterpreted formal theory a sentence has not meaning and
    therefore no truth value so cannot be relejcted for a lack of truth
    value.

    I have posited that it has always been a huge
    mistake that semantics was divided away from
    the syntax of every formal logic system since
    the syllogism. It is the root cause of the
    divergence of logic from correct reasoning.

    Logic has been shown to be useful. Your "correct reasoning" has not been. Therefore there is a good reason to believe that the separation of the
    meaning from the form was a good idea.

    Every consistent first order theory has a model where all
    provable sentences are true and all other sentencese are either true
    or false so every sentence is a truth-bearer. But it is possible to
    use different semantics that does not assign a truth value to every
    sentence.

    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    At least in first order logic there isn't any.

    So G||del requires more than FOL?

    G||del did require a metasystem that can relate expressions and
    sequences of expressions of first order logic to numbers. That
    can be done in the first order. The proof is covers all extenisions
    of the first order theory of the first order Peano artihmetic.
    That covers all orders.

    From what I recall PA has one axiom that is SOL.

    Peano's original presentation had. The first order theory needs
    an axiom rule for infinitely many axioms. In addition it needs
    axioms that define addition and multiplication, which could
    be defined recursively in a system that supports recursive
    definitions.

    I just showed you have Tarski expressed one
    of these turds in his formal system.
    x ree True if and only if p

    If you mean the sentence "The Liar's paradox is not true" then

    No that sentence seems to be Tarski's way
    of saying: ?- LP = not(true(LP)).

    Anyway, you cannot reject anything that has been proven unless
    you reject the idea of analytic truth.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Oct 9 08:18:28 2025
    From Newsgroup: sci.logic

    On 10/9/2025 5:51 AM, Mikko wrote:
    On 2025-10-07 14:16:11 +0000, olcott said:

    On 10/7/2025 4:48 AM, Mikko wrote:
    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the
    first order Peano arithmetic is not a truth bearer? That you can't
    determine the truth value of some expression does not mean that ir
    has none. That you don't understand the proof does not mean that
    the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing.
    If a reliable automatic proof checker could confirm your proof
    that might mean something.

    The proof is entirely semantic.
    Claude AI verified that the meaning of my words
    proved my point. You could to if you looked at
    the dialogue.

    As I already said, that does not mean anything.


    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    The gist of it is that when the Liar Paradox
    is first rejected as not a truth bearer then
    Tarski's whole proof loses its entire basis.

    Claude AI summed up the gist of each view
    of the Liar Paradox from all of the papers
    written on it.

    It turn out that one of my best proposals
    was already written by Saul Kripke

    Outline of a Theory of Truth
    Saul Kripke
    The Journal of Philosophy, Vol. 72, No. 19,
    Seventy-Second Annual Meeting American
    Philosophical Association, Eastern Division.
    (Nov. 6, 1975), pp. 690-716.

    https://files.commons.gc.cuny.edu/wp-content/blogs.dir/1358/files/2019/04/Outline-of-a-Theory-of-Truth.pdf

    But Tarski proved about natural numbers that if there were a >>>>>>>>> definition
    of a predicate in terms of a formula in the language of Peano >>>>>>>>> arithmetic
    that accepts all numbers that encode a true sentence and
    rejects all
    other numbers then that predicate would accept a number that >>>>>>>>> encodes
    a false sentence or reject a number that encodes a true sentence. >>>>>>>>
    Mine has a broader scope that can be applied to
    any pathological self-reference(Olcott 2004) in
    formal expressions and formalized natural language
    expressions.

    Tarstki's scope is wider, too, but the first order arithmetic of >>>>>>> natural
    numbers is the most interesting part of the scope.

    My scope is the entire body of human knowledge
    that can be expressed in language.

    Tarski's scope was only formal theories and their languages. Within >>>>> that
    scope it is at least clear what constitutes a proof.

    What good would that be?

    True(Language, Expression) could be a reliable arbiter
    of truth providing all of the reasoning why we can know
    that a well crafted lie is not true.

    What does not exist is not useful for practical purposes.


    LLM systems can already do this fairly well.

    *This would convert them from probabilistic to axiomatic*

    Getting from Generative AI to Trustworthy AI:
    What LLMs might learn from Cyc
    Doug Lenat, Gary Marcus
    https://arxiv.org/abs/2308.04445

    At the time the problem of the determination of arithmetic truth
    was considered important. Mathematics has so much applications
    that it was felt necessary to have a firm foundation for it. A
    method to determine mathematial truth was therefore desidrable.
    The arithmetic of natural numbers is a simple theory and the
    most central one to much of mathematics, so it was a good starting
    point for the search of powerful methods. If such methods could be
    developed for natural numbers they might then be extensible to
    other parts of mathematics.

    And he couldn't even get that right.

    You have no evidence about that. What statement he made about these
    topics that you thik is incorrect?


    G||del's 1931 Incompleteness theorem is a ruse
    that depends on self-contradiction.

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:

    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And
    Related Systems

    https://monoskop.org/images/9/93/Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Oct 9 08:21:15 2025
    From Newsgroup: sci.logic

    On 10/9/2025 5:55 AM, Mikko wrote:
    On 2025-10-09 03:13:41 +0000, olcott said:

    On 10/8/2025 5:54 AM, Mikko wrote:
    On 2025-10-07 14:19:09 +0000, olcott said:

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said:

    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false >>>>>>>>>>>>>>>>>> must be rejected from any system of logic. >>>>>>>>>>>>>>>>>> Non-truth bearers in logic systems are like >>>>>>>>>>>>>>>>>> turds in birthday cakes.

    Every sentence of logic that is not tautology or >>>>>>>>>>>>>>>>> dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words. >>>>>>>>>>>>>>
    The syntax of formal logical languages allows
    some expressions to be created having pathological >>>>>>>>>>>>>> self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without >>>>>>>>>>> meaning
    does not refer.


    Self-reference can be detected in a string with a name.
    Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of >>>>>>>>>>>> the liar
    -a-a-a in the metalanguage, by forming in the language itself a >>>>>>>>>>>> sentence
    -a-a-a x such that the sentence of the metalanguage which is >>>>>>>>>>>> correlated
    -a-a-a with x asserts that x is not a true sentence.
    -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x
    https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. >>>>>>>>>>>>> the arithmetic
    semantics of a formal language of arithmetics do not permit >>>>>>>>>>>>> a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they >>>>>>>>> construct
    something like LP <-> ~True(LP). G||del then shows that that the >>>>>>>>> expression
    that asserts its own unprovability is is not provable and
    therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not >>>>>>> the negation of any sentnece of that theory is true in some model of >>>>>>> that theory. Therefore every sentence of every first order theory is >>>>>>> a truth-bearer.

    As long as you don't understand that "The liar's paradox is not >>>>>>> true"
    is true and therefore a valid basis for a proof you cannot say
    anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    The most important aspect of G||del's 1931 Incompleteness theorem
    are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a
    similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts
    its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And >>>>>> Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf

    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness.
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    None of the above demonstrates any understanding of the fact that "The >>>>> liar's paradox is not true" is true and therefore a valid basis for a >>>>> proof. Consequently there is no reason to expect that you could say
    anything about Tarski's work instead of your straw man.

    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    A question is never true and should not be even mentioned in a
    discussion about truth values.

    Anyway, nice to see that you don't disagree.

    Yet Tarski anchored his whole proof in this:
    ?- LP = not(true(LP)).

    You anchor your counter-proof on this:
    ?- LP = not(true(LP)).

    But an anchor is not a proof. Tarski had a complete proof. You have not.


    When we toss out his whole basis his proof
    utterly fails.

    When it is rejected as not a truth-bearer
    as Prolog does then Claude AI agree the
    basis of his whole proof ceases to exist.

    When it is reject mothing is left of your proof.


    Boolean True(English, Expression x) is left.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Thu Oct 9 08:25:56 2025
    From Newsgroup: sci.logic

    On 10/9/2025 6:12 AM, Mikko wrote:
    On 2025-10-09 03:10:56 +0000, olcott said:

    On 10/8/2025 5:52 AM, Mikko wrote:
    On 2025-09-29 12:27:50 +0000, olcott said:

    On 9/27/2025 5:12 AM, Mikko wrote:
    On 2025-09-26 15:28:52 +0000, olcott said:

    On 9/26/2025 2:48 AM, Mikko wrote:
    On 2025-09-26 01:19:50 +0000, olcott said:

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said:

    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said: >>>>>>>>>>>>>>>>>>>

    Tarski an otherwise profoundly brilliant man stupidly >>>>>>>>>>>>>>>>>>>> anchored his whole Undefinability proof in the semantic >>>>>>>>>>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not >>>>>>>>>>>>>>>>>>> semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself. >>>>>>>>>>>>>>>>
    In an infinitely recursive chain that you dishonestly >>>>>>>>>>>>>>>> erased.

    No, that meaning can be found without considering any >>>>>>>>>>>>>>> recursion.

    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth >>>>>>>>>>>>> value then
    it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof.

    The sentence "The sentence 'This sentence is not true' is not >>>>>>>>>>> true"
    is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a
    definable truth
    predicate then there is a proof of a false sentence that
    asserts its
    own unprovability, i.e., the arithmetic with a definable truth >>>>>>>>> predicate
    is provably inconsistent.

    There is no true and unprovable.

    G||del proved that if a first order theory is incomplete it has >>>>>>> models
    where some unprovable sentence is true and other models where the >>>>>>> same
    sentence is false.

    That is only because he did not screen out sentences
    that are not truth bearers like: "What time is it (yes or no)?"
    "This sentence is not true", "This sentence cannot be proven".

    He didn't need to screen out anything. His proof covers all first
    order
    theories. In many theories your examples are unexpressible anyway, so >>>>> there is no need to screen them out.

    Any sentence that is neither true nor false
    must be rejected from any system of logic.

    Whether a sentence is true or false or neither depends on semantics.

    Yes.

    In an uninterpreted formal theory a sentence has not meaning and
    therefore no truth value so cannot be relejcted for a lack of truth
    value.

    I have posited that it has always been a huge
    mistake that semantics was divided away from
    the syntax of every formal logic system since
    the syllogism. It is the root cause of the
    divergence of logic from correct reasoning.

    Logic has been shown to be useful. Your "correct reasoning" has not been.

    Because no one knows about it.

    Therefore there is a good reason to believe that the separation of the meaning from the form was a good idea.


    There are all kinds of errors that are simply
    invisible when semantics and rules of inference
    are separated. Kaz was the first person that
    had the correct view of the Principe of Explosion.

    Every consistent first order theory has a model where all
    provable sentences are true and all other sentencese are either true
    or false so every sentence is a truth-bearer. But it is possible to
    use different semantics that does not assign a truth value to every
    sentence.

    Non-truth bearers in logic systems are like
    turds in birthday cakes.

    At least in first order logic there isn't any.

    So G||del requires more than FOL?

    G||del did require a metasystem that can relate expressions and
    sequences of expressions of first order logic to numbers. That
    can be done in the first order. The proof is covers all extenisions
    of the first order theory of the first order Peano artihmetic.
    That covers all orders.

    -aFrom what I recall PA has one axiom that is SOL.

    Peano's original presentation had. The first order theory needs
    an axiom rule for infinitely many axioms. In addition it needs
    axioms that define addition and multiplication, which could
    be defined recursively in a system that supports recursive
    definitions.


    I always knew that.

    I just showed you have Tarski expressed one
    of these turds in his formal system.
    x ree True if and only if p

    If you mean the sentence "The Liar's paradox is not true" then

    No that sentence seems to be Tarski's way
    of saying: ?- LP = not(true(LP)).

    Anyway, you cannot reject anything that has been proven unless
    you reject the idea of analytic truth.


    Every form of "this sentence is not true"
    must be rejected from any formal system of truth.
    Its kind of nuts that this has not been done
    after 2000 years of knowing about it.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Oct 10 11:46:27 2025
    From Newsgroup: sci.logic

    On 2025-10-09 13:18:28 +0000, olcott said:

    On 10/9/2025 5:51 AM, Mikko wrote:
    On 2025-10-07 14:16:11 +0000, olcott said:

    On 10/7/2025 4:48 AM, Mikko wrote:
    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the
    first order Peano arithmetic is not a truth bearer? That you can't >>>>>> determine the truth value of some expression does not mean that ir >>>>>> has none. That you don't understand the proof does not mean that
    the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing.
    If a reliable automatic proof checker could confirm your proof
    that might mean something.

    The proof is entirely semantic.
    Claude AI verified that the meaning of my words
    proved my point. You could to if you looked at
    the dialogue.

    As I already said, that does not mean anything.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    The gist of it is that when the Liar Paradox
    is first rejected as not a truth bearer then
    Tarski's whole proof loses its entire basis.

    No, it does not. Tarski's proof is based on the ordinary logic and
    Peano arithmetic. Therefore it and its conclusion are parts of the
    analytic knowledge.

    However, the Liar's paradox is basis of your counter argument, which
    therefore loses its basis if the Liar's paradox is rejected.

    Claude AI summed up the gist of each view
    of the Liar Paradox from all of the papers
    written on it.

    It turn out that one of my best proposals
    was already written by Saul Kripke

    Outline of a Theory of Truth
    Saul Kripke
    The Journal of Philosophy, Vol. 72, No. 19,
    Seventy-Second Annual Meeting American
    Philosophical Association, Eastern Division.
    (Nov. 6, 1975), pp. 690-716.

    https://files.commons.gc.cuny.edu/wp-content/blogs.dir/1358/files/2019/04/Outline-of-a-Theory-of-Truth.pdf


    I don't think you mean this "important lesson: it would be fruitless to
    look for an intrinsic criterion that will enable us to sieve out -- as meaningless, or ill-formed -- those sentences which lead to paradox.

    This looks more relevant: "G||del put the issue of the legitimacy of self-referential sentences beyond doubt; he showed that they are as incontestably legitimate as arithmetic itself."
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Oct 10 11:48:40 2025
    From Newsgroup: sci.logic

    On 2025-10-09 13:21:15 +0000, olcott said:

    On 10/9/2025 5:55 AM, Mikko wrote:
    On 2025-10-09 03:13:41 +0000, olcott said:

    On 10/8/2025 5:54 AM, Mikko wrote:
    On 2025-10-07 14:19:09 +0000, olcott said:

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said: >>>>>>>>>>>>>>>>>>
    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false >>>>>>>>>>>>>>>>>>> must be rejected from any system of logic. >>>>>>>>>>>>>>>>>>> Non-truth bearers in logic systems are like >>>>>>>>>>>>>>>>>>> turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others.

    A mere false assumption

    No, it is true on the basis of the meanings of the words. >>>>>>>>>>>>>>>
    The syntax of formal logical languages allows
    some expressions to be created having pathological >>>>>>>>>>>>>>> self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning >>>>>>>>>>>> does not refer.


    Self-reference can be detected in a string with a name. >>>>>>>>>>>>> Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar
    -a-a-a in the metalanguage, by forming in the language itself a sentence
    -a-a-a x such that the sentence of the metalanguage which is correlated
    -a-a-a with x asserts that x is not a true sentence. >>>>>>>>>>>>> -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x >>>>>>>>>>>>> https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic
    semantics of a formal language of arithmetics do not permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct
    something like LP <-> ~True(LP). G||del then shows that that the expression
    that asserts its own unprovability is is not provable and therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not >>>>>>>> the negation of any sentnece of that theory is true in some model of >>>>>>>> that theory. Therefore every sentence of every first order theory is >>>>>>>> a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true" >>>>>>>> is true and therefore a valid basis for a proof you cannot say anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>> are these plain English direct quotes of G||del from his paper:
    ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And >>>>>>> Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf


    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness.
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    None of the above demonstrates any understanding of the fact that "The >>>>>> liar's paradox is not true" is true and therefore a valid basis for a >>>>>> proof. Consequently there is no reason to expect that you could say >>>>>> anything about Tarski's work instead of your straw man.

    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    A question is never true and should not be even mentioned in a
    discussion about truth values.

    Anyway, nice to see that you don't disagree.

    Yet Tarski anchored his whole proof in this:
    ?- LP = not(true(LP)).

    You anchor your counter-proof on this:
    ?- LP = not(true(LP)).

    But an anchor is not a proof. Tarski had a complete proof. You have not.

    When we toss out his whole basis his proof
    utterly fails.

    When you toss out "The liar paradox is not true" the liar paraxod
    remains not ture and the fact still is a valid basis for proof.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Fri Oct 10 11:58:49 2025
    From Newsgroup: sci.logic

    On 2025-10-09 13:25:56 +0000, olcott said:

    On 10/9/2025 6:12 AM, Mikko wrote:
    On 2025-10-09 03:10:56 +0000, olcott said:

    On 10/8/2025 5:52 AM, Mikko wrote:
    On 2025-09-29 12:27:50 +0000, olcott said:

    On 9/27/2025 5:12 AM, Mikko wrote:
    On 2025-09-26 15:28:52 +0000, olcott said:

    On 9/26/2025 2:48 AM, Mikko wrote:
    On 2025-09-26 01:19:50 +0000, olcott said:

    On 9/25/2025 2:34 AM, Mikko wrote:
    On 2025-09-24 14:36:46 +0000, olcott said:

    On 9/24/2025 2:19 AM, Mikko wrote:
    On 2025-09-23 15:39:53 +0000, olcott said:

    On 9/23/2025 4:29 AM, Mikko wrote:
    On 2025-09-23 00:59:54 +0000, olcott said:

    On 9/21/2025 4:26 AM, Mikko wrote:
    On 2025-09-20 14:58:33 +0000, olcott said:

    On 9/19/2025 4:22 AM, Mikko wrote:
    On 2025-09-18 14:47:10 +0000, olcott said: >>>>>>>>>>>>>>>>>>
    On 9/18/2025 4:26 AM, Mikko wrote:
    On 2025-09-17 14:53:58 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>

    Tarski an otherwise profoundly brilliant man stupidly >>>>>>>>>>>>>>>>>>>>> anchored his whole Undefinability proof in the semantic >>>>>>>>>>>>>>>>>>>>> gibberish of the Liar Paradox.

    The statement "Liar's paradox is not true" is not semantic gibberish.

    This sentence is not true.
    What it is not true about?

    The sentence claims that it is not true about itself. >>>>>>>>>>>>>>>>>
    In an infinitely recursive chain that you dishonestly >>>>>>>>>>>>>>>>> erased.

    No, that meaning can be found without considering any recursion.

    The meaning is that it is not a truth bearer
    thus has no truth value.

    If the sentence "This sentence is not true" has no truth value then
    it is not true.

    And it is not false, thus must be rejected
    as not a member of any formal logic system
    thus cannot form a basis for any Undefinability proof. >>>>>>>>>>>>
    The sentence "The sentence 'This sentence is not true' is not true"
    is true and can be used as an element of a proof.

    Yes and likewise with this:
    "The sentence 'What time is it?' is not true".

    Thus in neither case does this prevent a Truth
    predicate from being defined at the same logic level.

    Not in any obvious way but turns out that if there is a definable truth
    predicate then there is a proof of a false sentence that asserts its >>>>>>>>>> own unprovability, i.e., the arithmetic with a definable truth predicate
    is provably inconsistent.

    There is no true and unprovable.

    G||del proved that if a first order theory is incomplete it has models >>>>>>>> where some unprovable sentence is true and other models where the same >>>>>>>> sentence is false.

    That is only because he did not screen out sentences
    that are not truth bearers like: "What time is it (yes or no)?"
    "This sentence is not true", "This sentence cannot be proven".

    He didn't need to screen out anything. His proof covers all first order >>>>>> theories. In many theories your examples are unexpressible anyway, so >>>>>> there is no need to screen them out.

    Any sentence that is neither true nor false
    must be rejected from any system of logic.

    Whether a sentence is true or false or neither depends on semantics.

    Yes.

    In an uninterpreted formal theory a sentence has not meaning and
    therefore no truth value so cannot be relejcted for a lack of truth
    value.

    I have posited that it has always been a huge
    mistake that semantics was divided away from
    the syntax of every formal logic system since
    the syllogism. It is the root cause of the
    divergence of logic from correct reasoning.

    Logic has been shown to be useful. Your "correct reasoning" has not been.

    Because no one knows about it.

    Much about it has been known for as long time as anyone can remember.
    Instances of "correct reasoning" and "incorrect reasoning" have been
    identified and many these identifications have been justified. But it
    is true that what you call "correct reasoning" is different from what
    others have called so and is indeed not known or asked about.

    Therefore there is a good reason to believe that the separation of the
    meaning from the form was a good idea.

    There are all kinds of errors that are simply
    invisible when semantics and rules of inference
    are separated.

    There are errors that are invisible until someone sees them. In particular, people tend to be blind to their own errors. Therefore it is useful that
    proofs can be checked without special knowledge.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Oct 10 09:38:17 2025
    From Newsgroup: sci.logic

    On 10/10/2025 3:46 AM, Mikko wrote:
    On 2025-10-09 13:18:28 +0000, olcott said:

    On 10/9/2025 5:51 AM, Mikko wrote:
    On 2025-10-07 14:16:11 +0000, olcott said:

    On 10/7/2025 4:48 AM, Mikko wrote:
    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the >>>>>>> first order Peano arithmetic is not a truth bearer? That you can't >>>>>>> determine the truth value of some expression does not mean that ir >>>>>>> has none. That you don't understand the proof does not mean that >>>>>>> the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing.
    If a reliable automatic proof checker could confirm your proof
    that might mean something.

    The proof is entirely semantic.
    Claude AI verified that the meaning of my words
    proved my point. You could to if you looked at
    the dialogue.

    As I already said, that does not mean anything.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    The gist of it is that when the Liar Paradox
    is first rejected as not a truth bearer then
    Tarski's whole proof loses its entire basis.

    No, it does not. Tarski's proof is based on the ordinary logic and
    Peano arithmetic. Therefore it and its conclusion are parts of the
    analytic knowledge.

    However, the Liar's paradox is basis of your counter argument, which therefore loses its basis if the Liar's paradox is rejected.


    When the Liar Paradox is tossed out Tarski loses the
    first line and third of his proof. This causes his
    whole proof to fail to reach its conclusion.

    Tarski's Liar Paradox from page 248
    It would then be possible to reconstruct the antinomy of the liar
    in the metalanguage, by forming in the language itself a sentence
    x such that the sentence of the metalanguage which is correlated
    with x asserts that x is not a true sentence.
    https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x https://liarparadox.org/Tarski_275_276.pdf

    adapted to become this
    x ree Pr if and only if p // line 1 of the proof

    Here is the Tarski Undefinability Theorem proof
    (1) x ree Provable if and only if p // assumption (see above)
    (2) x ree True if and only if p // Tarski's convention T
    (3) x ree Provable if and only if x ree True. // (1) and (2) combined
    (4) either x ree True or x|a ree True; // axiom: ~True(x) re? ~True(~x) (5) if x ree Provable, then x ree True; // axiom: Provable(x) raA True(x)
    (6) if x|a ree Provable, then x|a ree True; // axiom: Provable(~x) raA True(~x)
    (7) x ree True
    (8) x ree Provable
    (9) x|a ree Provable

    https://liarparadox.org/Tarski_275_276.pdf

    Claude AI summed up the gist of each view
    of the Liar Paradox from all of the papers
    written on it.

    It turn out that one of my best proposals
    was already written by Saul Kripke

    Outline of a Theory of Truth
    Saul Kripke
    The Journal of Philosophy, Vol. 72, No. 19,
    Seventy-Second Annual Meeting American
    Philosophical Association, Eastern Division.
    (Nov. 6, 1975), pp. 690-716.

    https://files.commons.gc.cuny.edu/wp-content/blogs.dir/1358/
    files/2019/04/Outline-of-a-Theory-of-Truth.pdf

    I don't think you mean this "important lesson: it would be fruitless to
    look for an intrinsic criterion that will enable us to sieve out -- as meaningless, or ill-formed -- those sentences which lead to paradox.


    Kripke merely starts with basic facts of the world as the
    axiomatic foundation of his system and then applies only
    truth preserving operations to these basic facts. This
    prevents the Liar Paradox from ever getting a truth value.
    This is very much like ZFC excluding Russell's Paradox
    by limiting how sets can be formed.

    This looks more relevant: "G||del put the issue of the legitimacy of self-referential sentences beyond doubt; he showed that they are as incontestably legitimate as arithmetic itself."


    The are perfectly legitimate errors of reasoning in
    that they specify cycles in the directed graph of
    their evaluation sequence.

    In programmer terms they specify an infinite loop.
    this prevents them from every being resolved to a
    truth value.

    *My own Minimal Type Theory*

    "This sentence is not true in English"
    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"

    <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>

    Directed graph of evaluation sequence of LP
    Nodes on the left edges on the right
    00 NOT 01
    01 True 02, 00 // cycle
    02 L // English

    and Prolog

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Fri Oct 10 09:45:22 2025
    From Newsgroup: sci.logic

    On 10/10/2025 3:48 AM, Mikko wrote:
    On 2025-10-09 13:21:15 +0000, olcott said:

    On 10/9/2025 5:55 AM, Mikko wrote:
    On 2025-10-09 03:13:41 +0000, olcott said:

    On 10/8/2025 5:54 AM, Mikko wrote:
    On 2025-10-07 14:19:09 +0000, olcott said:

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said:
    On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said: >>>>>>>>>>>>>>>>>>>
    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false >>>>>>>>>>>>>>>>>>>> must be rejected from any system of logic. >>>>>>>>>>>>>>>>>>>> Non-truth bearers in logic systems are like >>>>>>>>>>>>>>>>>>>> turds in birthday cakes.

    Every sentence of logic that is not tautology or >>>>>>>>>>>>>>>>>>> dontradiction is
    true in some contexts and false in others. >>>>>>>>>>>>>>>>>>
    A mere false assumption

    No, it is true on the basis of the meanings of the words. >>>>>>>>>>>>>>>>
    The syntax of formal logical languages allows
    some expressions to be created having pathological >>>>>>>>>>>>>>>> self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without >>>>>>>>>>>>> meaning
    does not refer.


    Self-reference can be detected in a string with a name. >>>>>>>>>>>>>> Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy >>>>>>>>>>>>>> of the liar
    -a-a-a in the metalanguage, by forming in the language itself >>>>>>>>>>>>>> a sentence
    -a-a-a x such that the sentence of the metalanguage which is >>>>>>>>>>>>>> correlated
    -a-a-a with x asserts that x is not a true sentence. >>>>>>>>>>>>>> -a-a-a https://liarparadox.org/Tarski_247_248.pdf

    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x >>>>>>>>>>>>>> https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. >>>>>>>>>>>>>>> the arithmetic
    semantics of a formal language of arithmetics do not >>>>>>>>>>>>>>> permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, >>>>>>>>>>> they construct
    something like LP <-> ~True(LP). G||del then shows that that >>>>>>>>>>> the expression
    that asserts its own unprovability is is not provable and >>>>>>>>>>> therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that >>>>>>>>> is not
    the negation of any sentnece of that theory is true in some >>>>>>>>> model of
    that theory. Therefore every sentence of every first order
    theory is
    a truth-bearer.

    As long as you don't understand that "The liar's paradox is not >>>>>>>>> true"
    is true and therefore a valid basis for a proof you cannot say >>>>>>>>> anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>>> are these plain English direct quotes of G||del from his paper: >>>>>>>> ...there is also a close relationship with the rCLliarrCY
    antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a >>>>>>>> similar undecidability proof...
    ...We are therefore confronted with a proposition which asserts >>>>>>>> its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica >>>>>>>> And Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf

    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness.
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    None of the above demonstrates any understanding of the fact that >>>>>>> "The
    liar's paradox is not true" is true and therefore a valid basis >>>>>>> for a
    proof. Consequently there is no reason to expect that you could say >>>>>>> anything about Tarski's work instead of your straw man.

    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    A question is never true and should not be even mentioned in a
    discussion about truth values.

    Anyway, nice to see that you don't disagree.

    Yet Tarski anchored his whole proof in this:
    ?- LP = not(true(LP)).

    You anchor your counter-proof on this:
    ?- LP = not(true(LP)).

    But an anchor is not a proof. Tarski had a complete proof. You have not.

    When we toss out his whole basis his proof
    utterly fails.

    When you toss out "The liar paradox is not true" the liar paraxod
    remains not ture and the fact still is a valid basis for proof.


    Non-truth bearers such as "What time is it?"
    and "this sentence in not true" must be excluded
    from formal proofs of we get the wacky results
    that a Truth predicate cannot be defined or a
    self-contradictory sentence is true when evaluated
    by a metatheory outside the scope of self-contradiction.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic,sci.math on Fri Oct 10 10:02:34 2025
    From Newsgroup: sci.logic

    On 10/10/2025 3:58 AM, Mikko wrote:
    On 2025-10-09 13:25:56 +0000, olcott said:

    On 10/9/2025 6:12 AM, Mikko wrote:
    On 2025-10-09 03:10:56 +0000, olcott said:


    I have posited that it has always been a huge
    mistake that semantics was divided away from
    the syntax of every formal logic system since
    the syllogism. It is the root cause of the
    divergence of logic from correct reasoning.

    Logic has been shown to be useful. Your "correct reasoning" has not
    been.

    Because no one knows about it.

    Much about it has been known for as long time as anyone can remember.

    That Tarski and G||del were wrong has been known
    for a long time? The actual truth is that Tarski
    and G||del have been presumed to be correct on the
    basis of false assumptions.

    Instances of "correct reasoning" and "incorrect reasoning" have been identified and many these identifications have been justified. But it
    is true that what you call "correct reasoning" is different from what
    others have called so and is indeed not known or asked about.


    For example the principle of explosion becomes complete
    nonsense when semantics is fully integrated into the
    formal system and semantic logical entailment is the
    only rule of inference.

    Therefore there is a good reason to believe that the separation of the
    meaning from the form was a good idea.

    There are all kinds of errors that are simply
    invisible when semantics and rules of inference
    are separated.

    There are errors that are invisible until someone sees them. In particular, people tend to be blind to their own errors. Therefore it is useful that proofs can be checked without special knowledge.


    Tarski Undefinability and and G||del 1931 Incompleteness
    can not exist in any formal system comprised entirely of
    a coherent set of basic facts and the application of the
    truth preserving operation of semantic logical entailment.
    The Principle of Explosion also ceases to exist in such
    a system.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Oct 11 12:57:31 2025
    From Newsgroup: sci.logic

    On 2025-10-10 14:38:17 +0000, olcott said:

    On 10/10/2025 3:46 AM, Mikko wrote:
    On 2025-10-09 13:18:28 +0000, olcott said:

    On 10/9/2025 5:51 AM, Mikko wrote:
    On 2025-10-07 14:16:11 +0000, olcott said:

    On 10/7/2025 4:48 AM, Mikko wrote:
    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the >>>>>>>> first order Peano arithmetic is not a truth bearer? That you can't >>>>>>>> determine the truth value of some expression does not mean that ir >>>>>>>> has none. That you don't understand the proof does not mean that >>>>>>>> the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing.
    If a reliable automatic proof checker could confirm your proof
    that might mean something.

    The proof is entirely semantic.
    Claude AI verified that the meaning of my words
    proved my point. You could to if you looked at
    the dialogue.

    As I already said, that does not mean anything.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    The gist of it is that when the Liar Paradox
    is first rejected as not a truth bearer then
    Tarski's whole proof loses its entire basis.

    No, it does not. Tarski's proof is based on the ordinary logic and
    Peano arithmetic. Therefore it and its conclusion are parts of the
    analytic knowledge.

    However, the Liar's paradox is basis of your counter argument, which
    therefore loses its basis if the Liar's paradox is rejected.

    When the Liar Paradox is tossed out Tarski loses the
    first line and third of his proof. This causes his
    whole proof to fail to reach its conclusion.

    What do you mean with "first line" and "third line" of the proof?
    Tarski did not break his text to lines. That was done by the
    typesetter.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Oct 11 13:01:04 2025
    From Newsgroup: sci.logic

    On 2025-10-10 14:45:22 +0000, olcott said:

    On 10/10/2025 3:48 AM, Mikko wrote:
    On 2025-10-09 13:21:15 +0000, olcott said:

    On 10/9/2025 5:55 AM, Mikko wrote:
    On 2025-10-09 03:13:41 +0000, olcott said:

    On 10/8/2025 5:54 AM, Mikko wrote:
    On 2025-10-07 14:19:09 +0000, olcott said:

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said: >>>>>>>>>>>>>>>>>>> On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>
    On 9/27/2025 5:07 AM, Mikko wrote:

    Any sentence that is neither true nor false >>>>>>>>>>>>>>>>>>>>> must be rejected from any system of logic. >>>>>>>>>>>>>>>>>>>>> Non-truth bearers in logic systems are like >>>>>>>>>>>>>>>>>>>>> turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others. >>>>>>>>>>>>>>>>>>>
    A mere false assumption

    No, it is true on the basis of the meanings of the words. >>>>>>>>>>>>>>>>>
    The syntax of formal logical languages allows >>>>>>>>>>>>>>>>> some expressions to be created having pathological >>>>>>>>>>>>>>>>> self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning
    does not refer.


    Self-reference can be detected in a string with a name. >>>>>>>>>>>>>>> Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar
    -a-a-a in the metalanguage, by forming in the language itself a sentence
    -a-a-a x such that the sentence of the metalanguage which is correlated
    -a-a-a with x asserts that x is not a true sentence. >>>>>>>>>>>>>>> -a-a-a https://liarparadox.org/Tarski_247_248.pdf >>>>>>>>>>>>>>>
    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x >>>>>>>>>>>>>>> https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic
    semantics of a formal language of arithmetics do not permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)).
    and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct
    something like LP <-> ~True(LP). G||del then shows that that the expression
    that asserts its own unprovability is is not provable and therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that is not
    the negation of any sentnece of that theory is true in some model of >>>>>>>>>> that theory. Therefore every sentence of every first order theory is >>>>>>>>>> a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true"
    is true and therefore a valid basis for a proof you cannot say anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275 >>>>>>>>>
    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>>>> are these plain English direct quotes of G||del from his paper: >>>>>>>>> ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And >>>>>>>>> Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf


    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness.
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275

    None of the above demonstrates any understanding of the fact that "The >>>>>>>> liar's paradox is not true" is true and therefore a valid basis for a >>>>>>>> proof. Consequently there is no reason to expect that you could say >>>>>>>> anything about Tarski's work instead of your straw man.

    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    A question is never true and should not be even mentioned in a
    discussion about truth values.

    Anyway, nice to see that you don't disagree.

    Yet Tarski anchored his whole proof in this:
    ?- LP = not(true(LP)).

    You anchor your counter-proof on this:
    ?- LP = not(true(LP)).

    But an anchor is not a proof. Tarski had a complete proof. You have not. >>>
    When we toss out his whole basis his proof
    utterly fails.

    When you toss out "The liar paradox is not true" the liar paraxod
    remains not ture and the fact still is a valid basis for proof.

    Non-truth bearers such as "What time is it?"
    and "this sentence in not true" must be excluded
    from formal proofs of we get the wacky results
    that a Truth predicate cannot be defined or a
    self-contradictory sentence is true when evaluated
    by a metatheory outside the scope of self-contradiction.

    Can you proove that Tarski made an error without mentioning any sentence
    that you said must be excluded?
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sat Oct 11 13:02:44 2025
    From Newsgroup: sci.logic

    On 2025-10-10 15:02:34 +0000, olcott said:

    On 10/10/2025 3:58 AM, Mikko wrote:
    On 2025-10-09 13:25:56 +0000, olcott said:

    On 10/9/2025 6:12 AM, Mikko wrote:
    On 2025-10-09 03:10:56 +0000, olcott said:


    I have posited that it has always been a huge
    mistake that semantics was divided away from
    the syntax of every formal logic system since
    the syllogism. It is the root cause of the
    divergence of logic from correct reasoning.

    Logic has been shown to be useful. Your "correct reasoning" has not been. >>>
    Because no one knows about it.

    Much about it has been known for as long time as anyone can remember.

    That Tarski and G||del were wrong has been known
    for a long time? The actual truth is that Tarski
    and G||del have been presumed to be correct on the
    basis of false assumptions.

    Your "correct reasoning" was not invented by G||del or Tarski.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Oct 11 08:26:16 2025
    From Newsgroup: sci.logic

    On 10/11/2025 4:57 AM, Mikko wrote:
    On 2025-10-10 14:38:17 +0000, olcott said:

    On 10/10/2025 3:46 AM, Mikko wrote:
    On 2025-10-09 13:18:28 +0000, olcott said:

    On 10/9/2025 5:51 AM, Mikko wrote:
    On 2025-10-07 14:16:11 +0000, olcott said:

    On 10/7/2025 4:48 AM, Mikko wrote:
    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the >>>>>>>>> first order Peano arithmetic is not a truth bearer? That you can't >>>>>>>>> determine the truth value of some expression does not mean that ir >>>>>>>>> has none. That you don't understand the proof does not mean that >>>>>>>>> the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275
    It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing.
    If a reliable automatic proof checker could confirm your proof
    that might mean something.

    The proof is entirely semantic.
    Claude AI verified that the meaning of my words
    proved my point. You could to if you looked at
    the dialogue.

    As I already said, that does not mean anything.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    The gist of it is that when the Liar Paradox
    is first rejected as not a truth bearer then
    Tarski's whole proof loses its entire basis.

    No, it does not. Tarski's proof is based on the ordinary logic and
    Peano arithmetic. Therefore it and its conclusion are parts of the
    analytic knowledge.

    However, the Liar's paradox is basis of your counter argument, which
    therefore loses its basis if the Liar's paradox is rejected.

    When the Liar Paradox is tossed out Tarski loses the
    first line and third of his proof. This causes his
    whole proof to fail to reach its conclusion.

    What do you mean with "first line" and "third line" of the proof?
    Tarski did not break his text to lines. That was done by the
    typesetter.


    So you are saying the he jumbled all of his
    proof steps together?

    Nine steps on two pages.
    https://liarparadox.org/Tarski_275_276.pdf
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sat Oct 11 08:28:02 2025
    From Newsgroup: sci.logic

    On 10/11/2025 5:01 AM, Mikko wrote:
    On 2025-10-10 14:45:22 +0000, olcott said:

    On 10/10/2025 3:48 AM, Mikko wrote:
    On 2025-10-09 13:21:15 +0000, olcott said:

    On 10/9/2025 5:55 AM, Mikko wrote:
    On 2025-10-09 03:13:41 +0000, olcott said:

    On 10/8/2025 5:54 AM, Mikko wrote:
    On 2025-10-07 14:19:09 +0000, olcott said:

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said:

    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said: >>>>>>>>>>>>>>>>>>>> On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>>
    On 9/27/2025 5:07 AM, Mikko wrote: >>>>>>>>>>>>>>>>>>>>>>
    Any sentence that is neither true nor false >>>>>>>>>>>>>>>>>>>>>> must be rejected from any system of logic. >>>>>>>>>>>>>>>>>>>>>> Non-truth bearers in logic systems are like >>>>>>>>>>>>>>>>>>>>>> turds in birthday cakes.

    Every sentence of logic that is not tautology or >>>>>>>>>>>>>>>>>>>>> dontradiction is
    true in some contexts and false in others. >>>>>>>>>>>>>>>>>>>>
    A mere false assumption

    No, it is true on the basis of the meanings of the >>>>>>>>>>>>>>>>>>> words.

    The syntax of formal logical languages allows >>>>>>>>>>>>>>>>>> some expressions to be created having pathological >>>>>>>>>>>>>>>>>> self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string >>>>>>>>>>>>>>> without meaning
    does not refer.


    Self-reference can be detected in a string with a name. >>>>>>>>>>>>>>>> Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the >>>>>>>>>>>>>>>> antinomy of the liar
    -a-a-a in the metalanguage, by forming in the language >>>>>>>>>>>>>>>> itself a sentence
    -a-a-a x such that the sentence of the metalanguage which >>>>>>>>>>>>>>>> is correlated
    -a-a-a with x asserts that x is not a true sentence. >>>>>>>>>>>>>>>> -a-a-a https://liarparadox.org/Tarski_247_248.pdf >>>>>>>>>>>>>>>>
    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x >>>>>>>>>>>>>>>> https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For >>>>>>>>>>>>>>>>> example. the arithmetic
    semantics of a formal language of arithmetics do not >>>>>>>>>>>>>>>>> permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)). >>>>>>>>>>>>>> and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, >>>>>>>>>>>>> they construct
    something like LP <-> ~True(LP). G||del then shows that that >>>>>>>>>>>>> the expression
    that asserts its own unprovability is is not provable and >>>>>>>>>>>>> therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability
    theorem are anchored in liar paradox like expression
    that should have been rejected as not a truth bearer.

    G||del proved that every sentence of a first order theory that >>>>>>>>>>> is not
    the negation of any sentnece of that theory is true in some >>>>>>>>>>> model of
    that theory. Therefore every sentence of every first order >>>>>>>>>>> theory is
    a truth-bearer.

    As long as you don't understand that "The liar's paradox is >>>>>>>>>>> not true"
    is true and therefore a valid basis for a proof you cannot >>>>>>>>>>> say anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275 >>>>>>>>>>
    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>>>>> are these plain English direct quotes of G||del from his paper: >>>>>>>>>> ...there is also a close relationship with the rCLliarrCY >>>>>>>>>> antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for >>>>>>>>>> a similar undecidability proof...
    ...We are therefore confronted with a proposition which
    asserts its own unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica >>>>>>>>>> And Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf

    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness.
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275 >>>>>>>>>
    None of the above demonstrates any understanding of the fact >>>>>>>>> that "The
    liar's paradox is not true" is true and therefore a valid basis >>>>>>>>> for a
    proof. Consequently there is no reason to expect that you could >>>>>>>>> say
    anything about Tarski's work instead of your straw man.

    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    A question is never true and should not be even mentioned in a
    discussion about truth values.

    Anyway, nice to see that you don't disagree.

    Yet Tarski anchored his whole proof in this:
    ?- LP = not(true(LP)).

    You anchor your counter-proof on this:
    ?- LP = not(true(LP)).

    But an anchor is not a proof. Tarski had a complete proof. You have >>>>> not.

    When we toss out his whole basis his proof
    utterly fails.

    When you toss out "The liar paradox is not true" the liar paraxod
    remains not ture and the fact still is a valid basis for proof.

    Non-truth bearers such as "What time is it?"
    and "this sentence in not true" must be excluded
    from formal proofs of we get the wacky results
    that a Truth predicate cannot be defined or a
    self-contradictory sentence is true when evaluated
    by a metatheory outside the scope of self-contradiction.

    Can you proove that Tarski made an error without mentioning any sentence
    that you said must be excluded?


    That was his only mistake.
    Can you count to five without using any numbers?
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic,sci.math on Sat Oct 11 08:34:42 2025
    From Newsgroup: sci.logic

    On 10/11/2025 5:02 AM, Mikko wrote:
    On 2025-10-10 15:02:34 +0000, olcott said:

    On 10/10/2025 3:58 AM, Mikko wrote:
    On 2025-10-09 13:25:56 +0000, olcott said:

    On 10/9/2025 6:12 AM, Mikko wrote:
    On 2025-10-09 03:10:56 +0000, olcott said:


    I have posited that it has always been a huge
    mistake that semantics was divided away from
    the syntax of every formal logic system since
    the syllogism. It is the root cause of the
    divergence of logic from correct reasoning.

    Logic has been shown to be useful. Your "correct reasoning" has not >>>>> been.

    Because no one knows about it.

    Much about it has been known for as long time as anyone can remember.

    That Tarski and G||del were wrong has been known
    for a long time? The actual truth is that Tarski
    and G||del have been presumed to be correct on the
    basis of false assumptions.

    Your "correct reasoning" was not invented by G||del or Tarski.


    Apparently the seed of my correct reasoning system
    was created by Saul Kripke.

    https://files.commons.gc.cuny.edu/wp-content/blogs.dir/1358/files/2019/04/Outline-of-a-Theory-of-Truth.pdf

    My system is simpler and may work a little
    differently. We start with basic facts of the
    world and only apply the single truth preserving
    operation of semantic logical entailment.

    Within such a system a Truth predicate always
    consistently works and the system is only
    incomplete in that it is limited to the set
    of human knowledge that can be expressed in
    language. New knowledge can be added at any time.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Oct 12 12:51:54 2025
    From Newsgroup: sci.logic

    On 2025-10-11 13:26:16 +0000, olcott said:

    On 10/11/2025 4:57 AM, Mikko wrote:
    On 2025-10-10 14:38:17 +0000, olcott said:

    On 10/10/2025 3:46 AM, Mikko wrote:
    On 2025-10-09 13:18:28 +0000, olcott said:

    On 10/9/2025 5:51 AM, Mikko wrote:
    On 2025-10-07 14:16:11 +0000, olcott said:

    On 10/7/2025 4:48 AM, Mikko wrote:
    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the >>>>>>>>>> first order Peano arithmetic is not a truth bearer? That you can't >>>>>>>>>> determine the truth value of some expression does not mean that ir >>>>>>>>>> has none. That you don't understand the proof does not mean that >>>>>>>>>> the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275 >>>>>>>>> It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing. >>>>>>>> If a reliable automatic proof checker could confirm your proof >>>>>>>> that might mean something.

    The proof is entirely semantic.
    Claude AI verified that the meaning of my words
    proved my point. You could to if you looked at
    the dialogue.

    As I already said, that does not mean anything.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    The gist of it is that when the Liar Paradox
    is first rejected as not a truth bearer then
    Tarski's whole proof loses its entire basis.

    No, it does not. Tarski's proof is based on the ordinary logic and
    Peano arithmetic. Therefore it and its conclusion are parts of the
    analytic knowledge.

    However, the Liar's paradox is basis of your counter argument, which
    therefore loses its basis if the Liar's paradox is rejected.

    When the Liar Paradox is tossed out Tarski loses the
    first line and third of his proof. This causes his
    whole proof to fail to reach its conclusion.

    What do you mean with "first line" and "third line" of the proof?
    Tarski did not break his text to lines. That was done by the
    typesetter.

    So you are saying the he jumbled all of his
    proof steps together?

    No, I asked a question that you failed to answer, apparently because
    you cannot answer without revealing that you lied.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Oct 12 12:55:37 2025
    From Newsgroup: sci.logic

    On 2025-10-11 13:28:02 +0000, olcott said:

    On 10/11/2025 5:01 AM, Mikko wrote:
    On 2025-10-10 14:45:22 +0000, olcott said:

    On 10/10/2025 3:48 AM, Mikko wrote:
    On 2025-10-09 13:21:15 +0000, olcott said:

    On 10/9/2025 5:55 AM, Mikko wrote:
    On 2025-10-09 03:13:41 +0000, olcott said:

    On 10/8/2025 5:54 AM, Mikko wrote:
    On 2025-10-07 14:19:09 +0000, olcott said:

    On 10/7/2025 4:52 AM, Mikko wrote:
    On 2025-10-06 13:23:10 +0000, olcott said:

    On 10/6/2025 7:36 AM, Mikko wrote:
    On 2025-10-05 14:09:37 +0000, olcott said:

    On 10/5/2025 5:26 AM, Mikko wrote:
    On 2025-10-04 13:30:22 +0000, olcott said:

    On 10/4/2025 5:11 AM, Mikko wrote:
    On 2025-10-02 10:15:13 +0000, olcott said:

    On 10/2/2025 5:03 AM, Mikko wrote:
    On 2025-10-01 16:33:46 +0000, olcott said: >>>>>>>>>>>>>>>>>>
    On 10/1/2025 5:13 AM, Mikko wrote:
    On 2025-10-01 01:48:56 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>> On 9/30/2025 7:54 AM, Mikko wrote:
    On 2025-09-29 12:24:30 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>>>
    On 9/27/2025 5:07 AM, Mikko wrote: >>>>>>>>>>>>>>>>>>>>>>>
    Any sentence that is neither true nor false >>>>>>>>>>>>>>>>>>>>>>> must be rejected from any system of logic. >>>>>>>>>>>>>>>>>>>>>>> Non-truth bearers in logic systems are like >>>>>>>>>>>>>>>>>>>>>>> turds in birthday cakes.

    Every sentence of logic that is not tautology or dontradiction is
    true in some contexts and false in others. >>>>>>>>>>>>>>>>>>>>>
    A mere false assumption

    No, it is true on the basis of the meanings of the words. >>>>>>>>>>>>>>>>>>>
    The syntax of formal logical languages allows >>>>>>>>>>>>>>>>>>> some expressions to be created having pathological >>>>>>>>>>>>>>>>>>> self-reference(Olcott 2004).

    No syntax is enough for self-reference.

    Syntax is enough for self-reference.

    No, self-reference is a semantic feature. A string without meaning
    does not refer.


    Self-reference can be detected in a string with a name. >>>>>>>>>>>>>>>>> Tarski's Liar Paradox from page 248
    -a-a-a It would then be possible to reconstruct the antinomy of the liar
    -a-a-a in the metalanguage, by forming in the language itself a sentence
    -a-a-a x such that the sentence of the metalanguage which is correlated
    -a-a-a with x asserts that x is not a true sentence. >>>>>>>>>>>>>>>>> -a-a-a https://liarparadox.org/Tarski_247_248.pdf >>>>>>>>>>>>>>>>>
    Formalized as:
    x ree True if and only if p
    where the symbol 'p' represents the whole sentence x >>>>>>>>>>>>>>>>> https://liarparadox.org/Tarski_275_276.pdf

    The semantics determines whether
    any syntactic construct is a self-reference. For example. the arithmetic
    semantics of a formal language of arithmetics do not permit a self-
    reference.

    G||del uses tricks for that.

    Tarski used the same tricks.

    Yet they only actually boil down to
    Incomplete(F) rao reaG ((F re4 G) reo (F re4 -4G)). >>>>>>>>>>>>>>> and this
    LP := ~True(LP)

    The system they considered has no symbol for :=. Instead, they construct
    something like LP <-> ~True(LP). G||del then shows that that the expression
    that asserts its own unprovability is is not provable and therefore true.

    Claude AI eventually agreed that both G||del's 1931
    Incompleteness theorem and the Tarski Undefinability >>>>>>>>>>>>> theorem are anchored in liar paradox like expression >>>>>>>>>>>>> that should have been rejected as not a truth bearer. >>>>>>>>>>>>
    G||del proved that every sentence of a first order theory that is not
    the negation of any sentnece of that theory is true in some model of
    that theory. Therefore every sentence of every first order theory is
    a truth-bearer.

    As long as you don't understand that "The liar's paradox is not true"
    is true and therefore a valid basis for a proof you cannot say anything
    about Tarski's proof but are stuck to straw men.


    *The Liar Paradox is rejected*
    (thus unavailable for subsequent analysis)
    True(English, "This sentence is not true")==INCORRECT

    *I explained this in complete detail to Claude AI*
    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275 >>>>>>>>>>>
    The most important aspect of G||del's 1931 Incompleteness theorem >>>>>>>>>>> are these plain English direct quotes of G||del from his paper: >>>>>>>>>>> ...there is also a close relationship with the rCLliarrCY antinomy,14 ...
    ...14 Every epistemological antinomy can likewise be used for a similar
    undecidability proof...
    ...We are therefore confronted with a proposition which asserts its own
    unprovability. 15 ...
    (G||del 1931:40-41)

    G||del, Kurt 1931.
    On Formally Undecidable Propositions of Principia Mathematica And >>>>>>>>>>> Related Systems

    https://monoskop.org/images/9/93/
    Kurt_G%C3%B6del_On_Formally_Undecidable_Propositions_of_Principia_Mathematica_and_Related_Systems_1992.pdf


    Basically Claude AI completely validated all of my work
    on Tarski Undefinability and G||del 1931 Incompleteness. >>>>>>>>>>> https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275 >>>>>>>>>>
    None of the above demonstrates any understanding of the fact that "The
    liar's paradox is not true" is true and therefore a valid basis for a
    proof. Consequently there is no reason to expect that you could say >>>>>>>>>> anything about Tarski's work instead of your straw man.

    "What time is it (true or false)?" is also not true and
    best rejected at the beginning.

    A question is never true and should not be even mentioned in a >>>>>>>> discussion about truth values.

    Anyway, nice to see that you don't disagree.

    Yet Tarski anchored his whole proof in this:
    ?- LP = not(true(LP)).

    You anchor your counter-proof on this:
    ?- LP = not(true(LP)).

    But an anchor is not a proof. Tarski had a complete proof. You have not. >>>>>
    When we toss out his whole basis his proof
    utterly fails.

    When you toss out "The liar paradox is not true" the liar paraxod
    remains not ture and the fact still is a valid basis for proof.

    Non-truth bearers such as "What time is it?"
    and "this sentence in not true" must be excluded
    from formal proofs of we get the wacky results
    that a Truth predicate cannot be defined or a
    self-contradictory sentence is true when evaluated
    by a metatheory outside the scope of self-contradiction.

    Can you proove that Tarski made an error without mentioning any sentence
    that you said must be excluded?

    That was his only mistake.
    Can you count to five without using any numbers?

    I needn't. Nobody ever asks without using numbers to count to five.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mikko@mikko.levanto@iki.fi to sci.logic on Sun Oct 12 12:59:33 2025
    From Newsgroup: sci.logic

    On 2025-10-11 13:34:42 +0000, olcott said:

    On 10/11/2025 5:02 AM, Mikko wrote:
    On 2025-10-10 15:02:34 +0000, olcott said:

    On 10/10/2025 3:58 AM, Mikko wrote:
    On 2025-10-09 13:25:56 +0000, olcott said:

    On 10/9/2025 6:12 AM, Mikko wrote:
    On 2025-10-09 03:10:56 +0000, olcott said:


    I have posited that it has always been a huge
    mistake that semantics was divided away from
    the syntax of every formal logic system since
    the syllogism. It is the root cause of the
    divergence of logic from correct reasoning.

    Logic has been shown to be useful. Your "correct reasoning" has not been.

    Because no one knows about it.

    Much about it has been known for as long time as anyone can remember.

    That Tarski and G||del were wrong has been known
    for a long time? The actual truth is that Tarski
    and G||del have been presumed to be correct on the
    basis of false assumptions.

    Your "correct reasoning" was not invented by G||del or Tarski.

    Apparently the seed of my correct reasoning system
    was created by Saul Kripke.

    That's possible if you had read Kripke shortly before you started
    to use the term.

    https://files.commons.gc.cuny.edu/wp-content/blogs.dir/1358/files/2019/04/Outline-of-a-Theory-of-Truth.pdf


    My system is simpler and may work a little
    differently.

    Your system only looks simpler because you have not yet thought about
    it more than superficieally.
    --
    Mikko

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sun Oct 12 08:55:20 2025
    From Newsgroup: sci.logic

    On 10/12/2025 4:51 AM, Mikko wrote:
    On 2025-10-11 13:26:16 +0000, olcott said:

    On 10/11/2025 4:57 AM, Mikko wrote:
    On 2025-10-10 14:38:17 +0000, olcott said:

    On 10/10/2025 3:46 AM, Mikko wrote:
    On 2025-10-09 13:18:28 +0000, olcott said:

    On 10/9/2025 5:51 AM, Mikko wrote:
    On 2025-10-07 14:16:11 +0000, olcott said:

    On 10/7/2025 4:48 AM, Mikko wrote:
    On 2025-10-06 13:14:35 +0000, olcott said:

    On 10/6/2025 7:27 AM, Mikko wrote:
    On 2025-10-05 14:03:37 +0000, olcott said:

    G||del 1931 undecidability and Tarski Undefinability
    only exist because they they not know to reject an
    expression of language that is not a truth bearer.

    What expression of the language of the first order theory of the >>>>>>>>>>> first order Peano arithmetic is not a truth bearer? That you >>>>>>>>>>> can't
    determine the truth value of some expression does not mean >>>>>>>>>>> that ir
    has none. That you don't understand the proof does not mean that >>>>>>>>>>> the proofs are not sound.

    https://claude.ai/share/45d3ca9c-fa9a-4a02-9e22-c6acd0057275 >>>>>>>>>> It turns out that the essence of these two papers is much
    simpler than that.

    Apparently not simple enough for you.

    Claude AI is quite hesitant at first, disagreeing
    with me several times. Then it is finally convinced
    that I am correct.

    That you may convince an artificial idiot means nothing.

    It may seem to mean nothing until after you carefully
    examine all of the details of how it pieces together all
    of my ideas into a single cohesive whole.

    That you may convince an artificial idiot really means nothing. >>>>>>>>> If a reliable automatic proof checker could confirm your proof >>>>>>>>> that might mean something.

    The proof is entirely semantic.
    Claude AI verified that the meaning of my words
    proved my point. You could to if you looked at
    the dialogue.

    As I already said, that does not mean anything.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    The gist of it is that when the Liar Paradox
    is first rejected as not a truth bearer then
    Tarski's whole proof loses its entire basis.

    No, it does not. Tarski's proof is based on the ordinary logic and
    Peano arithmetic. Therefore it and its conclusion are parts of the
    analytic knowledge.

    However, the Liar's paradox is basis of your counter argument, which >>>>> therefore loses its basis if the Liar's paradox is rejected.

    When the Liar Paradox is tossed out Tarski loses the
    first line and third of his proof. This causes his
    whole proof to fail to reach its conclusion.

    What do you mean with "first line" and "third line" of the proof?
    Tarski did not break his text to lines. That was done by the
    typesetter.

    So you are saying the he jumbled all of his
    proof steps together?

    No, I asked a question that you failed to answer, apparently because
    you cannot answer without revealing that you lied.


    I provided the actual proof with nine steps numbered

    Nine steps on two pages.
    https://liarparadox.org/Tarski_275_276.pdf
    Ignoring my proof as a basis of rebuttal is invalid.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sun Oct 12 09:01:08 2025
    From Newsgroup: sci.logic

    On 10/12/2025 4:55 AM, Mikko wrote:
    On 2025-10-11 13:28:02 +0000, olcott said:

    On 10/11/2025 5:01 AM, Mikko wrote:
    On 2025-10-10 14:45:22 +0000, olcott said:>>>> Non-truth bearers such as "What time is it?"
    and "this sentence in not true" must be excluded
    from formal proofs of we get the wacky results
    that a Truth predicate cannot be defined or a
    self-contradictory sentence is true when evaluated
    by a metatheory outside the scope of self-contradiction.

    Can you proove that Tarski made an error without mentioning any sentence >>> that you said must be excluded?

    That was his only mistake.
    Can you count to five without using any numbers?

    I needn't. Nobody ever asks without using numbers to count to five.


    The mistake that he made was not rejecting the
    Liar Paradox as malformed before he began his proof.

    ?- LP = not(true(LP)).
    LP = not(true(LP)).

    ?- unify_with_occurs_check(LP, not(true(LP))).
    false.

    There is a cycle in the directed graph of the
    evaluation sequence that prevents the evaluation
    of the Liar Paradox from ever terminating.
    It is rejected on the basis.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to sci.logic on Sun Oct 12 09:04:32 2025
    From Newsgroup: sci.logic

    On 10/12/2025 4:59 AM, Mikko wrote:
    On 2025-10-11 13:34:42 +0000, olcott said:

    On 10/11/2025 5:02 AM, Mikko wrote:
    On 2025-10-10 15:02:34 +0000, olcott said:

    On 10/10/2025 3:58 AM, Mikko wrote:
    On 2025-10-09 13:25:56 +0000, olcott said:

    On 10/9/2025 6:12 AM, Mikko wrote:
    On 2025-10-09 03:10:56 +0000, olcott said:


    I have posited that it has always been a huge
    mistake that semantics was divided away from
    the syntax of every formal logic system since
    the syllogism. It is the root cause of the
    divergence of logic from correct reasoning.

    Logic has been shown to be useful. Your "correct reasoning" has >>>>>>> not been.

    Because no one knows about it.

    Much about it has been known for as long time as anyone can remember. >>>>
    That Tarski and G||del were wrong has been known
    for a long time? The actual truth is that Tarski
    and G||del have been presumed to be correct on the
    basis of false assumptions.

    Your "correct reasoning" was not invented by G||del or Tarski.

    Apparently the seed of my correct reasoning system
    was created by Saul Kripke.

    That's possible if you had read Kripke shortly before you started
    to use the term.

    https://files.commons.gc.cuny.edu/wp-content/blogs.dir/1358/
    files/2019/04/Outline-of-a-Theory-of-Truth.pdf

    My system is simpler and may work a little
    differently.

    Your system only looks simpler because you have not yet thought about
    it more than superficieally.


    My system *is* simpler because I only provide
    the details of the architecture of such a system.
    Kripke may never get to this succinct overview.
    This makes it much more difficult to see the gist
    of his idea.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2