Alphabeta Math
How statement and proof provenance work

The first chip identifies the source of the statement or construction; the second identifies the source of its local proof or verification.

  • Literature-sourced: the exact statement appears in a cited source; only wording and notation differ.
  • AI-adapted: a semantically identical restatement of literature-sourced material, modulo indexing, notation, and boundary cases adopted by the library.
  • AI-generated: a genuinely novel statement formulated by AI, with no source for the claim itself.

These labels describe origin, not correctness: citations and verification chips remain separate evidence.

✓ 29 results · all verified · 22 also independently AI-judged
Every result on this page is machine-checked by a proof checker and read in full and owner-audited; the judge is an additional, independent cross-model AI review of the proofs. The 7 not AI-judged were verified by owner audit (typically over a confirmed judge false positive), not failures.

Construction of the Real Numbers via Cauchy Sequences

1 · Prerequisites

2 · Summary

Objective. This page constructs the real number field R via Cauchy sequences, starting from the fundamental definitions of the integers and the rational numbers, and proves that R is a totally ordered, complete field. The natural numbers N, with their arithmetic and order, are the assumed starting point.

Layer 1: from N to Z. Subtraction fails in N. The integers are defined as equivalence classes of pairs (a,b) of naturals, where (a,b) encodes the formal difference a−b (The integers as equivalence classes of pairs of naturals), with arithmetic defined on representatives (Arithmetic on the integers). The result is a commutative ring (The integers form a commutative ring): a set with an addition and a multiplication, both associative and commutative, where multiplication distributes over addition, addition has an identity 0 and an inverse for every element, and multiplication has an identity 1. The integers also carry a total order, defined on representatives by (a,b)≤(c,d) exactly when a+d≤b+c: any two integers are comparable, and the order is compatible with addition and with multiplication by nonnegative elements, so Z is a totally ordered commutative ring.

Layer 2: from Z to Q. Division fails in Z. The rationals are equivalence classes of pairs of integers with nonzero second component, encoding formal quotients a/b. The result is a field: a commutative ring in which every nonzero element has a multiplicative inverse. The total order extends from Z: any two rationals remain comparable, and the order stays compatible with the arithmetic; a field equipped with such an order is a totally ordered field.

Layer 3: from Q to R. Limits fail in Q: sequences such as 1,1.4,1.41,1.414,… cluster ever more tightly yet converge to no rational. A Cauchy sequence is one whose terms eventually stay within any prescribed distance of one another (Cauchy sequence of rationals). The reals are equivalence classes of Cauchy sequences of rationals, two sequences being identified when their difference is a null sequence (Null sequence). Arithmetic passes to the quotient, the null sequences form a maximal ideal so that R is a field, and the order extends from Q.

Destination. R is a totally ordered field that is complete: every Cauchy sequence of reals converges to a real. Completeness is the payoff of the construction, and the construction cannot be iterated to gain anything further: The reals are complete already gives every Cauchy sequence of reals a real limit.

3 · Logical flowchart

4 · Definitions, theorems and proofs

DefinitionDefinition: Literature-sourcedProof: Not applicableaudited 2026-07-24Open item page →

The integers as equivalence classes of pairs of naturals

Definition

On the set N×N of pairs of natural numbers, define

(a,b)∼(c,d)  ⟺  a+d=b+c.

This is an equivalence relation (The integer-defining relation is an equivalence relation ↗). The integers are the quotient

Z:=(N×N)/∼,

and we write [(a,b)] for the equivalence class of (a,b).

Remarks

  • The pair (a,b) encodes the formal difference a−b; the defining relation a+d=b+c is the equation "a−b=c−d" restated using only addition, which is all N has.
  • N and its arithmetic (commutativity, associativity, distributivity, cancellation of addition, the order) are taken as given background throughout this construction.
LemmaStatement: Literature-sourcedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

The integer-defining relation is an equivalence relation

Statement

The relation (a,b)∼(c,d)  ⟺  a+d=b+c on N×N (The integers as equivalence classes of pairs of naturals) is an equivalence relation.

Facts & Assumptions

Given: The relation (a,b)∼(c,d)  ⟺  a+d=b+c on N×N.

[A1]

Addition on N is commutative and associative.

[A2]

Cancellation in N: if x+z=y+z then x=y.

Proof

technique · direct
1.1

Reflexivity: for any (a,b) we have a+b=b+a, so (a,b)∼(a,b).

A1
1.2

Symmetry: suppose (a,b)∼(c,d), i.e. a+d=b+c. Then c+b=d+a, which is the defining equation for (c,d)∼(a,b).

A1
1.3

Suppose (a,b)∼(c,d) and (c,d)∼(e,f), i.e. a+d=b+c and c+f=d+e.

given
2.1

Adding the two equations: (a+d)+(c+f)=(b+c)+(d+e).

step 1.3algebra
3.1

Regrouping both sides: (a+f)+(c+d)=(b+e)+(c+d).

step 2.1A1
4.1

Cancelling (c+d): a+f=b+e, so (a,b)∼(e,f); the relation is transitive.

step 3.1A2
5.1

The relation is reflexive, symmetric, and transitive, hence an equivalence relation.

step 1.1step 1.2step 4.1∎
DefinitionDefinition: Literature-sourcedProof: Not applicableaudited 2026-07-24Open item page →

Arithmetic on the integers

Definition

On Z (The integers as equivalence classes of pairs of naturals) define, on representatives,

[(a,b)]+[(c,d)]:=[(a+c,  b+d)], [(a,b)]⋅[(c,d)]:=[(ac+bd,  ad+bc)], −[(a,b)]:=[(b,a)],0:=[(0,0)],1:=[(1,0)].

These do not depend on the chosen representatives (Integer addition and negation are well defined ↗, Integer multiplication is well defined ↗).

Remarks

  • The product formula is forced by the intended meaning: if (a,b) stands for a−b and (c,d) for c−d, then (a−b)(c−d)=(ac+bd)−(ad+bc).
  • Negation swaps the components: −(a−b)=b−a.
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

Integer addition and negation are well defined

Statement

The operations [(a,b)]+[(c,d)]=[(a+c,b+d)] and −[(a,b)]=[(b,a)] on Z (Arithmetic on the integers) are independent of the chosen representatives.

Facts & Assumptions

Given: Pairs with (a,b)∼(a′,b′) and (c,d)∼(c′,d′) in the sense of The integers as equivalence classes of pairs of naturals.

[A1]

Addition on N is commutative and associative.

Proof

technique · direct
1.1

By hypothesis a+b′=b+a′.

given
1.2

By hypothesis c+d′=d+c′.

given
2.1

Adding the two equations: (a+b′)+(c+d′)=(b+a′)+(d+c′).

step 1.1step 1.2algebra
2.2

Commuting the equation of step 1.1: b+a′=a+b′, which is the defining equation for (b,a)∼(b′,a′); negation is well defined.

step 1.1A1
3.1

Regrouping both sides: (a+c)+(b′+d′)=(b+d)+(a′+c′), which is the defining equation for (a+c, b+d)∼(a′+c′, b′+d′); addition is well defined.

step 2.1A1
4.1

Both operations are independent of representatives.

step 3.1step 2.2∎
LemmaStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

Integer multiplication is well defined

Statement

The operation [(a,b)]⋅[(c,d)]=[(ac+bd, ad+bc)] on Z (Arithmetic on the integers) is independent of the chosen representatives.

Facts & Assumptions

Given: Pairs with (a,b)∼(a′,b′) and (c,d)∼(c′,d′) in the sense of The integers as equivalence classes of pairs of naturals.

[A1]

Addition on N is commutative and associative.

[A2]

Multiplication on N is commutative.

[A3]

Distributivity in N: x(y+z)=xy+xz.

Proof

technique · direct
1.1

By hypothesis a+b′=b+a′; write s for this common value.

given
1.2

