Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connectionsPath: ...!weretis.net!feeder9.news.weretis.net!i2pn.org!i2pn2.org!.POSTED!not-for-mail From: Richard Damon Newsgroups: sci.logic Subject: Re: Minimal Logics in the 2020's: A Meteoric Rise Date: Sat, 6 Jul 2024 21:32:29 -0400 Organization: i2pn2 (i2pn.org) Message-ID: <9e59212316a9b258e95a1de7f5cca46fee37861e@i2pn2.org> References: <5e4fb6d29fbd03c807c9a8d4140f807a44c29cb9@i2pn2.org> <49291bd9f18eaf11097b6a26f062f54b7f4d6fa9@i2pn2.org> <7e4f146addad55792c0f18ab92d2092ebcc5dbfd@i2pn2.org> <6e51f0e94c1e00fcaec8897b4374547bfa2d2be1@i2pn2.org> <51aecdca646d067438e9cd44b11cb8bf9be933f2@i2pn2.org> <4ce79acf7c53160136f77603265cc1e5a5d3e34e@i2pn2.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Date: Sun, 7 Jul 2024 01:32:29 -0000 (UTC) Injection-Info: i2pn2.org; logging-data="2381982"; mail-complaints-to="usenet@i2pn2.org"; posting-account="diqKR1lalukngNWEqoq9/uFtbkm5U+w3w6FQ0yesrXg"; User-Agent: Mozilla Thunderbird In-Reply-To: X-Spam-Checker-Version: SpamAssassin 4.0.0 Content-Language: en-US Bytes: 4428 Lines: 76 On 7/6/24 9:06 PM, olcott wrote: > On 7/6/2024 6:28 PM, Richard Damon wrote: >> On 7/6/24 6:41 PM, olcott wrote: >>> On 7/6/2024 5:22 PM, Richard Damon wrote: >>>> On 7/6/24 6:08 PM, olcott wrote: >>>>> On 7/6/2024 4:02 PM, Richard Damon wrote: >>>>>> The problem here is you logic doesn't actually allow for the >>>>>> necessaery references in it. >>>>>> >>>>> Not at all. My logic is simply smart enough to reject >>>>> non-truth-bearers AKA expressions that are not valid >>>>> propositions. It does not stupidly falsely assume that >>>>> every expression is a valid proposition.\ >>>> >>>> Logic isn't "Smart", it follows its rules. >>>> >>>> Your rules are just inconsistent. >>>> >>> >>> When-so-ever true means provable and false means not provable >>> the meaning of these words proves that such a system cannot >>> get stuck in pathological expressions. >> >> And such a definition requires the system to be keep simple or it >> becomes inconsistant. >> >>> >>> LP := ~True(LP) has a cycle in the directed >>> graph of the elements of the expression related >>> to each other that Prolog and MTT detects. >>> >> >> So, what value does True(LP) return? >> > > True(L,x)  means x is true. > ~True(L,x) means x is untrue which includes false and not a proposition. > > True(L,~x) means x is false. > ~True(L,~x) means x is unfalse which includes true and not a proposition. > > True(L,LP) is false and True(L,~LP) is false which means LP > is not a proposition. And if x is defined in L as ~True(L,x) means that True(L, x) is false, then x being the negation of that result is a true statement. So, you are claiming it is correct for True(L, x) where x is a true statement to be false, which is in contradiction to your definitions. Or. does your logic not have the negation symbol, even though you used it. Your repeated dodging answering the question just shws that you know you are defeated but refuse to admit it. YOU LOGIC FAILS. > >> If it returns your error below, it fails to meet the requirements, as >> "nonsense" statement must return false. >> >> But then, not that false is true, so the predicate is in its problem. >> >> THe only answers are: >> 1) Not have a True Predicate. >> 2) Not allow that form of reference, even indirectly, which limits the >> power of the logic system. >> >>> ?- LP = not(true(LP)). >>> LP = not(true(LP)). >>> ?- unify_with_occurs_check(LP, not(true(LP))). >>> false. >>> >>> >> >