> > > > > > CANTOR'S THEOREM
>
> > > > > > ALL(F):N->R E(r):r ALL(n):N F(n)=/=r
>
> > > > > I'm not trying to trim to aviod anything other than the brokeness
>
> > > > > of the google groups.
>
> > > > > I'm trying to understand what you wrote. It seems like you
>
> > > > > keep changing your symbolic language.
>
> > > > > Please verify: For all functions of a natural returning a real
>
> > > > > there exist a real such that for all natural numbers the function
>
> > > > > will not return that real.
F is just a LIST!
f(1) = 0.322323...
LIST ITEM 1 = REAL#1 = 0.322323...
>
> > > > > I believe that was his conclusion.
>
> > > > > I don't know how to write in that language yet. Does this make
>
> > > > > sense:
>
> > > > > EXISTS(G):F(N),N->R ALL(F):N->R ALL(m):N ALL(n):N F(n)=/=SUM(G(F(m),m))
>
> > > > G is just NXR->R
>
I'm just saying your TYPE of G is not well formulated.
If you are summing the digit positions into d1/10 + d2/100 + d3/1000
+ ....
that's fine!
If you want to put ALL FUNCTION at the start you are talking about a
bona-fide function here not my countable LIST:N->R of domain N.
>
> > > > (string-of-digits wise function)
>
> > > > or
>
> > > > {0..9}->{0..9)
>
> > > > (digit wise function)
>
> > > I'm not sure I understand.
>
> > > G takes then nth value of F and returns a real between
>
> > > .1^n and .1^(n+1) that differs from MOD(FLOOR(F(n),.1^(n+1)),.1^n)
>
> > > in a way where it will never be 9*(.1^(n+1)).
>
> > OK but you and George and all logicians are making the same mistake.
>
> I'm a computer programmer/systems analyst. I was deeply depressed when
> I took my symbolic logic classes so don't remember them very well. I'm
>
Lot's of students don't remember lectures very well for various
reasons! ;-)
>
> trying to relearn them as fast as I can. It's hard to do so given the
> diverse symbolic systems being used here and very bad assertions about
> the truth of the matter.
>
> Constructivist,
http://en.wikipedia.org/wiki/Constructivism_(mathematics)
> make it very hard to talk about infinite sets. I never let my mathmatics
> be limited by the computers I've used and I never will. I do not accept
> there is no number if the system using numbers cannot encode it in native
> mode. Integers weren't limited to 256 just because that's all my 8080
> could handle.
>
> > ALL( FUNCTION ): DOMAIN->RANGE
> > ALL( FUNCTION OF FUNCTIONS ) DXR1 -> R2
> > for FUNCTIONS, i.e. LOGIC FORMULA use "D->R"
> > for SETS, i.e. ordered pairs use "DXR"
>
> Can you point me to a wikipedia page or .edu page
> using the syntax you are describing. I'd like to
>
Not really I am posting this to GG aswell as part of a high level
argument of misusing SETS for FUNCTIONS and calling 2OL 1OL.
>
> come up to speed as quickly as possible. I'm not
> sure I agree to these relative to what I intend to
> write. I take D to reference "domain". Do you take
> it as a given that an ordered pair includes a natural
> number as one of the items paired. where DXR would
> reference an ordered pair (N,R)? Would you use DXN
> if the pairing was (N,N)?
>
> > then you can safely make claims about super-infinite sets in FIRST
> > ORDER LOGIC about
>
> > SETS:DXR
>
> > without stuffing up the
> > FUNCTION:D->R
> > specs for us programmers.
>
> I keep reading what you write about microProlog and wff.
> I still disagree with your formulation since the compiler
> necessarily doesn't allow anything but wff into the system in
> the first place.
>
> What does:
>
> ?wff(this(
>
> return? Does it return no?
>
You seem to be referring to another of my meta-argument.
---8<----------
There was only one problem... PROLOG was a single logic value
language, 1 RECORD FOUND using backward chaining and the Theorem
Provers of the time were Resolution Based 2 valued logic where
Theorems were TRUE and Assumptions were reversed otherwise! Set
Theory adopted a construction system of Predicates, true or false,
as
long as they were well formed, functions were formulas, no sets, more
than infinity of them at any rate, don't try listing a function now-
a-
days... axioms were replaced as the theorem provider with |= missing
theorems from somewhere else, and every thing started with first
order
logic!
f(0).
t(1).
t(X) :- f(f(X)).
wff(X) :- t(X).
wff(X) :- f(X).
what(X,true) :- t(X).
what(X,false) :- f(X).
t(if(X,Y)) :- t(X), t(Y).
t(if(X,Y)) :- f(X), f(Y).
t(if(X,Y)) :- f(X), t(Y).
t(or(X,Y)) :- t(X).
t(or(X,Y)) :- t(Y).
t(and(X,Y)) :- t(X),t(Y).
t(iff(X,Y)) :- t(X),t(Y).
t(iff(X,Y)) :- f(X),f(Y).
t(xor(X,Y)) :- t(X),f(Y).
t(xor(X,Y)) :- f(X),t(Y).
f(if(X,Y)) :- t(X),f(Y).
f(or(X,Y)) :- f(X),f(Y).
f(and(X,Y)) :- f(X).
f(and(X,Y)) :- f(Y).
f(iff(X,Y)) :- t(X),f(Y).
f(iff(X,Y)) :- f(X),t(Y).
f(xor(X,Y)) :- t(X),t(Y).
f(xor(X,Y)) :- f(X),f(Y).
RESOLUTION
or(R,Q) :- if(L,R), or(L,Q).
or(R,Q) :- if(L,R), or(Q,L).
or(Q,R) :- if(L,R), or(L,Q).
or(Q,R) :- if(L,R), or(Q,L).
MODUS PONENS
t(R) :- if(L,R), t(L).
t(R) :- or(f(L),R), t(L).
t(R) :- or(R,f(L)), t(L).
INFERENCE RULE
if( if(t(S),f(R)) , if(t(R),f(S)) ).
if it's sunny then it's not raining
ergo
if it's raining then it's not sunny
--------8<------
This is PROLOG PROGRAMMING.
I am taking a *different approach*.
Rather than CONSTRUCTING ANY WFF that is TRUE OR FALSE.
I work out which is true and which is false by the very construction.
So I have WFFT and WFFF.
That way I can do LOGIC in PROLOG. Actual LOGIC! And Backtrack from
Normal Clauses to Horn Clauses, theorem proving capability PLUS axiom
back tracking derivation capability in the 1 system. Normal Clauses
OVER Horn Clauses. This is just MY Method but it looks like it would
have general Utility.
Herc