Regrouping and factoring: (ac+bd)+(a′d+b′c)=c(a+b′)+d(b+a′).

A1A2A3
1.3

Regrouping and factoring: (ad+bc)+(a′c+b′d)=d(a+b′)+c(b+a′).

A1A2A3
2.1

By step 1.1 both right-hand sides equal cs+ds, so (ac+bd)+(a′d+b′c)=(ad+bc)+(a′c+b′d).

step 1.1step 1.2step 1.3
3.1

That equation is precisely the defining relation (ac+bd, ad+bc)∼(a′c+b′d, a′d+b′c): the product class is unchanged when the first factor's representative changes.

step 2.1
4.1

The product formula is symmetric in its two arguments: swapping (a,b)↔(c,d) sends (ac+bd, ad+bc) to (ca+db, cb+da), the same pair. Hence, by the argument of steps 1.1–3.1 applied to the second factor, the product class is also unchanged when (c,d) is replaced by (c′,d′).

step 3.1A1A2
5.1

Replacing first (a,b) by (a′,b′) and then (c,d) by (c′,d′): [(a,b)]⋅[(c,d)]=[(a′,b′)]⋅[(c,d)]=[(a′,b′)]⋅[(c′,d′)]; multiplication is well defined.

step 3.1step 4.1∎
TheoremStatement: Literature-sourcedProof: AI-adaptedprecheck passverified 2026-08-03 (gpt-5.6-sol-codex-subscription)Open item page →

The integers form a commutative ring

Statement

(Z,+,⋅,0,1) with the operations of Arithmetic on the integers is a commutative ring with multiplicative identity, in which every element has the additive inverse −[(a,b)]=[(b,a)].

Facts & Assumptions

Given: Z with the operations of Arithmetic on the integers.

[L1]

Addition on N is commutative and associative, with zero as a two-sided identity (Addition is commutative, Addition is associative, Left identity for addition).

[L2]

Multiplication on N is commutative and associative, distributes over addition, and has the usual zero and identity laws (Multiplication is commutative, Multiplication is associative, Distributivity and the successor law for multiplication, Zero and one under multiplication).

[L3]

The integer operations are independent of representatives (Integer addition and negation are well defined, Integer multiplication is well defined).

Proof

technique · direct
1.1

By [L3], each axiom may be verified on arbitrary fixed representatives (a,b),(c,d),(e,f).

L3suffices
1.2

Associativity of +: ((a,b)+(c,d))+(e,f) and (a,b)+((c,d)+(e,f)) both equal (a+c+e,  b+d+f).

L1
1.3

Commutativity of +: (a+c, b+d)=(c+a, d+b).

L1
1.4

Additive identity: (a,b)+(0,0)=(a+0, b+0)=(a,b).

L1
1.5

Additive inverses: (a,b)+(b,a)=(a+b, b+a)∼(0,0), since (a+b)+0=(b+a)+0.

L1
1.6

Commutativity of ⋅: swapping (a,b)↔(c,d) sends (ac+bd, ad+bc) to (ca+db, cb+da), the same pair.

L1L2
1.7

Multiplicative identity: (a,b)⋅(1,0)=(a⋅1+b⋅0,  a⋅0+b⋅1)=(a,b).

L1L2
1.8

Associativity of ⋅: expanding, both ((a,b)(c,d))(e,f) and (a,b)((c,d)(e,f)) equal (ace+adf+bcf+bde,  acf+ade+bce+bdf).

L1L2
1.9

Distributivity: (a,b)⋅((c,d)+(e,f))=(a(c+e)+b(d+f),  a(d+f)+b(c+e))=(ac+bd, ad+bc)+(ae+bf, af+be)=(a,b)(c,d)+(a,b)(e,f).

L1L2
2.1

Steps 1.2–1.9 verify all axioms: (Z,+,⋅,0,1) is a commutative ring with identity and additive inverses.

step 1.1step 1.2step 1.3step 1.4step 1.5step 1.6step 1.7step 1.8step 1.9∎
DefinitionDefinition: AI-adaptedProof: Not applicableaudited 2026-07-24Open item page →

Order on the integers

Definition

For integers x=[(a,b)] and y=[(c,d)] (The integers as equivalence classes of pairs of naturals) define

x≤y  ⟺  a+d≤b+cin N.

Write x<y when x≤y and x≠y. An integer x is positive when 0<x; on representatives, 0<[(a,b)] exactly when b<a.

Remarks

TheoremStatement: AI-adaptedProof: AI-adaptedprecheck passverified 2026-08-03 (gpt-5.6-sol-codex-subscription)Open item page →

The integers form a totally ordered ring

Statement

The relation of Order on the integers is well defined and is a total order on Z; it is compatible with addition (x≤y implies x+z≤y+z) and positives are closed under multiplication (0<x and 0<y imply 0<xy). Thus Z is a totally ordered commutative ring.

Facts & Assumptions

Given: Integers x=[(a,b)], y=[(c,d)], z=[(e,f)] with the operations of Arithmetic on the integers.

[L1]

Addition on N is commutative and associative (Addition is commutative, Addition is associative).

[L2]

The order on N is total, antisymmetric, and transitive (≤ is a linear order on N).

[L3]

Natural order is translation-invariant: x≤y  ⟺  x+z≤y+z (Order is compatible with addition).

[L4]

By the definition of natural order, x≤y exactly when y=x+k for some natural k; if x<y, such a gap is nonzero (Order on the natural numbers).

[L5]

Natural multiplication is commutative and associative, distributes over addition, and has the usual zero and identity laws; multiplication by a nonzero natural preserves strict order (Multiplication is commutative, Multiplication is associative, Distributivity and the successor law for multiplication, Zero and one under multiplication, Order is compatible with multiplication).

[L6]

The integer operations make Z a commutative ring with multiplicative identity (The integers form a commutative ring).

Proof

technique · direct
1.1

Suppose (a,b)∼(a′,b′) and (c,d)∼(c′,d′), i.e. a+b′=b+a′ and c+d′=d+c′.

given
1.2

Suppose a+d≤b+c.

given
1.3

Totality: in N either a+d≤b+c or b+c≤a+d, so x≤y or y≤x.

L2
1.4

Antisymmetry: x≤y and y≤x give a+d≤b+c and b+c≤a+d, hence a+d=b+c, which is x=y as classes.

L2
1.5

Transitivity: from a+d≤b+c and c+f≤d+e, adding gives (a+d)+(c+f)≤(b+c)+(d+e); regrouping, (a+f)+(c+d)≤(b+e)+(c+d); cancelling, a+f≤b+e, i.e. x≤z.

L1L2L3
1.6

Compatibility with addition: x+z≤y+z reads (a+e)+(d+f)≤(b+f)+(c+e), which regroups to (a+d)+(e+f)≤(b+c)+(e+f), equivalent to a+d≤b+c, i.e. x≤y.

L1L3
1.7

Suppose 0<x and 0<y, i.e. b<a and d<c.

given
2.1

Adding (a′+d′): (a+d)+(a′+d′)≤(b+c)+(a′+d′).

step 1.2L3
2.2

Regrouping with the equations of step 1.1: (b+c)+(a′+d′)=(b+a′)+(c+d′)=(a+b′)+(d+c′)=(a+d)+(b′+c′).

step 1.1L1
2.3

Write a=b+k and c=d+m with nonzero naturals k,m.

step 1.7L4
3.1

So (a+d)+(a′+d′)≤(a+d)+(b′+c′); cancelling (a+d) gives a′+d′≤b′+c′. Applying the same argument with primed and unprimed representatives exchanged proves the converse implication, so the relation is independent of representatives.

step 1.1step 2.1step 2.2L3
3.2

Expanding both components of xy=[(ac+bd, ad+bc)]: ac+bd=(b+k)(d+m)+bd=(bd+bm+kd+bd)+km and ad+bc=(b+k)d+b(d+m)=bd+kd+bd+bm, so ac+bd=(ad+bc)+km.

