Jump to content

numbers as sets?


alan2here

Recommended Posts

An article I read in focus magazine stated that numbers could be represented only using sets as proposed by Von Neumann.

 

The concept as stated by the article is that "The number 1 is defined simply as the set containing just one thing: the Empty set. The next number, 2, is then the set containing 2 things: the Empty set, plus the set representing the number 1 - and so on, each successive number being built out of the previous set, plus the empty set."

 

Therefore

 

1 = {}

2 = {{}, {}}

3 = {{}, {{}, {}}}

 

and so where [math]s_{n}[/math] is the set that represents the number n and n > 0

[math]s_{n}[/math] = {{}, [math]s_{n-1}[/math]}

 

Is this correct and how is this abstraction helpful compared with for example?

 

3 = {{}, {}, {}}

or

3 = {1, 1, 1}

or

3 = 3

Link to comment
Share on other sites

The idea works OK for integers, but for real numbers not so much. Think of it this way: one is an arbitrary definition, our starting number. If you look up the numbers in the dictionary, it says it's the number that comes after the previous number. Ie, 2=1+1, 3=2+1, 4=3+1. This can be gotten from the successor function. So in this definition, each number is the sum of the previous number and 1, and in this case 1={}.

Edited by Mr Skeptic
Link to comment
Share on other sites

Sets don't contain duplicates, so {1,1,1} = {1} and { {},{},{} }= { {} }.

 

Correctly,

0 = {} the empty set

1 = { {} } the set containing the empty set

2 = { {} , {{}} }

3 = { {} , {{},{{}}} } et cetera

 

The point is that you only need the definition of a set, the successor function as defined and one axiom 'there exists an empty set' to get a definition for all the natural numbers.

 

Once you've got a solid definition like that, it's easier to define addition, multiplication etcetera.

 

 

The idea works OK for integers, but for real numbers not so much.
Well, you can eventually define the reals working this way, it just takes a very long time and isn't worth it. Edited by the tree
Consecutive posts merged.
Link to comment
Share on other sites

  • 2 weeks later...

here is a way to make this theory fits for real numbers,

 

i just thought of it,

 

n > 0

 

0 = ..{ }

1 = { { } }

2 = { { }, {{}} }

3 = { { }, {{},{{}}} }

4 = { { }, {{},{{},{{}}}} }

 

guess you notice that there is always a single empty set at the beginning of the global set

 

so, we can use it to define precision as follows,

note: i used ,{} to distinguish 0 from 1 ...

 

0.0 = { }

0.1 = { ,{} }

0.2 = { ,{},{} }

0.03 = { ,{ {},{},{} } }

0.004 = { ,{{ {},{},{},{} }}

 

example:

 

3.1235 = { { {}, { {},{}, { {},{},{}, { {},{},{},{},{} }}}}, {{},{{}}} }

................. DECIMAL ..................... INTEGER ....

 

so degree of precision is specified in levels of { }'s into the single set

 

PS, i should get a certification for this, you know

Link to comment
Share on other sites

I still don't quite get why turning numbers into a fractal is useful. Why not use binary representation to define numbers formally?

 

A variation of this almost seems useful in certain OO programming context where 3 = {{}{}{}} would probably have benefit in terms if abstraction, but would be very inefficient.

 

A fraction, or a floating point like implementation seems like a good way of representing a real number.

Edited by alan2here
Link to comment
Share on other sites

but in the end, this solution does not solve the main problem

 

saving space .. no,

 

0 = __

1 = {}

2 = {}{}

3 = {}{}{}

4 = {}{}{}{}

5 = {}{}{}{}{}

6 = {}{}{}{}{}{}

7 = {}{}{}{}{}{}{}

8 = {}{}{}{}{}{}{}{}

9 = {}{}{}{}{}{}{}{}{}

 

i think i should waste time on more beneficiary ...

Link to comment
Share on other sites

Of course the point here is nothing to do with saving space or efficiency, the whole idea obviously gloriously inefficient and unnecessary. Formality at this level really exists for it's own sake.

 

If you give a separate definition for each number then you are claiming "there exists a '1'", "there exists a '2'", "there exists a '3'" etc and you need infinite axioms just to get an infinite amount of natural numbers - which just wont do when trying to create a well defined system.

 

With the Von Neumann system all you need is "there exists an empty set" and "every set has a containing set".

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.