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.
( 94, 0, 20 ), ( 94, 47, 10 ),
( 141, 0, 30 ), ( 141, 47, 20 ), ( 141, 94, 10 ),
( 188, 0, 40 ), ( 188, 47, 30 ), ( 188, 94, 20 ), ( 188, 141, 10 ),
( 235, 0, 50 ), ( 235, 47, 40 ), ( 235, 94, 30 ), ( 235, 141, 20 ), ( 235, 188, 10 ),
( 282, 0, 60 ), ( 282, 47, 50 ), ( 282, 94, 40 ), ( 282, 141, 30 ), ( 282, 188, 20 ), ( 282, 235, 10 ),
( 329, 0, 70 ), ( 329, 47, 60 ), ( 329, 94, 50 ), ( 329, 141, 40 ), ( 329, 188, 30 ), ( 329, 235, 20 ), ( 329, 282, 10 ),
( 376, 0, 80 ), ( 376, 47, 70 ), ( 376, 94, 60 ), ( 376, 141, 50 ), ( 376, 188, 40 ), ( 376, 235, 30 ), ( 376, 282, 20 ), ( 376, 329, 10 ),
( 423, 0, 90 ), ( 423, 47, 80 ), ( 423, 94, 70 ), ( 423, 141, 60 ), ( 423, 188, 50 ), ( 423, 235, 40 ), ( 423, 282, 30 ), ( 423, 329, 20 ), ( 423, 376, 10 ),
( 470, 0, 100 ), ( 470, 47, 90 ), ( 470, 94, 80 ), ( 470, 141, 70 ), ( 470, 188, 60 ), ( 470, 235, 50 ), ( 470, 282, 40 ), ( 470, 329, 30 ), ( 470, 376, 20 ), ( 470, 423, 10 ),
( 517, 0, 110 ), ( 517, 47, 100 ), ( 517, 94, 90 ), ( 517, 141, 80 ), ( 517, 188, 70 ), ( 517, 235, 60 ), ( 517, 282, 50 ), ( 517, 329, 40 ), ( 517, 376, 30 ), ( 517, 423, 20 ), ( 517, 470, 10 ),
( 564, 0, 120 ), ( 564, 47, 110 ), ( 564, 94, 100 ), ( 564, 141, 90 ), ( 564, 188, 80 ), ( 564, 235, 70 ), ( 564, 282, 60 ), ( 564, 329, 50 ), ( 564, 376, 40 ), ( 564, 423, 30 ), ( 564, 470, 20 ), ( 564, 517, 10 ),
( 611, 0, 130 ), ( 611, 47, 120 ), ( 611, 94, 110 ), ( 611, 141, 100 ), ( 611, 188, 90 ), ( 611, 235, 80 ), ( 611, 282, 70 ), ( 611, 329, 60 ), ( 611, 376, 50 ), ( 611, 423, 40 ), ( 611, 470, 30 ), ( 611, 517, 20 ), ( 611, 564, 10 ),
( 658, 0, 140 ), ( 658, 47, 130 ), ( 658, 94, 120 ), ( 658, 141, 110 ), ( 658, 188, 100 ), ( 658, 235, 90 ), ( 658, 282, 80 ), ( 658, 329, 70 ), ( 658, 376, 60 ), ( 658, 423, 50 ), ( 658, 470, 40 ), ( 658, 517, 30 ), ( 658, 564, 20 ), ( 658, 611, 10 ),
...
}
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 "}"