step 2.3L1L5
4.1

Since k,m are nonzero, 0<k and 0<m by [L4]. Hence [L5] gives 0=0⋅m<km, and step 3.2 yields ad+bc<ac+bd, which is 0<xy.

step 2.3step 3.2L2L4L5
5.1

The order is well defined, total, compatible with addition, and positives are closed under multiplication; together with [L6], this makes Z a totally ordered commutative ring.

step 3.1step 1.3step 1.4step 1.5step 1.6step 4.1L6∎
LemmaStatement: AI-adaptedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

The integers have no zero divisors; multiplicative cancellation

Statement

If x,y∈Z are nonzero then xy≠0. Consequently, if xz=yz and z≠0, then x=y.

Facts & Assumptions

Given: Nonzero integers x,y.

[L1]

Z is a totally ordered ring; in particular trichotomy holds (each integer is negative, zero, or positive) and positives are closed under multiplication (The integers form a totally ordered ring).

[L2]

Ring arithmetic in Z: (−u)v=−(uv), −(−u)=u, and distributivity (The integers form a commutative ring).

Proof

technique · cases
1.1

By trichotomy, each of x and y is positive or negative; split on the sign pattern.

L1cases-exhaustive
1.2

Case both positive: 0<xy by closure of positives, so xy≠0.

assume-case bothL1
1.3

Case exactly one negative, say y<0 (the other case is identical by commutativity): 0<−y, so 0<x(−y)=−(xy), hence xy<0 and xy≠0.

assume-case mixedL1L2
1.4

Case both negative: 0<−x and 0<−y, so 0<(−x)(−y)=xy, and xy≠0.

assume-case negnegL1L2
2.1

In every case xy≠0: the product of nonzero integers is nonzero.

step 1.2step 1.3step 1.4cases
3.1

Cancellation: if xz=yz with z≠0, then (x−y)z=xz−yz=0; were x−y≠0, the product would be nonzero, so x−y=0, i.e. x=y.

step 2.1L2∎
LemmaStatement: AI-adaptedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

The naturals embed in the integers

Statement

The map ι(n)=[(n,0)] is injective and preserves addition, multiplication, and order. Its image is exactly the set of nonnegative integers, so every x≥0 in Z is ι(k) for a unique natural k.

Facts & Assumptions

Given: The map ι:N→Z, ι(n)=[(n,0)].

[A1]

Arithmetic identities in N: x+0=x, 0+x=x, x⋅0=0, 0⋅x=0, x⋅1=x.

[A2]

The order on N, and: x≤y iff y=x+k for some k.

Proof

technique · direct
1.1

Injectivity: [(m,0)]=[(n,0)] means m+0=0+n, i.e. m=n.

A1
1.2

Addition: ι(m)+ι(n)=[(m+n, 0+0)]=ι(m+n).

A1
1.3

Multiplication: ι(m) ι(n)=[(mn+0⋅0,  m⋅0+0⋅n)]=ι(mn).

A1
1.4

Order: ι(m)≤ι(n) reads m+0≤0+n, i.e. m≤n.

A1A2
1.5

Image: if 0≤[(a,b)] then b≤a, so a=b+k and (a,b)∼(k,0), giving [(a,b)]=ι(k); conversely 0≤ι(k) for every k.

A2algebra
2.1

ι embeds N into Z, preserving arithmetic and order, with image the nonnegative integers.

step 1.1step 1.2step 1.3step 1.4step 1.5∎
DefinitionDefinition: Literature-sourcedProof: Not applicableaudited 2026-07-24Open item page →

The rationals as equivalence classes of pairs of integers

Definition

On the set of pairs (a,b) with a,b∈Z and b≠0, define

(a,b)∼(c,d)  ⟺  ad=cbin Z.

This is an equivalence relation (The rational-defining relation is an equivalence relation ↗). The rationals are the quotient Q, and [(a,b)] is written a/b.

Remarks

  • The pair (a,b) encodes the formal quotient a/b; the relation ad=cb is "a/b=c/d" cleared of denominators, using only the ring arithmetic of Z (The integers form a commutative ring).
LemmaStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

The rational-defining relation is an equivalence relation

Statement

The relation (a,b)∼(c,d)  ⟺  ad=cb on pairs of integers with nonzero second component (The rationals as equivalence classes of pairs of integers) is an equivalence relation.

Facts & Assumptions

Given: Pairs (a,b),(c,d),(e,f) of integers with b,d,f≠0.

[L1]

Z is a commutative ring (The integers form a commutative ring).

[L2]

Multiplicative cancellation in Z: ud=vd with d≠0 implies u=v (The integers have no zero divisors; multiplicative cancellation).

Proof

technique · direct
1.1

Reflexivity: ab=ba, so (a,b)∼(a,b).

L1
1.2

Symmetry: if ad=cb then cb=ad, which is the defining equation for (c,d)∼(a,b).

L1
1.3

Suppose (a,b)∼(c,d) and (c,d)∼(e,f), i.e. ad=cb and cf=ed.

given
2.1

Multiplying the first equation by f and the second by b: adf=cbf and cfb=edb.

step 1.3L1
3.1

Chaining: (af)d=adf=cbf=cfb=edb=(eb)d.

step 2.1L1
4.1

Cancelling the nonzero d: af=eb, so (a,b)∼(e,f); the relation is transitive.

step 3.1L2
5.1

The relation is reflexive, symmetric, and transitive, hence an equivalence relation.

step 1.1step 1.2step 4.1∎
DefinitionDefinition: Literature-sourcedProof: Not applicableaudited 2026-07-24Open item page →

Arithmetic on the rationals

Definition

On Q (The rationals as equivalence classes of pairs of integers) define, on representatives,

[(a,b)]+[(c,d)]:=[(ad+cb,  bd)],[(a,b)]⋅[(c,d)]:=[(ac,  bd)], −[(a,b)]:=[(−a,b)],0:=[(0,1)],1:=[(1,1)],

and, for [(a,b)]≠0 (equivalently a≠0), the inverse [(a,b)]−1:=[(b,a)].

Remarks

LemmaStatement: AI-adaptedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

Rational arithmetic is well defined

Statement

Sum, product, and negation of Arithmetic on the rationals are independent of the chosen representatives.

Facts & Assumptions

Given: Pairs with (a,b)∼(a′,b′) and (c,d)∼(c′,d′) (The rationals as equivalence classes of pairs of integers), all second components nonzero.

[L1]

Z is a commutative ring (The integers form a commutative ring).

Proof

technique · direct
1.1

By hypothesis ab′=a′b and cd′=c′d.

given
2.1

Product: (ac)(b′d′)=(ab′)(cd′)=(a′b)(c′d)=(a′c′)(bd), so (ac, bd)∼(a′c′, b′d′).

step 1.1L1
2.2

Sum: (ad+cb)(b′d′)=(ab′)(dd′)+(cd′)(bb′)=(a′b)(dd′)+(c′d)(bb′)=(a′d′+c′b′)(bd), so (ad+cb, bd)∼(a′d′+c′b′, b′d′).

step 1.1L1
2.3

Negation: from ab′=a′b, (−a)b′=(−a′)b, so (−a,b)∼(−a′,b′).

step 1.1L1
3.1

All three operations are independent of representatives.

step 2.1step 2.2step 2.3∎
LemmaStatement: AI-adaptedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-25Open item page →

The reciprocal on the rationals is well-defined

Statement

On Q∖{0} the reciprocal [(a,b)]−1:=[(b,a)] (Arithmetic on the rationals) is independent of the chosen representative: if (a,b)∼(a′,b′) with a,a′,b,b′≠0, then (b,a)∼(b′,a′). Hence the reciprocal is a well-defined function on Q∖{0}.

Facts & Assumptions

