The rational number 47/4 as a set

One way to define a rational number (a-b)/c is to define it as the (infinite) set of all 3-tuples of natural numbers (a1, b1, c1) for which (a-b)/c = (a1-b1)/c1 (b is needed for negative numbers).

Klick on a 3-tuple to see how it may be defined as a set.

47/4 = (47-0)/4 = {

( 47, 0, 4 ),

( 94, 0, 8 ), ( 94, 47, 4 ),

( 141, 0, 12 ), ( 141, 47, 8 ), ( 141, 94, 4 ),

( 188, 0, 16 ), ( 188, 47, 12 ), ( 188, 94, 8 ), ( 188, 141, 4 ),

( 235, 0, 20 ), ( 235, 47, 16 ), ( 235, 94, 12 ), ( 235, 141, 8 ), ( 235, 188, 4 ),

( 282, 0, 24 ), ( 282, 47, 20 ), ( 282, 94, 16 ), ( 282, 141, 12 ), ( 282, 188, 8 ), ( 282, 235, 4 ),

( 329, 0, 28 ), ( 329, 47, 24 ), ( 329, 94, 20 ), ( 329, 141, 16 ), ( 329, 188, 12 ), ( 329, 235, 8 ), ( 329, 282, 4 ),

( 376, 0, 32 ), ( 376, 47, 28 ), ( 376, 94, 24 ), ( 376, 141, 20 ), ( 376, 188, 16 ), ( 376, 235, 12 ), ( 376, 282, 8 ), ( 376, 329, 4 ),

( 423, 0, 36 ), ( 423, 47, 32 ), ( 423, 94, 28 ), ( 423, 141, 24 ), ( 423, 188, 20 ), ( 423, 235, 16 ), ( 423, 282, 12 ), ( 423, 329, 8 ), ( 423, 376, 4 ),

( 470, 0, 40 ), ( 470, 47, 36 ), ( 470, 94, 32 ), ( 470, 141, 28 ), ( 470, 188, 24 ), ( 470, 235, 20 ), ( 470, 282, 16 ), ( 470, 329, 12 ), ( 470, 376, 8 ), ( 470, 423, 4 ),

( 517, 0, 44 ), ( 517, 47, 40 ), ( 517, 94, 36 ), ( 517, 141, 32 ), ( 517, 188, 28 ), ( 517, 235, 24 ), ( 517, 282, 20 ), ( 517, 329, 16 ), ( 517, 376, 12 ), ( 517, 423, 8 ), ( 517, 470, 4 ),

( 564, 0, 48 ), ( 564, 47, 44 ), ( 564, 94, 40 ), ( 564, 141, 36 ), ( 564, 188, 32 ), ( 564, 235, 28 ), ( 564, 282, 24 ), ( 564, 329, 20 ), ( 564, 376, 16 ), ( 564, 423, 12 ), ( 564, 470, 8 ), ( 564, 517, 4 ),

( 611, 0, 52 ), ( 611, 47, 48 ), ( 611, 94, 44 ), ( 611, 141, 40 ), ( 611, 188, 36 ), ( 611, 235, 32 ), ( 611, 282, 28 ), ( 611, 329, 24 ), ( 611, 376, 20 ), ( 611, 423, 16 ), ( 611, 470, 12 ), ( 611, 517, 8 ), ( 611, 564, 4 ),

( 658, 0, 56 ), ( 658, 47, 52 ), ( 658, 94, 48 ), ( 658, 141, 44 ), ( 658, 188, 40 ), ( 658, 235, 36 ), ( 658, 282, 32 ), ( 658, 329, 28 ), ( 658, 376, 24 ), ( 658, 423, 20 ), ( 658, 470, 16 ), ( 658, 517, 12 ), ( 658, 564, 8 ), ( 658, 611, 4 ),

...

}

The equation (a-b)/c = (a1-b1)/c1 is equivalent to a·c1 + b1·c = a1·c + b·c1 - so only addition and multiplication of natural numbers are needed to define the rational numbers.

For rational numbers Q, Q1 as defined above, Q < Q1 is defined as a·c1 + b1·c < a1·c + b·c1 for one/all (a, b, c) ∈ Q, (a1, b1, c1) ∈ Q1.

Q + Q1 is defined as (a2-b2)/c2, where a2 = a·c1 + a1·c, b2 = b·c1 + b1·c, c2 = c·c1 for one/all (a, b, c) ∈ Q, (a1, b1, c1) ∈ Q1.

Be aware that (a2-b2)/c2 is simply a notation for the set determined by a2, b2 and c2 here - not an expression using subtraction and division.

The definition for Q + Q1 above simply is a transformation of the expression (a-b)/c + (a1-b1)/c1.

Assuming that a,c is minimal for a positive rational number a/c or (a-0)/c, we can enumerate all members of the set by doing this:

Let n be 1
Repeat:
  For all n1 from 0 to n-1:
    Let a1 be n·a
    Let b1 be n1·a
    Let c1 be (n-n1)·c
    Enumerate (a1,b1,c1)
  Increase n by 1

The enumeration as Python function with a limiting parameter k which will cause the function to enumerate (k·(k+1))/2 elements of a/c:

def print_rational_number(a,c,k):
    print str(a)+'/'+str(c)+' = ('+str(a)+'-0)/'+str(c)+' = {'
    for n in range(1,k+1):
        for n1 in range(n):
            a1=n*a
            b1=n1*a
            c1=(n-n1)*c
            print '( '+str(a1)+', '+str(b1)+', '+str(c1)+' ),'
        print
    print "..."
    print "}"

(back to √2)