Given: Nonzero rationals represented by integer pairs (a,b) and (a′,b′) with a,a′,b,b′≠0, where (x,y)∼(z,w)  ⟺  xw=zy in Z (The rationals as equivalence classes of pairs of integers).

[L1]

Multiplication in Z is commutative (The integers form a commutative ring).

Proof

technique · direct
1.1

By hypothesis (a,b)∼(a′,b′), that is ab′=a′b in Z.

given
2.1

Commuting each product by [L1], b′a=ba′, hence ba′=b′a.

step 1.1L1
3.1

The equation ba′=b′a is exactly the defining relation (b,a)∼(b′,a′), and since a,a′≠0 the pairs (b,a),(b′,a′) are legal rational representatives; therefore [(a,b)]−1=[(b,a)]=[(b′,a′)]=[(a′,b′)]−1, so the reciprocal is well-defined on Q∖{0}.

step 2.1given∎
TheoremStatement: Literature-sourcedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

The rationals form a field

Statement

(Q,+,⋅,0,1) with the operations of Arithmetic on the rationals is a field: a commutative ring with 1≠0 in which every nonzero element has a multiplicative inverse.

Facts & Assumptions

Given: Rationals with representatives (a,b),(c,d),(e,f), second components nonzero.

[L1]

The operations are independent of representatives (Rational arithmetic is well defined).

[L2]

Z is a commutative ring in which 1≠0 (The integers form a commutative ring; 1≠0 because 1≠0 in N).

[L3]

Z has no zero divisors and admits cancellation (The integers have no zero divisors; multiplicative cancellation).

Proof

technique · direct
1.1

By [L1], each axiom may be verified on fixed representatives.

L1suffices
1.2

Associativity of +: both ((a,b)+(c,d))+(e,f) and (a,b)+((c,d)+(e,f)) have representative (adf+cbf+ebd,  bdf).

L2
1.3

Commutativity of +: (ad+cb, bd) and (cb+ad, db) are equal pairs.

L2
1.4

Additive identity: (a,b)+(0,1)=(a⋅1+0⋅b,  b⋅1)=(a,b).

L2
1.5

Additive inverses: (a,b)+(−a,b)=(ab−ab,  b2)=(0,b2)∼(0,1).

L2
1.6

Associativity and commutativity of ⋅: ((ac)e, (bd)f)=(a(ce), b(df)) and (ac, bd)=(ca, db).

L2
1.7

Multiplicative identity: (a,b)(1,1)=(a,b); and 1≠0 since 1⋅1≠0⋅1.

L2
1.8

Distributivity: (a,b)((c,d)+(e,f)) has representative (a(cf+ed),  b(df)), while (a,b)(c,d)+(a,b)(e,f) has representative (acbf+aebd,  b2df)=(b(acf+aed),  b(bdf)); cancelling the common nonzero factor b these are equivalent.

L2L3
1.9

Inverses: [(a,b)]=0 iff a⋅1=0⋅b iff a=0; for a≠0, (a,b)(b,a)=(ab, ba)∼(1,1).

L2
2.1

All field axioms hold: Q is a field.

step 1.1step 1.2step 1.3step 1.4step 1.5step 1.6step 1.7step 1.8step 1.9∎
DefinitionDefinition: AI-adaptedProof: Not applicableaudited 2026-07-24Open item page →

Order on the rationals

Definition

Every rational has a representative with positive denominator (if b<0 then (a,b)∼(−a,−b) with −b>0, Every rational has a positive-denominator representative ↗). For representatives with b>0 and d>0 define

[(a,b)]≤[(c,d)]  ⟺  ad≤cbin Z.

A rational x is positive when 0<x; on such representatives, 0<[(a,b)] exactly when 0<a.

Remarks

LemmaStatement: AI-adaptedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-25Open item page →

Every rational has a positive-denominator representative

Statement

Every rational has a representative (a,b) with b>0: for a class [(a,b)] (where b≠0), if b>0 take (a,b) itself, and if b<0 then (a,b)∼(−a,−b) with −b>0. Consequently the order on Q (Order on the rationals), which is stated on positive-denominator representatives, is defined on all of Q.

Facts & Assumptions

Given: A rational represented by (a,b) with a,b∈Z, b≠0, and the relation (x,y)∼(z,w)  ⟺  xw=zy (The rationals as equivalence classes of pairs of integers).

[L1]

Trichotomy in Z: each nonzero integer is either >0 or <0, and b<0 iff −b>0 (The integers form a totally ordered ring).

[L2]

In the commutative ring Z, a(−b)=−(ab)=(−a)b (both products are the additive inverse of ab, by distributivity) (The integers form a commutative ring).

Proof

technique · direct
1.1

Since b≠0, by trichotomy [L1] either b>0 or b<0.

givenL1
2.1

If b>0, the representative (a,b) already has positive denominator.

step 1.1
2.2

If b<0, then −b>0 by [L1], and a(−b)=(−a)b by [L2] is exactly the defining relation (a,b)∼(−a,−b); so (−a,−b) represents the same class and has positive denominator −b.

step 1.1L1L2
3.1

In either case the class has a representative with positive denominator; hence the order Order on the rationals, stated on such representatives, is defined for every rational.

step 2.1step 2.2∎
TheoremStatement: AI-adaptedProof: AI-generatedprecheck passverified 2026-08-02 (claude-opus-5)Open item page →

The rationals form a totally ordered field

Statement

The relation of Order on the rationals is well defined and makes the field Q (The rationals form a field) a totally ordered field: the order is total, x≤y implies x+z≤y+z, and 0<x, 0<y imply 0<xy.

Facts & Assumptions

Given: Rationals x=[(a,b)], y=[(c,d)], z=[(e,f)] with b,d,f>0.

[L1]

Z is a totally ordered commutative ring; positives are closed under products (The integers form a totally ordered ring).

Proof

technique · direct
1.1

Order-scaling in Z: for p>0, if u<v then 0<(v−u)p, so up<vp; conversely if up≤vp and v<u then vp<up, impossible; hence u≤v iff up≤vp.

L1algebra
1.2

Suppose (a,b)∼(a′,b′) and (c,d)∼(c′,d′) with b′,d′>0, i.e. ab′=a′b and cd′=c′d; suppose also ad≤cb.

given
1.3

Totality: ad≤cb or cb≤ad in Z, so x≤y or y≤x.

L1
1.4

Antisymmetry: ad≤cb and cb≤ad give ad=cb, i.e. x=y as classes.

L1
1.5

Positive products: if 0<x and 0<y then 0<a and 0<c, so xy=[(ac, bd)] has ac>0 and bd>0, hence 0<xy.

L1
1.6

For transitivity, let z=[(e,f)] with f>0 and suppose additionally y≤z, i.e. cf≤ed.

given
2.1

Scaling the hypothesis ad≤cb by b′d′>0: (ad)(b′d′)≤(cb)(b′d′).

step 1.1step 1.2L1
2.2

Rearranging both sides with ab′=a′b and cd′=c′d: (ad)(b′d′)=(ab′)(dd′)=(a′b)(dd′)=(a′d′)(bd) and (cb)(b′d′)=(cd′)(bb′)=(c′d)(bb′)=(c′b′)(bd).

step 1.2L1
2.3

Transitivity: from ad≤cb and cf≤ed, scaling by f>0 and b>0 gives (af)d=(ad)f≤(cb)f=(cf)b≤(ed)b=(eb)d; cancelling d>0 via order-scaling, af≤eb, i.e. x≤z.

step 1.1step 1.2step 1.6L1
2.4

Compatibility with addition: x+z≤y+z reads (af+eb)(df)≤(cf+ed)(bf), which expands to (ad)f2+(eb)(df)≤(cb)f2+(ed)(bf); the second terms are equal, so this is (ad)f2≤(cb)f2, equivalent by order-scaling with f2>0 to ad≤cb, i.e. x≤y.

step 1.1L1
3.1

Combining: (a′d′)(bd)≤(c′b′)(bd) with bd>0, so a′d′≤c′b′ by order-scaling: the order is independent of representatives.

step 2.1step 2.2step 1.1L1
4.1

The order is well defined, total, compatible with addition, and positives are closed under multiplication: Q is a totally ordered field.

step 3.1step 1.3step 1.4step 2.3step 2.4step 1.5∎
LemmaStatement: AI-adaptedProof: AI-generatedprecheck passverified 2026-08-02 (claude-opus-5)Open item page →

The integers embed in the rationals

Statement

The map j(k)=[(k,1)] is injective and preserves addition, multiplication, and order. Composing with The naturals embed in the integers embeds N in Q; we write k for j(k) throughout.

Facts & Assumptions

Given: The map j:Z→Q, j(k)=[(k,1)].

[L1]

Ring arithmetic in Z (The integers form a commutative ring).

[L2]

The order on Q (Order on the rationals), whose defining inequality is read in the order on Z (Order on the integers).

[L3]

Equality in Q: [(a,b)]=[(c,d)] iff ad=cb (The rationals as equivalence classes of pairs of integers).

Proof

technique · direct
1.1

Injectivity: (k,1)∼(m,1) means k⋅1=m⋅1, i.e. k=m.

L3L1
1.2

Addition: j(k)+j(m)=[(k⋅1+m⋅1,  1)]=j(k+m).

L1
1.3

Multiplication: j(k) j(m)=[(km, 1)]=j(km).

L1
1.4

Order: denominators are 1>0, so j(k)≤j(m) reads k⋅1≤m⋅1, i.e. k≤m.

L1L2
2.1

j embeds Z into Q, preserving arithmetic and order.

step 1.1step 1.2step 1.3step 1.4∎
LemmaStatement: AI-adaptedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

The rationals are Archimedean

Statement

For every rational x there is a natural number n with x<n. Consequently, for every rational ε>0 there is a natural n≥1 with 1/n<ε.

Facts & Assumptions

Given: A rational x=[(a,b)] with b>0.

[L1]

The order and arithmetic of Q (The rationals form a totally ordered field).

[L2]

Integer facts: positive integers are exactly ι(m) with m≥1 natural; nonnegative integers are the image of N; the embeddings preserve arithmetic and order (The naturals embed in the integers, The integers embed in the rationals, The integers form a totally ordered ring).

Proof

technique · direct
1.1

Since b>0, b lies in the image of N and b≥1.

L2
1.2

If a≤0 set k=0; otherwise a is a positive integer, so a=ι(k) for some natural k≥1. In both cases a≤k (as integers).

L2
2.1

Then a<k+1 and, since b≥1 and k+1>0, also k+1≤(k+1)b.

step 1.1step 1.2L2
3.1

Hence a<(k+1)b, and dividing by b>0 (order-scaling in the definition of the rational order), x=[(a,b)]<[((k+1)b, b)]=k+1=:n.

step 2.1L1
4.1

For rational ε>0: apply the above to x=1/ε to get n with 1/ε<n, hence 1/n<ε.

step 3.1L1∎
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

Absolute value and the triangle inequality

Statement

For x∈Q set ∣x∣=x if x≥0 and ∣x∣=−x otherwise. Then ∣xy∣=∣x∣ ∣y∣, ∣x+y∣≤∣x∣+∣y∣, and ∣∣x∣−∣y∣∣≤∣x−y∣.

The proof uses only the axioms of a totally ordered field, so it applies verbatim to any such field (in particular to R once constructed).

Facts & Assumptions

Given: Elements x,y of the totally ordered field Q.

[L1]

Ordered-field arithmetic: trichotomy, compatibility of the order with addition, products of positives are positive, (−u)v=−(uv) (The rationals form a totally ordered field).

Proof

technique · cases
1.1

For every u: u≤∣u∣, −u≤∣u∣, ∣u∣≥0, and ∣−u∣=∣u∣, directly from the definition and trichotomy.

L1
1.2

Case x and y have the same sign (both ≥0 or both <0): xy≥0 and xy=∣x∣∣y∣ (for both negative, xy=(−x)(−y)).

assume-case sameL1
1.3

Case x,y have mixed signs, say x≥0>y (the other order is identical): xy≤0, so ∣xy∣=−(xy)=x(−y)=∣x∣∣y∣.

assume-case mixedL1
2.1

In all cases ∣xy∣=∣x∣ ∣y∣.

step 1.2step 1.3cases-exhaustive
2.2

Adding x≤∣x∣ and y≤∣y∣ gives x+y≤∣x∣+∣y∣; adding −x≤∣x∣ and −y≤∣y∣ gives −(x+y)≤∣x∣+∣y∣; since ∣x+y∣ is one of ±(x+y), ∣x+y∣≤∣x∣+∣y∣.

step 1.1L1
3.1

From x=(x−y)+y: ∣x∣≤∣x−y∣+∣y∣, so ∣x∣−∣y∣≤∣x−y∣; symmetrically ∣y∣−∣x∣≤∣y−x∣=∣x−y∣; hence ∣∣x∣−∣y∣∣≤∣x−y∣.

step 2.2L1∎
DefinitionDefinition: Literature-sourcedProof: Not applicableaudited 2026-07-24Open item page →

Cauchy sequence of rationals

Definition

A sequence (an)n≥1 of rational numbers is a Cauchy sequence if for every rational ε>0 there exists N∈N such that

∣am−an∣<εfor all m,n≥N.

Remarks

  • The quantifier ranges over rational ε only. This is deliberate: the definition is stated before the real numbers exist, which is exactly what allows the reals to be constructed from it.
  • Informally: the terms of the sequence eventually cluster arbitrarily tightly, without any reference to a limit value.
DefinitionDefinition: AI-adaptedProof: Not applicableaudited 2026-07-24Open item page →

Null sequence

Definition

A sequence (an)n≥1 of rational numbers is a null sequence if for every rational ε>0 there exists N∈N such that

∣an∣<εfor all n≥N.

Remarks

  • Equivalently: (an) converges to 0 (with rational tolerances).
  • In the construction of R, two Cauchy sequences will be declared equivalent exactly when their difference is a null sequence; the null sequences are the "zero" of the construction.
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

Every Cauchy sequence of rationals is bounded

Statement

Every Cauchy sequence (an)n≥1 of rational numbers (Cauchy sequence of rationals) is bounded: there exists a rational M≥0 such that ∣an∣≤M for all n≥1.

Facts & Assumptions

Given: A Cauchy sequence (an)n≥1 of rational numbers.

[A1]

For every rational ε>0 there exists N∈N with ∣am−an∣<ε for all m,n≥N.

[L1]

Triangle inequality on Q: ∣x∣≤∣x−y∣+∣y∣ (Absolute value and the triangle inequality).

Proof

technique · direct
1.1

Apply [A1] with ε=1: fix N∈N such that ∣am−an∣<1 for all m,n≥N.

A1
1.2

For every n≥N: ∣an∣≤∣an−aN∣+∣aN∣.

L1
2.1

For every n≥N: ∣an∣<∣aN∣+1.

step 1.1step 1.2algebra
2.2

Define M=max⁡{∣a1∣,∣a2∣,…,∣aN−1∣,∣aN∣+1}, a maximum of finitely many rationals, hence rational and ≥0.

step 1.1choose
3.1

For every n<N: ∣an∣≤M, since ∣an∣ appears in the maximum.

step 2.2algebra
3.2

For every n≥N: ∣an∣<∣aN∣+1≤M.

step 2.1step 2.2algebra
4.1

For every n≥1: ∣an∣≤M, so (an) is bounded.

step 3.1step 3.2∎
LemmaStatement: AI-adaptedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

Null sequences are Cauchy

Statement

Every null sequence (Null sequence) is a Cauchy sequence (Cauchy sequence of rationals).

Facts & Assumptions

Given: A null sequence (an) and a rational ε>0.

[A1]

Null: for every rational δ>0 there is N with ∣an∣<δ for all n≥N.

[A2]

Cauchy: for every rational δ>0 there is N with ∣am−an∣<δ for all m,n≥N.

[L1]

Field arithmetic in Q: ε/2>0 and ε/2+ε/2=ε (The rationals form a field, The rationals form a totally ordered field).

Proof

technique · direct
1.1

ε/2 is a positive rational.

L1
2.1

Fix N with ∣an∣<ε/2 for all n≥N.

step 1.1A1
3.1

For m,n≥N: ∣am−an∣≤∣am∣+∣an∣<ε/2+ε/2=ε.

step 2.1L1L2
4.1

(an) is Cauchy.

step 3.1A2∎
TheoremStatement: AI-adaptedProof: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

Cauchy sequences form a commutative ring

Statement

The set C of Cauchy sequences of rationals, with termwise addition and multiplication and the constant sequences 0 and 1, is a commutative ring with identity.

Facts & Assumptions

Given: Cauchy sequences (an),(bn) and a rational ε>0.

[A1]

Cauchy: for every rational δ>0 there is an index beyond which any two terms differ by less than δ.

[L1]

Q is a field; ring axioms hold termwise (The rationals form a field).

[L2]

Triangle inequality and ∣uv∣=∣u∣∣v∣ (Absolute value and the triangle inequality).

[L3]

Cauchy sequences are bounded (Every Cauchy sequence of rationals is bounded).

[L4]

Ordered-field arithmetic: ε/2, ε/(A+B) are positive rationals for A,B≥1 (The rationals form a totally ordered field).

Proof

technique · direct
1.1

Termwise, all ring axioms (associativity, commutativity, identities, inverses for +, distributivity) hold in C because they hold in Q at every index; the constant sequences 0,1 are Cauchy. What needs proof is closure of C under +, negation, and ⋅.

L1
1.2

Fix Na with ∣am−an∣<ε/2 for m,n≥Na and Nb likewise for (bn).

A1L4
1.3

Fix rational bounds A,B≥1 with ∣an∣≤A and ∣bn∣≤B for all n.

L3
2.1

Sum: for m,n≥max⁡(Na,Nb), ∣(am+bm)−(an+bn)∣≤∣am−an∣+∣bm−bn∣<ε; so (an+bn) is Cauchy. Negation likewise: ∣(−am)−(−an)∣=∣am−an∣.

step 1.2L2
2.2

Set δ=ε/(A+B)>0 and fix Ma,Mb with ∣am−an∣<δ for m,n≥Ma and ∣bm−bn∣<δ for m,n≥Mb.

step 1.3A1L4
3.1

Product: for m,n≥max⁡(Ma,Mb), ∣ambm−anbn∣=∣am(bm−bn)+bn(am−an)∣≤A∣bm−bn∣+B∣am−an∣<(A+B)δ=ε; so (anbn) is Cauchy.

step 1.3step 2.2L2
4.1

C is closed under addition, negation, and multiplication, contains 0 and 1, and satisfies the ring axioms termwise: a commutative ring with identity.

step 1.1step 2.1step 3.1∎
LemmaStatement: Literature-sourcedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

Null sequences form an ideal

Statement

The set N of null sequences is an ideal of the ring C of Cauchy sequences (Cauchy sequences form a commutative ring): it is a subgroup under addition, and c⋅z∈N whenever c∈C and z∈N.

Facts & Assumptions

Given: Null sequences (zn),(wn), a Cauchy sequence (cn), and a rational ε>0.

[A1]

Null: beyond some index, ∣zn∣ is smaller than any prescribed positive rational.

[L1]

Ordered-field arithmetic in Q (The rationals form a totally ordered field).

[L2]

Triangle inequality and multiplicativity of ∣⋅∣ (Absolute value and the triangle inequality).

[L3]

Cauchy sequences are bounded (Every Cauchy sequence of rationals is bounded).

[L4]

Null sequences are Cauchy, so N⊆C (Null sequences are Cauchy).

Proof

technique · direct
1.1

Fix Nz,Nw with ∣zn∣<ε/2 for n≥Nz and ∣wn∣<ε/2 for n≥Nw.

A1L1
1.2

Fix M≥0 with ∣cn∣≤M ([L3]) and set B=max⁡(M,1)≥1, so ∣cn∣≤B for all n.

L3
2.1

Sum: for n≥max⁡(Nz,Nw), ∣zn+wn∣≤∣zn∣+∣wn∣<ε; negation: ∣−zn∣=∣zn∣. So N is a subgroup under addition.

step 1.1L2
2.2

Fix N with ∣zn∣<ε/B for n≥N.

step 1.2A1L1
3.1

Product: for n≥N, ∣cnzn∣=∣cn∣ ∣zn∣≤B ∣zn∣<ε; so (cnzn) is null.

step 1.2step 2.2L2
4.1

N is a nonempty additive subgroup of C absorbing multiplication by C: an ideal.

step 2.1step 3.1L4∎
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

A non-null Cauchy sequence is eventually bounded away from zero, with constant sign

Statement

If (an) is Cauchy but not null, there are a rational δ>0 and an index N0 such that ∣an∣>δ for all n≥N0; moreover either an>δ for all n≥N0, or an<−δ for all n≥N0.

Facts & Assumptions

Given: A Cauchy sequence (an) that is not null.

[A1]

Negation of null (Null sequence): there is a rational ε0>0 such that for every N some n≥N has ∣an∣≥ε0.

[L1]

Ordered-field arithmetic: ε0/3>0, ε0−ε0/3>ε0/3 (The rationals form a totally ordered field).

[L2]

Triangle inequality, in the form ∣u∣≥∣v∣−∣v−u∣ (Absolute value and the triangle inequality).

Proof

technique · direct
1.1

Fix ε0>0 witnessing that (an) is not null.

A1
1.2

Fix N0 with ∣am−an∣<ε0/3 for all m,n≥N0.

A2L1
2.1

Pick n0≥N0 with ∣an0∣≥ε0.

step 1.1step 1.2
3.1

For every n≥N0: ∣an∣≥∣an0∣−∣an0−an∣>ε0−ε0/3>ε0/3=:δ; so ∣an∣>δ for all n≥N0.

step 2.1step 1.2L2L1
4.1

Sign stability: if some am>δ and some an<−δ with m,n≥N0, then ∣am−an∣>2δ=2ε0/3>ε0/3, impossible by step 1.2; so beyond N0 all terms have one sign, and by step 3.1 either an>δ for all n≥N0 or an<−δ for all n≥N0.

step 3.1step 1.2L1∎
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passverified 2026-09-09 (gpt-6-astra)Open item page →

The null ideal is maximal

Statement

If (an)∈C∖N, then the ideal of C generated by N and (an) is all of C. Hence N is a maximal ideal.

Facts & Assumptions

Given: A Cauchy sequence (an) that is not null.

[L1]

Away-from-zero: there are δ>0 and N0 with ∣an∣>δ for all n≥N0 (A non-null Cauchy sequence is eventually bounded away from zero, with constant sign).

[L2]

Triangle inequality and ∣uv∣=∣u∣∣v∣ (Absolute value and the triangle inequality).

[L3]

Cauchy definition and field arithmetic in Q: εδ2>0 for ε>0 (The rationals form a totally ordered field).

[L4]

Null definition; a sequence that is 0 from some index on is null (Null sequence).

[L5]

Ideal arithmetic in C: an ideal containing 1 is the whole ring (Cauchy sequences form a commutative ring, Null sequences form an ideal).

Proof

technique · direct
1.1

Fix δ>0 and N0 with ∣an∣>δ for all n≥N0; in particular an≠0 there.

L1
2.1

Define bn=1 for n<N0 and bn=1/an for n≥N0.

step 1.1choose
3.1

(bn) is Cauchy. Given ε>0, choose a Cauchy index N1 for (an) at εδ2 and put N=max⁡(N0,N1). For m,n≥N, ∣bm−bn∣=∣an−am∣∣am∣ ∣an∣≤∣am−an∣δ2<ε. The non-strict comparison includes am=an.

step 2.1step 1.1L2L3
3.2

For n≥N0, anbn=1, so the sequence (anbn−1) is 0 from N0 on, hence null.

step 2.1L4
4.1

Therefore 1C=(an)(bn)−((anbn)−1) lies in the ideal generated by (an) and N, so that ideal is all of C. The constant sequence 1 is not null (take ε=1/2), so N is proper. Any ideal strictly containing N contains a non-null element and thus equals C: N is maximal.

step 3.1step 3.2L3L4L5∎
DefinitionDefinition: Literature-sourcedProof: Not applicableaudited 2026-07-24Open item page →

The real numbers

Definition

The real numbers are the quotient ring

R:=C/N

of the ring of Cauchy sequences (Cauchy sequences form a commutative ring) by the ideal of null sequences (Null sequences form an ideal). The class of (an) is written [(an)]. Each rational q maps to the class q^ of the constant sequence (q,q,q,… ).

Remarks

TheoremStatement: Literature-sourcedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

The reals form a field

Statement

R=C/N (The real numbers) is a field.

Facts & Assumptions

Given: Classes [(an)],[(bn)]∈R.

[L1]

N is an ideal of C (Null sequences form an ideal).

[L2]

C is a commutative ring with 1 (Cauchy sequences form a commutative ring).

[L3]

Maximality construction: for non-null (an) there is Cauchy (bn) with (anbn)−1 null (The null ideal is maximal).

[L4]

The constant sequence 1 is not a null sequence (its terms stay at 1), so N is a proper ideal and 1^≠0^ (Null sequence).

Proof

technique · direct
1.1

Operations on classes via representatives are well defined: for z,w∈N, ((a+z)+(b+w))−(a+b)=z+w∈N and (a+z)(b+w)−ab=aw+zb+zw∈N, since ideals absorb products and sums.

L1L2
2.1

The ring axioms descend to the quotient because the operations are well defined and C is a ring, verified on representatives; 1^≠0^ since the constant sequence 1 is not null.

step 1.1L1L2L4
2.2

Inverses: a nonzero class has a non-null representative (an); taking (bn) from the maximality construction, (an)(bn)−1∈N, so [(bn)] is a multiplicative inverse of [(an)].

step 1.1L3
3.1

R is a commutative ring with 1≠0 in which every nonzero element is invertible: a field.

step 2.1step 2.2∎
DefinitionDefinition: AI-adaptedProof: Not applicableaudited 2026-07-24Open item page →

Order on the reals

Definition

A real x is positive when it has a representative (an) together with a rational δ>0 and an index N such that an>δ for all n≥N. Define

x≤y  ⟺  x=y   or   y−x is positive,

and ∣x∣=x if x≥0, ∣x∣=−x otherwise.

Remarks

TheoremStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

The reals form a totally ordered field

Statement

The relation of Order on the reals is well defined and makes R (The reals form a field) a totally ordered field.

Facts & Assumptions

Given: Reals x,y with representatives (an),(bn).

[L1]

A sequence (un)n≥1 of rational numbers is null if, for every rational ε>0, there is N∈N such that ∣un∣<ε for every n≥N (Null sequence).

[L2]

Ordered-field arithmetic in Q: δ/2>0; sums and products of eventual lower bounds (The rationals form a totally ordered field).

[L3]

Dichotomy for non-null Cauchy sequences: eventually >δ or eventually <−δ (A non-null Cauchy sequence is eventually bounded away from zero, with constant sign).

[L4]

R is a field (The reals form a field).

[L5]

In R=C/N, x=0 iff a representative is null; so x≠0 iff every representative is non-null (The real numbers).

Proof

technique · direct
1.1

Positivity is independent of the representative: if an>δ for n≥N and (an′−an) is null, then beyond some N′≥N also ∣an′−an∣<δ/2, so an′>δ/2: the defining property holds for (an′) with δ/2.

L1L2
1.2

Trichotomy: if x≠0, any representative is non-null, so by the dichotomy either an>δ eventually (x positive) or an<−δ eventually (−x positive); the two exclude each other, and exactly one of x positive, x=0, −x positive holds.

L1L3L5
1.3

Positives are closed under + and ⋅: from an>δ and bn>δ′ eventually, an+bn>δ+δ′ and anbn>δδ′ eventually, with δ+δ′,δδ′>0.

L2
2.1

Consequently ≤ is a total order (trichotomy plus transitivity from closure under sums), compatible with addition (translation preserves the difference) and with multiplication by positives: R is a totally ordered field.

step 1.1step 1.2step 1.3L4∎
LemmaStatement: AI-adaptedProof: AI-generatedprecheck passverified 2026-08-02 (claude-opus-5)Open item page →

The rationals embed densely in the reals

Statement

The map q↦q^ (The real numbers) is an embedding of ordered fields. Every real is approximated by rationals: for x∈R and rational ε>0 there is q∈Q with ∣x−q^∣<ε^. Consequently, strictly between any two reals lies a rational.

Facts & Assumptions

Given: A real x=[(an)] and a rational ε>0.

[L1]

The orders of Q and R; ordered-field arithmetic (The rationals form a totally ordered field, The reals form a totally ordered field).

[L2]

Field arithmetic in Q: ε/2,δ/4 are positive rationals, and every nonzero rational q has a reciprocal 1/q with q⋅(1/q)=1 (The rationals form a field).

[L3]

Cauchy definition (Cauchy sequence of rationals).

[L4]

Real positivity via eventual rational lower bounds (Order on the reals).

[L5]

R=C/N is a field (The reals form a field), and 0R=0^, 1R=1^ are the classes of the constant sequences (The real numbers). A multiplicative inverse there is unique: if ab=1R=ac then b=b(ac)=(ba)c=c.

Proof

technique · direct
1.1

Embedding: constant sequences are Cauchy; q^=r^ iff the constant q−r is null iff q=r; operations match termwise; and q<r gives the constant lower bound r−q>0, so q^<r^ and order is preserved and reflected.

L1L4
1.2

Fix N with ∣am−an∣<ε/2 for all m,n≥N, and set q=aN.

L3L2
2.1

The difference q^−x has representative (aN−an) with ∣aN−an∣<ε/2 for n≥N; hence both ε^−(x−q^) and ε^−(q^−x) have representatives eventually >ε/2, so both are positive: ∣x−q^∣<ε^.

step 1.2L4L1
2.2

Inverses: let q be a nonzero rational. Then q^≠0^=0R by the injectivity of step 1.1, and 1/q exists in Q by [L2]; since the operations match termwise (step 1.1), q^⋅1/q^=q⋅(1/q)^=1^=1R. Inverses in R are unique by [L5], so (q^)−1=1/q^: the embedding preserves reciprocals.

step 1.1L2L5
3.1

Density: let x<y; pick δ>0 rational and N with the representative of y−x eventually >δ; set ε=δ/4 and pick q with ∣x−q^∣<ε^; then q′=q+2ε satisfies q^′−x≥−ε^+2ε^=ε^>0 and y−q^′≥δ^−ε^−2ε^=δ^/4>0, so x<q^′<y.

step 2.1L4L1L2
4.1

The rationals embed as an ordered subfield — injectively, preserving the order in both directions, the ring operations, and reciprocals — and they approximate every real arbitrarily well and separate any two reals.

step 1.1step 2.2step 3.1∎
DefinitionDefinition: AI-adaptedProof: Not applicableaudited 2026-07-24Open item page →

Limits and Cauchy sequences of reals

Definition

A sequence (xk) of reals converges to x∈R when for every rational ε>0 there is K with ∣xk−x∣<ε^ for all k≥K. It is Cauchy when for every rational ε>0 there is K with ∣xk−xl∣<ε^ for all k,l≥K.

Remarks

TheoremStatement: Literature-sourcedProof: AI-adaptedprecheck passverified 2026-09-09 (gpt-6-astra)Open item page →

The reals are complete

Statement

Every Cauchy sequence of real numbers (Limits and Cauchy sequences of reals) converges to a real number. Together with The reals form a totally ordered field, this completes the construction: R is a complete totally ordered field. The proof uses no form of the axiom of choice.

Facts & Assumptions

Given: A Cauchy sequence (xk)k≥1 of reals.

[L1]

Rational approximation: for any real z and rational η>0 there is q with ∣z−q^∣<η^ (The rationals embed densely in the reals).

[L2]

Archimedean property: for rational ε>0 there is k with 1/k<ε (The rationals are Archimedean).

[L4]

The embedding preserves and reflects order and arithmetic; triangle inequality in R (The rationals embed densely in the reals, The reals form a totally ordered field, Order on the reals).

[L5]

Reals are classes of rational Cauchy sequences (The real numbers).

[L6]

Every rational has a positive-denominator integer representative; the nonnegative integers are the embedded naturals, with compatible arithmetic and order (Every rational has a positive-denominator representative, The naturals embed in the integers, The integers form a totally ordered ring).

Proof

technique · direct
1.1

For a fixed k≥1, call a triple (h,b,j) of naturals admissible when h≥1, 1≤b≤h, 0≤j≤2h, and ∣xk−(j−h)/b^∣<1/k^. Here j−h is an integer. Such a triple exists: [L1] supplies one approximating rational a/b; [L6] makes b a positive natural, and either a or −a is a nonnegative integer. Thus some natural h satisfies h≥b and −h≤a≤h. Then j=a+h is a natural with j≤2h and (j−h)/b=a/b. This proves nonemptiness separately for each k; it does not choose a family of witnesses.

L1L6construct
2.1

Let hk be the least first coordinate of an admissible triple; with hk fixed, let bk be the least admissible second coordinate; with both fixed, let jk be the least admissible third coordinate. Each minimum exists and is unique by [L7]. Define qk=(jk−hk)/bk. This unique rule defines the graph of (qk) as a subset of N≥1×Q by Separation. Consequently ∣xk−q^k∣<1/k^ for every k, without choosing representatives of all the xk or invoking any choice axiom.

step 1.1L6L7construct
3.1

(qk) is Cauchy in Q: given rational ε>0, pick k0 with 1/k0<ε/3 and K with ∣xk−xl∣<ε/3^ for k,l≥K; then for k,l≥max⁡(k0,K), ∣qk−ql∣^≤∣q^k−xk∣+∣xk−xl∣+∣xl−q^l∣<1/k^+ε/3^+1/l^≤3 ε/3^=ε^, and the embedding reflects order, so ∣qk−ql∣<ε.

step 2.1L2L3L4
4.1

Set x:=[(qk)]∈R, the class of this rational Cauchy sequence.

step 3.1L5
5.1

xk→x: given rational ε>0, pick k1 with 1/k1<ε/3 and K2 with ∣qk−ql∣<ε/3 for k,l≥K2; for k≥max⁡(k1,K2), the difference q^k−x has representative (qk−ql)l, whose absolute values ∣qk−ql∣ are eventually below ε/3, so ∣q^k−x∣≤ε/3^, and ∣xk−x∣≤∣xk−q^k∣+∣q^k−x∣<1/k^+ε/3^≤2 ε/3^<ε^.

step 2.1step 3.1step 4.1L4
6.1

Every Cauchy sequence of reals converges in R: the reals are complete.

step 5.1∎

5 · Examples, counterexamples and false statements

ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

The sequence 1/n is null

Example

The sequence (1/n)n≥1 of rationals is a null sequence (Null sequence): its terms become smaller than any prescribed positive rational. It is the standard witness that "eventually arbitrarily small" is a nonvacuous notion, and the rate 1/k used in the completeness proof.

Facts & Assumptions

Given: A rational ε>0.

[L1]

Archimedean property (The rationals are Archimedean).

[L2]

Order arithmetic: 0<1/n≤1/N for n≥N≥1 (The rationals form a totally ordered field).

[L3]

Null definition (Null sequence).

Verification

technique · direct
1.1

Pick a natural N≥1 with 1/N<ε.

L1
2.1

For every n≥N: 0<1/n≤1/N<ε, so ∣1/n∣<ε.

step 1.1L2
3.1

(1/n) is null.

step 2.1L3∎
False statementConstruction: Literature-sourcedVerification: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

FALSE: some rational number squares to 2

Statement

False claim: there exists x∈Q with x2=2.

Facts & Assumptions

Given: The rationals as quotients of integer pairs (The rationals as equivalence classes of pairs of integers).

[A1]

Every rational can be written a/b in lowest terms, with a,b not both even (cancel common factors of 2; the process terminates by well-ordering of N).

[A2]

Parity in Z: if k2 is even then k is even (an odd k=2j+1 has odd square 4j2+4j+1).

Refutation

technique · contradiction
1.1

Assume, for contradiction, that some x∈Q has x2=2; write x=a/b in lowest terms, a,b not both even.

assume-contraA1
2.1

Clearing denominators: a2=2b2.

step 1.1algebra
3.1

a2 is even, hence a is even: a=2c.

step 2.1A2
4.1

Substituting: 4c2=2b2, so b2=2c2 is even, hence b is even.

step 3.1A2algebra
5.1

Both a and b are even, contradicting the lowest-terms choice of step 1.1; the assumption fails: no rational squares to 2.

step 4.1step 1.1discharge-contradiction∎
False statementConstruction: AI-adaptedVerification: AI-generatedprecheck passjudge pass (openai/gpt-5.4)audited 2026-07-24Open item page →

FALSE: the rationals are complete

Statement

False claim: every Cauchy sequence of rationals converges to a rational (where (an)→q means (an−q) is null).

This is precisely the defect the construction of R repairs.

Facts & Assumptions

Given: The decimal truncations of 2, built below.

[A1]

In N: for each n there is a largest natural k with k2≤2⋅102n (only finitely many candidates, since k>2⋅10n already fails); and n<10n.

[L2]

No rational squares to 2 (FALSE: some rational number squares to 2).

[L3]

A constant sequence is null only if the constant is 0; sums of null sequences are null; a Cauchy multiple of a null sequence is null (Null sequence, Null sequences form an ideal).

[L4]

Archimedean property, so 10−n falls below any positive rational (The rationals are Archimedean).

Refutation

technique · direct
1.1

For each n let kn be the largest natural with kn2≤2⋅102n, and set sn=kn/10n; then sn2≤2<(sn+10−n)2, and sn≤2 (since kn2≤2⋅102n<(2⋅10n)2).

A1L1
2.1

(sn) is Cauchy: for m≥n, (10m−nkn)2≤2⋅102m gives 10m−nkn≤km, so sn≤sm; and sm2≤2<(sn+10−n)2 forces sm<sn+10−n; hence 0≤sm−sn<10−n, and 10−n eventually falls below any ε>0.

step 1.1L1L4
2.2

(sn2−2) is null: 0≤2−sn2<(sn+10−n)2−sn2=10−n(2sn+10−n)≤5⋅10−n.

step 1.1L1L4
3.1

If (sn) converged to a rational q, then (sn−q) would be null; since (sn+q) is Cauchy, (sn2−q2)=(sn−q)(sn+q) would be null; adding the null (2−sn2), the constant 2−q2 would be null, forcing q2=2.

step 2.1step 2.2L3L1
4.1

No rational squares to 2, so (sn) is a Cauchy sequence of rationals with no rational limit: the claim is refuted.

step 3.1step 2.1L2∎

Sources