Alphabeta Math
Session-authored (Fable 5 assisted)
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.

18 results · all verified · 16 also independently AI-judged
Every result on this page is machine-checked by a proof checker and read in full by a delegated reviewing agent on the owner's instruction; the judge is an additional, independent cross-model AI review of the proofs. The 2 not AI-judged were verified by owner audit (typically over a confirmed judge false positive), not failures.

Roots, Rational Powers, and Classical Inequalities

1 · Prerequisites

2 · Summary

Objective. This page builds exponentiation inside R as far as it can honestly be built with the tools the library currently owns, and then proves the classical inequalities that live at that level. The tools are the field axioms, the order, and the least-upper-bound property (Complete ordered field (least-upper-bound property)). No proof on this page uses the exponential function, logarithm, continuity, or infinite series; a limit of a sequence of reals is defined in the Cauchy construction (Limits and Cauchy sequences of reals), but no proof on this page uses one. So every exponent on this page is an integer or a rational, and every proof is a finite algebraic argument plus, in exactly one proof, the least-upper-bound property.

The construction runs in three stages. First, finite sums and finite products are defined by recursion (Finite sums and finite products, by recursion, resting on The recursion theorem) and their laws are proved by induction, because "a0++an1" is notation and not a definition. Second, integer powers are defined by the same mechanism and their algebra and order behaviour established. Third, roots are produced: for a0 and n1 there is a unique nonnegative s with sn=a (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a). That theorem is the one proof on this page that invokes the least-upper-bound property directly, and it is a generalisation of the already published Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0}: the case n=2 is not new here and is not claimed to be. What is new is the passage to general n, where the completed square that drives the square-root argument is replaced by the factorisation of bnan and the Lipschitz estimate it yields (Factorisation of bnan, and the resulting Lipschitz estimate).

Rational powers follow: ar:=(a1/n)m for a>0 and r=m/n (Rational powers ar of a positive base). Two things about that definition deserve attention. Its well-definedness is a theorem, not an observation: different representatives of the same rational must give the same value, and Rational powers do not depend on the representative proves they do, which is why it is recorded in the definition's justified_by rather than in its deps. And the restriction to a positive base is forced, not stylistic: FALSE: am/n:=(a1/n)m extends to negative bases shows that for a<0 the very same formula assigns 2 to (8)1/3 and nothing at all to (8)2/6, though 1/3 and 2/6 are the same rational.

The inequalities then follow one from the next. AM-GM (The arithmetic mean, geometric mean inequality) is proved by Cauchy's forward-backward induction, up a doubling sequence of natural numbers and then downward, with the equality case tracked throughout. The doubling sequence is defined by recursion inside N rather than written 2j, because a list length must be a natural number and 2j would name a real (Integer powers am gives powers of a real base only). Its weighted form (Weighted AM-GM inequality with rational weights) is stated for rational weights, and that restriction is not laziness: a real weight w would require the symbol xw, which does not exist in this library. Young's inequality (Young's inequality for products (rational conjugate exponents)) is the two-weight case, Hölder (Hölder's inequality for finite sums (rational exponents)) is Young summed after normalisation, and Minkowski (Minkowski's inequality for finite sums (rational exponent)) is Hölder applied twice with the conjugate exponent q=p/(p1), which is rational exactly because p is. Cauchy-Schwarz (The Cauchy-Schwarz inequality for finite sums) is proved separately and by a route that uses no root at all, from the nonnegativity of k(akt+bk)2; its root form is a restatement, reached through the already published Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0} rather than through the n-th roots of this page. Bernoulli's inequality (Bernoulli's inequality (1+x)n1+nx) sits outside that chain: it is proved here as a classical inequality of exactly this level, for its own sake rather than as a step towards the others, and nothing else on this page rests on it.

Two false statements guard the boundary of what has been built. No real number squares to a negative one (FALSE: every real number has a real square root), in any ordered field and with no appeal to completeness, though odd roots of negatives do exist and the map xxn is a bijection of R for odd n. And the rational-power formula does not survive the passage to negative bases (FALSE: am/n:=(a1/n)m extends to negative bases). The closing remark (Why real exponents are deferred on the rational-powers page) is honest about the ceiling: ax for real x can be defined here as sup{ar:rQ, rx}, and that supremum does exist, but the power laws for it cannot be proved without limits. General powers require further analytic development, through the exponential and logarithm, and are deliberately outside this page's dependency closure.

3 · Logical flowchart

4 · Definitions, theorems and proofs

DefinitionDefinition: AI-adaptedProof: Not applicablejudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Finite sums and finite products, by recursion

Definition

Throughout this page R is the complete ordered field (Complete ordered field (least-upper-bound property)), in particular an ordered field (Ordered field) and a field (Field), and N is the set of natural numbers (The natural numbers N (von Neumann)) with successor σ(n)=n+1 (Addition of natural numbers).

Let a:NR be a sequence of reals, written ak for a(k). Finite sums and finite products of a are defined by recursion on the upper index, which is legitimate because of the recursion theorem (The recursion theorem). That theorem produces a function of one variable, so the running index has to be carried along inside the value: applying it to the set A=N×R, the starting element (0,0) and the function f(n,s)=(σ(n),s+an) gives a unique g:NN×R with

g(0)=(0,0),g(σ(n))=f(g(n))(nN).

Write g(n)=(π1(g(n)),Σn) for its two coordinates.

The first coordinate is the index itself, and that is a small induction, not an observation (The principle of mathematical induction). Indeed π1(g(0))=0; and if π1(g(n))=n, then g(σ(n))=f(π1(g(n)),Σn)=(σ(π1(g(n))),Σn+aπ1(g(n)))=(σ(n),Σn+an), so π1(g(σ(n)))=σ(n). By induction π1(g(n))=n for every nN. Only now may the second coordinate of the two displayed clauses be read off, and doing so gives

Σ0=0,Σσ(n)=Σn+an.

Σ is moreover the unique function NR with those two properties: if Σ also has them then n(n,Σn) satisfies the two clauses defining g, hence equals g by the uniqueness clause of The recursion theorem, so Σ=Σ.

We write k<nak:=Σn. The same construction with starting element (0,1) and f(n,p)=(σ(n),pan), with the same induction on the first coordinate and the same uniqueness argument, gives the unique Π:NR with

Π0=1,Πσ(n)=Πnan,

and we write k<nak:=Πn.

Notation. For m,nN we abbreviate

k=0nak:=k<n+1ak,k=0nak:=k<n+1ak,

and, for a general lower index m with mn+1, writing d=n+1m for the number of terms,

k=mnak:=j<dam+j,k=mnak:=j<dam+j.

When m=n+1 we have d=0 and the sum is empty, with value 0, while the empty product has value 1. In the same spirit k=01ak is notation for the empty sum Σ0=0 and k=01ak for the empty product Π0=1; the index 1 never occurs as an element of N and is only a way of writing "no terms".

Only finitely many values of a enter k<nak, so the notation k<nak and k<nak is also used for a list a0,,an1 of reals given without reference to any extension of the list to all of N: extend the list by ak=0 (respectively ak=1) for kn and apply the definition above.

Remarks

  • Why recursion and not "a0+a1++an1". The dots are not a definition: they presuppose that the displayed pattern determines a value for every n, which is exactly what the recursion theorem (The recursion theorem) supplies, and its uniqueness clause is what makes k<nak a single well-determined real rather than a family of choices. Associativity and commutativity of addition are not used in the definition; they are used in the laws proved from it (Laws of finite sums and finite products).
  • Naturals and rationals inside R (a convention used on the whole page). A natural number n and a rational number r are not literally elements of R: they enter R through the canonical embedding ι:QR, which is an injective, order-preserving field homomorphism (The unique embedding of ℚ into an ordered field), restricting on positive naturals to nn1R=1R++1R (Canonical naturals are positive and strictly increasing). Following ordinary practice, and only where no confusion is possible, we write n for ι(n) and r for ι(r); so, for instance, 1nk<nak means ι(n)1k<nak, which makes sense because ι(n)>0 for n1. Exponents are the one place where the identification is deliberately NOT made: in an and ar the exponent stays a natural, an integer or a rational (Integer powers am, Rational powers ar of a positive base), never a real.
  • The two indexings are related by k=0nak=k<n+1ak, so a statement proved for one is available for the other. Sums over k<n are the primitive form here because Σ0, the empty sum, is then the base case of every induction, and no index outside N is ever needed.
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Laws of finite sums and finite products

Statement

Let a,b,c:NR be sequences of reals, let λR, and let m,nN, with finite sums and finite products as in Finite sums and finite products, by recursion. Then:

  1. Additivity. k<n(ak+bk)=k<nak+k<nbk.
  2. Scaling. k<nλak=λk<nak; in particular k<nλ=nλ, where n denotes the canonical natural ι(n)R (The unique embedding of ℚ into an ordered field, Canonical naturals are positive and strictly increasing).
  3. Splitting. If mn then k<nak=k<mak+k=mn1ak, and k<nak=(k<mak)(k=mn1ak).
  4. Monotonicity. If akbk for all k<n then k<nakk<nbk. In particular, if ak0 for all k<n then k<nak0, every single term satisfies ajk<nak for j<n, and k<nak=0 forces ak=0 for every k<n.
  5. Telescoping. k<n(ck+1ck)=cnc0.
  6. Products. k<n(akbk)=(k<nak)(k<nbk); if ak0 for all k<n then k<nak0, and if ak>0 for all k<n then k<nak>0.

Facts & Assumptions

Given: Sequences a,b,c:NR, a real λ, and naturals m,n. Write Σn=k<nak and Πn=k<nak.

[L1]

Recursion clauses (Finite sums and finite products, by recursion): k<0ak=0 and k<n+1ak=k<nak+an; k<0ak=1 and k<n+1ak=(k<nak)an; and k=mn1ak=j<nmam+j for mn, likewise for products.

[L2]

Field axioms: addition and multiplication are associative and commutative, 0 and 1 are the identities, xx=0, and multiplication distributes over addition (Field, Ordered field); and 0x=0, which is not an axiom but a lemma (Multiplication by zero: 0a=0).

[L3]

Induction principle: a property holding at 0 and inherited by successors holds at every natural (The principle of mathematical induction).

[L4]

Adding inequalities: xy and uv imply x+uy+v. Order is preserved by adding a constant and by adding inequalities states the STRICT forms and only those (x<yx+c<y+c, and x<y with u<v giving x+u<y+v); the nonstrict form used throughout below is those two together with the cases x=y and u=v, which are settled by trichotomy, the order being total and transitive (Ordered field).

[L5]

The canonical embedding ι:QR is a field homomorphism, so ι(0)=0 and ι(n+1)=ι(n)+1, and ι(n)>0 for n1 (The unique embedding of ℚ into an ordered field, Canonical naturals are positive and strictly increasing).

[L6]

Sign rules: a product of two positives is positive (Sign rules for products and monotonicity of multiplication, claim 1), and a product of two nonnegatives is nonnegative, since a factor equal to 0 makes the product 0 (Multiplication by zero: 0a=0) and otherwise both factors are positive; and 1>0, which is proved in The multiplicative identity is positive and stated by none of the items named above.

Proof

technique · induction
1.1

Base case n=0: every claim holds at n=0, since both sides of claim 1 are 0=0+0, both sides of claim 2 are 0=λ0 and 0=ι(0)λ, claim 4 reads 00 with no term to bound and the hypothesis k<0ak=0 giving nothing to prove, claim 5 reads 0=c0c0, and claim 6 reads 1=11 with 1>0.

baseL1L2L5L6
1.2

Inductive hypothesis: fix nN and assume claims 1, 2, 4, 5 and 6 hold for this n and for all sequences a,b,c and all λ.

ih
1.3

Splitting, claim 3, by a separate induction on the number of trailing terms d=nm with m fixed: for d=0 the claim reads k<mak=k<mak+0 and k<mak=(k<mak)1, which hold; and if k<m+dak=k<mak+j<dam+j, then k<m+d+1ak=k<m+dak+am+d=k<mak+(j<dam+j+am+d)=k<mak+j<d+1am+j by associativity, and identically for products with 1 in place of 0 and multiplication in place of addition, so induction on d gives claim 3 for every mn.

L1L2L3
2.1

Additivity at n+1: k<n+1(ak+bk)=k<n(ak+bk)+(an+bn)=(k<nak+k<nbk)+(an+bn)=(k<nak+an)+(k<nbk+bn)=k<n+1ak+k<n+1bk, using the recursion clause, the hypothesis, and commutativity with associativity of addition.

step 1.2L1L2
2.2

Scaling at n+1: k<n+1λak=k<nλak+λan=λk<nak+λan=λ(k<nak+an)=λk<n+1ak by the recursion clause, the hypothesis and distributivity; taking ak=1 for all k gives k<n+1λ=k<nλ+λ=ι(n)λ+λ=(ι(n)+1)λ=ι(n+1)λ.

step 1.2L1L2L5
2.3

Monotonicity at n+1: assume akbk for all k<n+1; then akbk for all k<n, so the hypothesis gives k<nakk<nbk, and adding the inequality anbn gives k<n+1ak=k<nak+ank<nbk+bn=k<n+1bk.

step 1.2L1L4
2.4

Telescoping at n+1: k<n+1(ck+1ck)=k<n(ck+1ck)+(cn+1cn)=(cnc0)+(cn+1cn)=cn+1c0, by the recursion clause, the hypothesis and the field identities.

step 1.2L1L2
2.5

Products at n+1: k<n+1(akbk)=(k<n(akbk))(anbn)=(k<nak)(k<nbk)(anbn)=(k<n+1ak)(k<n+1bk) by the recursion clause, the hypothesis, and commutativity with associativity of multiplication; and if every ak0 for k<n+1 then k<n+1ak=(k<nak)an is a product of two nonnegatives, hence nonnegative, with the same argument giving positivity from positivity since k<0ak=1>0.

step 1.2L1L2L6
3.1

Consequences of monotonicity, completing claim 4: monotonicity itself holds at every n, by the induction principle applied to the base case of step 1.1 and the successor step 2.3, so it is available for an arbitrary n in what follows; if ak0 for all k<n then comparing with the zero sequence gives k<nakk<n0=0; for j<n splitting at j and then at j+1 writes k<nak=k<jak+aj+k=j+1n1ak with the first and third summands 0, so ajk<nak; and if moreover k<nak=0 then 0aj0 for every j<n, so aj=0.

step 1.1step 2.3step 1.3L3L4L2
4.1

By the induction principle claims 1, 2, 4, 5 and 6 hold for every nN, and claim 3 was proved in step 1.3 with its consequences in step 3.1, so all six laws hold.

step 1.1step 2.1step 2.2step 2.3step 2.4step 2.5step 1.3step 3.1L3discharge-induction
DefinitionDefinition: AI-adaptedProof: Not applicablejudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Integer powers am

Definition

Let aR, where R is the ambient ordered field (Ordered field, Field).

Natural exponents. By the recursion theorem (The recursion theorem) applied to the set R, the starting element 1 and the function f(x)=xa, there is a unique function NR, written nan, with

a0=1,an+1=ana(nN).

Thus a1=a, a2=aa, and so on. Note that this is defined for every a, including a=0.

Negative exponents. If a0 and nN with n1, set

an:=(an)1.

Why that is legitimate. The right-hand side presupposes that an is invertible, that is, that an0. This is a proof obligation and not an observation, and it is discharged by claim 2 of Laws of integer exponents : for a0 in a field, an0 for every nN, proved there by induction on n from the fact that a field has no zero divisors (A field has no zero divisors: ab=0a=0 or b=0). That lemma is a statement about the operation introduced here, so it depends on this definition and is recorded in this item's justified_by rather than in its deps (SCHEMA §3). Given an0, the value (an)1 is a single well-determined element, because multiplicative inverses in a field are unique (Identities and inverses in a field are unique).

Integer exponents. Every integer m (The integers as equivalence classes of pairs of naturals) is either ι(n) or ι(n) for a unique natural n, where ι is the embedding NZ (The naturals embed in the integers, Arithmetic on the integers). This too is a citation and not a slogan: the order on Z is total (The integers form a totally ordered ring), so m0 or m<0; the image of ι is exactly the set of nonnegative integers, and each of them is ι(n) for a unique natural n (The naturals embed in the integers); and if m<0 then m>0, by compatibility of the order with addition (The integers form a totally ordered ring), so m=ι(n) and m=ι(n), with n unique because ι is injective. The two clauses above therefore define am for every mZ whenever a0, and for every mN for arbitrary a. The clauses are consistent where they overlap: the only overlap is m=0, where ι(0)=ι(0) and (a0)1=11=1=a0.

Remarks

LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Laws of integer exponents

Statement

Let a,b be elements of a field (Field) and let integer powers be as in Integer powers am.

  1. For all m,nN: am+n=aman, (am)n=amn and (ab)n=anbn.
  2. If a0 then an0 for every nN, and am=(am)1 for every mZ (Arithmetic on the integers).
  3. If a0 and b0 then all three identities of claim 1 hold for all m,nZ.

Facts & Assumptions

Given: Elements a,b of a field F, naturals m,n,p,q,k and integers ranged over by m,n in claims 2 and 3.

[L1]

Definition of powers (Integer powers am): a0=1 and an+1=ana for nN; and an:=(an)1 for a0 and n1, the two clauses agreeing at n=0.

[L2]
[L3]

Field arithmetic: multiplication is associative and commutative with identity 1, and every nonzero element has an inverse (Field); inverses are unique (Identities and inverses in a field are unique, which states uniqueness and nothing further), and HENCE, for x,y0, (xy)1=x1y1 and (x1)1=x, since (xy)(x1y1)=1 and x1x=1 exhibit inverses that uniqueness then identifies.

[L4]

A field has no zero divisors: xy=0 implies x=0 or y=0 (A field has no zero divisors: ab=0a=0 or b=0).

[L5]

Z is a commutative ring in which every element is ι(k) or ι(k) for a unique natural k (The integers form a commutative ring, The naturals embed in the integers, Arithmetic on the integers); we write k for ι(k).

Proof

technique · induction
1.1

Base cases at n=0 for the addition law, the product law and nonvanishing: am+0=am=am1=ama0 for every mN; (ab)0=1=11=a0b0; and if a0 then a0=10.

baseL1L3
1.2

Inductive hypothesis: fix nN and assume am+n=aman for all mN, (ab)n=anbn, and an0 whenever a0. The iterated-power law (am)n=amn is deliberately NOT carried in this hypothesis: its successor step needs the addition law at the exponent pair (mn,m), whose second entry is not the current stage, so that law must be finished first and the iterated law proved afterwards.

ih
1.3

For a0 and every integer j, aj=(aj)1: for j0 this is the definition together with the agreement of the two clauses at j=0, and for j=k with k1 it reads ak=(ak)1, which holds because ak=(ak)1 and (x1)1=x at x=ak. That last substitution needs ak0, which is NOT free here and must not be read off the definition, since the definition of the negative clause is what is being justified; it is instead a self-contained induction on k, from a0=10 and the fact that ak+1=aka is a product of two nonzero elements of a field, hence nonzero.

L1L2L3L4L5
2.1

Successor step for the addition law, the product law and nonvanishing: am+(n+1)=a(m+n)+1=am+na=(aman)a=am(ana)=aman+1 for every mN; (ab)n+1=(ab)n(ab)=(anbn)(ab)=(ana)(bnb)=an+1bn+1; and if a0 then an+1=ana is a product of two nonzero elements, hence nonzero.

step 1.2L1L3L4
3.1

By the induction principle, for all m,nN: am+n=aman and (ab)n=anbn, and an0 whenever a0. The addition law is thereby available at EVERY pair of natural exponents, which is exactly what the iterated-power law needs.

step 1.1step 2.1L2
4.1

The iterated-power law for natural exponents, (am)n=amn, by a second induction on n with mN fixed: at n=0 both sides are 1, since (am)0=1=a0=am0; and if (am)n=amn then (am)n+1=(am)nam=amnam=amn+m=am(n+1), where the third equality is the addition law of step 3.1 at the pair (mn,m), legitimate precisely because that law is by now proved for all pairs of naturals. This completes claim 1.

step 3.1L1L2L3
4.2

For a0 and every integer j, aj+1=aja: for j0 this is the recursion clause, and for j=k with k1 we compute aka=(ak)1a=(ak1a)1a=(ak1)1a1a=(ak1)1=a(k1)=ak+1.

step 3.1step 1.3L1L3
4.3

For a,b0 the product law holds for all integers n: for n0 it is step 3.1, and for n=k with k1 we get (ab)k=((ab)k)1=(akbk)1=(ak)1(bk)1=akbk.

step 3.1step 1.3L3L5
5.1

For a0, every integer j and every natural k, aj+k=ajak, by induction on k: the case k=0 is aj=aj1, and if aj+k=ajak then aj+k+1=aj+ka=ajaka=ajak+1 by step 4.2 applied to the integer j+k and by the recursion clause.

step 4.2L1L2L3
6.1

For a0 the addition law holds for all integers m,n: writing n=k or n=k with kN, the case n=k is step 5.1, while for n=k step 5.1 applied to the integer mk gives am=a(mk)+k=amkak, hence amk=am(ak)1=amak.

step 5.1step 1.3L3L5
7.1

For a0 the iterated-power law holds for all integers m,n: for n0 induction on n gives (am)n+1=(am)nam=amnam=amn+m=am(n+1), the third equality by the integer addition law of step 6.1 at the pair (mn,m), with base (am)0=1=a0; and for n=q with q1, (am)q=((am)q)1=(amq)1=amq=am(q), using that am0 by step 3.1 and step 1.3.

step 6.1step 3.1step 1.3L2L3L5
8.1

Claims 1, 2 and 3 are therefore established: the addition, product and iterated-power laws for natural exponents together with nonvanishing by steps 3.1 and 4.1, the identity am=(am)1 by step 1.3, and the three integer-exponent laws by steps 6.1, 4.3 and 7.1.

step 3.1step 4.1step 1.3step 6.1step 4.3step 7.1discharge-induction
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Monotonicity of xxn and of nan

Statement

Let R be an ordered field (Ordered field), let a,bR and let nN, with powers as in Integer powers am.

  1. Signs. If a0 then an0, and if a>0 then an>0.
  2. Strict monotonicity in the base. If 0a<b and n1 then an<bn. Consequently, for a,b0 and n1: a<b    an<bn and ab    anbn, and xxn is injective on {xR:x0}.
  3. Comparison with the base. If a1 and n1 then ana1; if a>1 and n1 then ana>1; and if 0a1 then an1.
  4. Monotonicity in the exponent. If a>1 then am<an whenever m<n in N; if a=1 then an=1 for all n; and if 0<a<1 then am>an whenever m<n.

Facts & Assumptions

Given: An ordered field R, elements a,bR and naturals m,n.

[L1]

Definition of powers (Integer powers am): a0=1 and an+1=ana.

[L2]
[L3]

Sign and scaling rules: a product of positives is positive, and for c>0, x<y    cx<cy (Sign rules for products and monotonicity of multiplication); the positives are closed under addition and satisfy trichotomy (Ordered field); and 1>0 (The multiplicative identity is positive, which is where that fact is proved: neither of the two items just named states it).

[L4]

Multiplying inequalities of nonnegatives: if 0xy and 0uv then xuyv, and if 0<x<y and 0<u<v then xu<yv (Multiplying inequalities of positives).

[L5]

Trichotomy and transitivity of the order: for x,y exactly one of x<y, x=y, y<x holds, and < and are transitive (Ordered field).

[L6]

The order on the exponents: mn holds exactly when n=m+k for some natural k (Order on the natural numbers), and m<n holds exactly when m+1n (Discreteness: σ(n) is the immediate successor); combining the two, m<n holds exactly when n=m+d for some natural d1.

Proof

technique · induction
1.1

Base case n=0: a0=1>0, so claim 1 holds; claim 2 is vacuous at n=0; a0=11 and a0=11, so claim 3 holds at n=0 in the nonstrict readings.

baseL1L3
1.2

Inductive hypothesis: fix nN and assume, for all a,b: a0an0 and a>0an>0; and 0abanbn, with an<bn when moreover a<b and n1.

ih
2.1

Signs at n+1: if a0 then an+1=ana is a product of two nonnegatives, hence 0, and if a>0 it is a product of two positives, hence >0.

step 1.2L1L3L4
3.1

Strict monotonicity at n+1, assuming 0a<b: then b>0, and the hypothesis gives 0anbn with bn>0 by step 2.1; if a=0 then an+1=0<bn+1 since bn+1=bnb>0; if a>0 then an+1=anabna by multiplying anbn by a>0, and bna<bnb by multiplying a<b by bn>0, so an+1<bn+1 by transitivity; and in either case 0ab gives an+1bn+1 by [L4].

step 1.2step 2.1L1L3L4L5
4.1

By the induction principle, claims 1 and 2 hold for every n, in the form: a0an0; a>0an>0; and 0a<b with n1 gives an<bn.

step 1.1step 2.1step 3.1L2
5.1

The equivalences of claim 2 follow by trichotomy: for a,b0 and n1, if an<bn then neither a=b (which would give an=bn) nor b<a (which would give bn<an) is possible, so a<b; the form is the negation of the < form with a and b exchanged; and injectivity is the case an=bn, where a<b and b<a are both excluded.

step 4.1L5
5.2

Claim 4: for a>1 we have an+1=ana>an1=an, multiplying 1<a by an>0, so an is strictly increasing in n, and hence am<an whenever m<n: writing n=m+d with d1 and inducting on d, the case d=1 is that one-step inequality and the passage from d to d+1 is am<am+d<am+d+1 by transitivity; for a=1 an induction gives 1n=1 for all n; and for 0<a<1 we have an+1=ana<an1=an, so an is strictly decreasing in n and the same induction on the gap d gives am>an for m<n.

step 4.1L1L2L3L5L6
6.1

Claim 3: if a1 and n1 then applying step 4.1 to 1a gives 1=1nan, and an=an1a1a=a since an11 by the same argument and a>0; if a>1 the same computation gives ana>1; and if 0a1 then an1n=1.

step 4.1step 5.1L1L3L4
7.1

All four claims are proved: signs and strict monotonicity in the base by the induction of steps 1.1 and 3.1, the order equivalences and injectivity by trichotomy, and the comparisons with the base and the behaviour in the exponent by steps 6.1 and 5.2.

step 4.1step 5.1step 6.1step 5.2discharge-induction
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Bernoulli's inequality (1+x)n1+nx

Statement

Let R be an ordered field (Ordered field), let xR with x1, and let nN, with powers as in Integer powers am and with n also denoting the canonical natural ι(n)R (Canonical naturals are positive and strictly increasing, The unique embedding of ℚ into an ordered field). Then

(1+x)n1+nx,

and equality holds if and only if n1 or x=0.

Facts & Assumptions

Given: An ordered field R, an element x1 of it, and a natural number n, with ι(n)R written n.

[L1]

Definition of powers (Integer powers am): a0=1 and an+1=ana.

[L2]
[L3]

Order and scaling: for c0, uv implies ucvc. Sign rules for products and monotonicity of multiplication gives only the strict rule u>v    uc>vc for c>0, so this is that rule together with the case u=v, and with the case c=0, where both sides are 0 (Multiplication by zero: 0a=0). Likewise adding a constant preserves the order, where Order is preserved by adding a constant and by adding inequalities again states only the strict form and the nonstrict one adds the case of equality; trichotomy is what settles those cases (Ordered field).

[L4]

Squares are nonnegative: x2>0 for x0 (Squares of nonzero elements are positive), and 02=00=0 because a product with a zero factor vanishes (Multiplication by zero: 0a=0), which is also what makes 0x=0 below; so x20 for every x.

[L5]

Canonical naturals: ι(0)=0, ι(n+1)=ι(n)+1, and ι(n)>0 for n1, so ι(n)0 for every n (Canonical naturals are positive and strictly increasing, The unique embedding of ℚ into an ordered field).

Proof

technique · induction
1.1

Base case n=0: (1+x)0=1 and 1+0x=1, so the inequality holds with equality.

baseL1L4L5
1.2

Inductive hypothesis: fix nN and assume (1+x)n1+nx.

ih
1.3

Since x1 we have 1+x0, and this is exactly what licenses multiplying the inductive inequality by 1+x without reversing it.

givenL3
1.4

The discarded term is nonnegative: nx20, since x20 and ι(n)0, so scaling the inequality x20 by the nonnegative factor ι(n) gives ι(n)x2ι(n)0=0; the scaling rule, and not the nonnegativity of the two factors on its own, is what licenses this.

L3L4L5
1.5

Equality analysis, the strict direction: if n2 and x0 with x1, then (1+x)n>1+nx, by a second induction, on j, over the statement (1+x)j+2>1+(j+2)x; for j=0 we have (1+x)2=1+2x+x2>1+2x because x2>0; and assuming (1+x)m>1+mx for some m2, there are two possibilities: if x=1 then (1+x)m+1=0 while 1+(m+1)x=1(m+1)=m<0, and if x>1 then 1+x>0 and (1+x)m+1=(1+x)m(1+x)>(1+mx)(1+x)=1+(m+1)x+mx21+(m+1)x, so the strict inequality passes to m+1 in either case.

L1L2L3L4L5
2.1

Multiplying the hypothesis by 1+x0 and expanding: (1+x)n+1=(1+x)n(1+x)(1+nx)(1+x)=1+(n+1)x+nx2.

step 1.2step 1.3L1L3L5
2.2

Equality analysis, the easy direction: at n=0 both sides are 1, and at n=1 both sides are 1+x, so equality holds whenever n1; and if x=0 both sides are 1 for every n, since (1+0)n=1n=1.

step 1.1L1L5
3.1

Hence (1+x)n+11+(n+1)x, which is the claim at n+1.

step 2.1step 1.4L3
4.1

By the induction principle the inequality (1+x)n1+nx holds for every nN and every x1, and by steps 2.2 and 1.5 equality holds exactly when n1 or x=0.

step 1.1step 3.1step 2.2step 1.5L2discharge-induction
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Factorisation of bnan, and the resulting Lipschitz estimate

Statement

Let a,bR and let nN with n1, with powers as in Integer powers am and finite sums as in Finite sums and finite products, by recursion. Then

bnan=(ba)k=0n1akbn1k.

Lipschitz estimate. If 0abM then

0bnannMn1(ba),

where n denotes the canonical natural ι(n)R (Canonical naturals are positive and strictly increasing, The unique embedding of ℚ into an ordered field). This estimate is the form in which the factorisation is used, later on this page, to prove that n-th roots exist.

Facts & Assumptions

Given: Elements a,b,M of R and a natural n1. Define c:NR by ck=akbnk for kn and ck=an for k>n; only the values c0,,cn occur below.

[L1]

Definition of powers (Integer powers am): a0=1 and aj+1=aja.

[L2]

Laws of finite sums (Laws of finite sums and finite products, themselves proved by induction, The principle of mathematical induction): telescoping k<n(ck+1ck)=cnc0; scaling k<nλdk=λk<ndk and the constant sum k<nλ=nλ; and monotonicity, dkek for all k<n implies k<ndkk<nek.

[L3]

Laws of integer exponents (Laws of integer exponents): MkMn1k=Mn1 for kn1.

[L4]

Monotonicity of powers (Monotonicity of xxn and of nan): 0xy implies 0xjyj.

[L5]

Multiplying inequalities of nonnegatives: 0xy and 0uv imply xuyv. Multiplying inequalities of positives states exactly this nonstrict form, alongside the strict one, and it is the only product-of-inequalities move used below. Two instances occur: in step 1.3 with the four nonnegatives akMk and bn1kMn1k, and in step 4.1 with 0k<nakbn1knMn1 and 0baba, which yields (k<nakbn1k)(ba)nMn1(ba). No instance with a possibly negative factor and no strict instance is needed, so the multiplicative order claims of Sign rules for products and monotonicity of multiplication, which are strict and require a nonzero multiplier, are not what carries either move.

Proof

technique · direct
1.1

The consecutive differences of c factor: for k<n, ck+1ck=ak+1bnk1akbnk=akbn1kaakbn1kb=akbn1k(ab), using ak+1=aka and bnk=bn1kb.

L1algebra
1.2

The endpoints of c are c0=a0bn=bn and cn=anb0=an.

L1algebra
1.3

Now assume 0abM; then for every k<n, 0akMk and 0bn1kMn1k, so 0akbn1kMkMn1k=Mn1.

L3L4L5
1.4

Also ba0 and Mn10, and bnan0 because 0ab gives anbn.

L4L5
2.1

Telescoping the differences: k<n(ck+1ck)=cnc0=anbn.

step 1.2L2
2.2

Pulling the constant factor out of the same sum: k<n(ck+1ck)=k<nakbn1k(ab)=(ab)k<nakbn1k.

step 1.1L2
2.3

Summing the bound of step 1.3 over k<n and using monotonicity and the constant sum: k<nakbn1kk<nMn1=nMn1.

step 1.3L2
3.1

Comparing the two evaluations gives anbn=(ab)k<nakbn1k, and multiplying both sides by 1 gives the stated factorisation bnan=(ba)k=0n1akbn1k.

step 2.1step 2.2algebra
4.1

Multiplying the inequality of step 2.3 by the nonnegative factor ba and substituting into the factorisation gives bnan=(ba)k<nakbn1knMn1(ba); the multiplication is the instance of [L5] with 0k<nakbn1knMn1 and 0baba, the left-hand nonnegativity holding because every term is nonnegative by step 1.3 and finite sums are monotone. Together with bnan0 this is the Lipschitz estimate.

step 3.1step 1.3step 1.4step 2.3L2L5
TheoremStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a

Statement

Let R be a complete ordered field (Complete ordered field (least-upper-bound property)). For every aR with a0 and every nN with n1 there is a unique sR with s0 and sn=a (Integer powers am); we write

s=a1/n=an.

Moreover a1/n>0 when a>0, and a1/1=a.

This generalises the published Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0}, and the case n=2 is not new. That theorem already produces the unique a0 with (a)2=a, and it is cited as such throughout the library; the notation a1/2 introduced here is the same number. What is new is the passage to general n: the completed square that drives the n=2 argument has no direct analogue, and its place is taken by the factorisation of bnan and the resulting Lipschitz estimate (Factorisation of bnan, and the resulting Lipschitz estimate).

Facts & Assumptions

Given: A complete ordered field R (Complete ordered field (least-upper-bound property)), that is, an ordered field (Ordered field) with the least-upper-bound property; an element a0; and a natural n1, with ι(n)R written n (Canonical naturals are positive and strictly increasing, The unique embedding of ℚ into an ordered field).

[L1]

Least-upper-bound property: every nonempty subset of R that is bounded above (Lower bound, bounded below, bounded set) has a least upper bound, and it is unique, so the notation supS is legitimate (Complete ordered field (least-upper-bound property), Suprema and infima are unique).

[L2]

Epsilon characterisation of the supremum: if S is nonempty and bounded above and u=supS, then for every ε>0 there is tS with uε<t (Epsilon characterisation of the supremum).

[L3]

Monotonicity of powers (Monotonicity of xxn and of nan): xxn is strictly increasing on {x0} for n1, hence injective there; x0 implies xn0 and x>0 implies xn>0; and x1 implies xnx.

[L4]

Lipschitz estimate (Factorisation of bnan, and the resulting Lipschitz estimate): if 0xyB and n1 then 0ynxnnBn1(yx).

[L5]

Order arithmetic: adding a constant preserves the order and for c>0, x<y    cx<cy (Order is preserved by adding a constant and by adding inequalities, Sign rules for products and monotonicity of multiplication), both stated there for the STRICT order alone, so where a is added or scaled below the move is that statement together with the case of equality, settled by trichotomy (Ordered field); 1>0, which is proved in The multiplicative identity is positive and stated by none of those three, hence 2=1+1>0; and 0<21<1, since 0<1<2 gives 0<21<11=1 (Inverses of positives are positive, and reciprocation reverses order, claim 2).

[L6]

Trichotomy: for x,yR exactly one of x<y, x=y, y<x holds; consequently any two elements have a minimum (Ordered field).

[L7]

A product with a zero factor vanishes: 0x=x0=0 (Multiplication by zero: 0a=0).

Proof

technique · contradiction
1.1

If a=0 then s=0 satisfies s0 and sn=0=a, since 0n=0n10=0 for n1; so existence holds in that case and we assume a>0 from here on.

givenL3L7algebra
1.2

Uniqueness holds as soon as a root exists: if u,v0 satisfy un=vn, then strict monotonicity of xxn on the nonnegatives rules out both u<v and v<u, so u=v by trichotomy.

L3L6
1.3

Define S={tR:t0 and tna}; then 0S, because 00 and 0n=0a, so S is nonempty.

givenL3L7
1.4

The element M:=1+a is an upper bound of S: since a>0 and 1>0 we have M>1 and M>a, so any t>M satisfies t>1, whence tnt>M>a and tS.

givenL3L5
2.1

By the least-upper-bound property s:=supS exists in R; moreover s0 because 0S, and sM because M is an upper bound and s is the least one.

L1step 1.3step 1.4
3.1

Put B:=M+1=a+2; then B>M1>0, so Bn1>0 and nBn1>0, and every x with 0xM+1 satisfies 0xB.

step 2.1L3L5
3.2

Assume, for contradiction, that sna; by trichotomy either sn<a or sn>a.

assume-contrastep 2.1L6
4.1

(Case sn<a.) Put δ:=min{1,(asn)(nBn1)1}, which is >0 since asn>0 and nBn1>0, and put h:=21δ, so that 0<h<δ1 and h<(asn)(nBn1)1; then 0ss+hM+1=B, so the Lipschitz estimate gives (s+h)nsnnBn1h<asn, hence (s+h)n<a and s+hS, while s+h>s contradicts that s is an upper bound of S.

assume-case lowstep 3.2step 2.1step 3.1L4L5L6choose
4.2

(Case sn>a.) Here s>0, since s=0 would give sn=0a; put δ:=min{s,(sna)(nBn1)1}>0 and h:=21δ, so that 0<h<s and h<(sna)(nBn1)1; then 0shsB, so the Lipschitz estimate gives sn(sh)nnBn1h<sna, hence (sh)n>a; applying the epsilon characterisation with ε=h produces tS with t>sh0, whence tn>(sh)n>a by strict monotonicity, contradicting tS.

assume-case highstep 3.2step 2.1step 3.1L2L3L4L5L6L7choose
5.1

Both cases of the disjunction in step 3.2 are impossible, so the assumption fails and sn=a; this s is the unique nonnegative n-th root of a by step 1.2, it satisfies s>0 when a>0 because s=0 would force a=sn=0, and at n=1 the element a itself is a nonnegative solution of s1=a, so a1/1=a; writing a1/n=an for it, the case n=2 recovers the already published a of Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0}.

step 4.1step 4.2step 3.2step 1.2step 1.1L3L7casesdischarge-contradiction
DefinitionDefinition: AI-adaptedProof: Not applicablejudge pass (deepseek-v4-pro + gpt-5.6-terra)verified 2026-08-04 (gpt-5.6-sol-codex-subscription)Open item page →

Rational powers ar of a positive base

Definition

Let aR with a>0 and let rQ (The rationals as equivalence classes of pairs of integers).

Every rational has a representative with positive denominator (Every rational has a positive-denominator representative), so write r=m/n with mZ and n a positive integer; a positive integer is the image of a unique natural 1 (The naturals embed in the integers), and we write n for that natural too. Define

ar:=(a1/n)m,

where a1/n is the unique nonnegative n-th root of a (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a) and the outer exponent is an integer power (Integer powers am). The outer power is legitimate because a1/n>0 when a>0, so it has an inverse and negative integer exponents are allowed.

Well-definedness. The right-hand side must not depend on which representative m/n of r was chosen. It does not: that is Rational powers do not depend on the representative , which is recorded in this item's justified_by rather than in its deps, since it is a statement about the operation defined here and therefore depends on this definition.

The base must be positive. For a<0 the same formula is not a definition at all, because different representatives of the same rational give different answers, or no answer: see FALSE: am/n:=(a1/n)m extends to negative bases, which is exactly the item that justifies the restriction.

Supplementary clause for the base 0. For a=0 and rational r>0 (Order on the rationals) the displayed formula still makes sense and still does not depend on the representative: r>0 forces m1, and (01/n)m=0m=0 (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a applies to every a0). So we set 0r=0 for rational r>0. For r<0 the expression 0r is left undefined, since 0 has no inverse. This clause is what lets the inequalities later on this page be stated for nonnegative entries rather than for positive ones only.

Remarks

LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (openai/gpt-5.4)verified 2026-07-26 (claude-opus-5)Open item page →

Rational powers do not depend on the representative

Statement

Let aR with a>0, and let m,pZ and n,qN with n,q1 satisfy m/n=p/q in Q (The rationals as equivalence classes of pairs of integers). Then

(a1/n)m=(a1/q)p.

Consequently the value ar of Rational powers ar of a positive base depends only on the rational r and not on the representative m/n chosen for it, so Rational powers ar of a positive base really does define a function (a,r)ar on {a>0}×Q. The same conclusion holds in the supplementary case a=0 with r>0 (Order on the rationals), where every representative gives the value 0.

Facts & Assumptions

Given: A real a>0, integers m,p, and naturals n,q1 with m/n=p/q in Q.

[L1]

Roots (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a): a1/n is the unique s0 with sn=a, and s>0 when a>0; likewise for q.

[L2]

Laws of integer exponents (Laws of integer exponents, Integer powers am): for x0 and integers j,k, (xj)k=xjk and xj0.

[L3]

Injectivity of xxN on the nonnegatives for N1 (Monotonicity of xxn and of nan); and a positive element has positive integer powers, since x>0 gives xk>0 for kN and xk=(xk)1>0 (Monotonicity of xxn and of nan, Inverses of positives are positive, and reciprocation reverses order).

[L4]

Equality of rationals (The rationals as equivalence classes of pairs of integers): m/n=p/q holds exactly when mq=pn in Z.

[L5]

Positivity of a rational and of its numerator (Order on the rationals, Order on the integers, The naturals embed in the integers): the order on Q is read off any representative with positive denominator, and on such a representative m/n one has m/n>0 exactly when m>0 in Z; a positive integer is the image of a unique natural 1, so then m1.

Proof

technique · direct
1.1

Put u:=(a1/n)m and v:=(a1/q)p; since a>0 we have a1/n>0 and a1/q>0, hence u>0 and v>0.

L1L3
1.2

The hypothesis m/n=p/q says exactly that mq=pn in Z, and nq1.

L4
2.1

Raising u to the power nq and using the iterated-power law twice: unq=((a1/n)m)nq=(a1/n)mnq=((a1/n)n)mq=amq.

step 1.1L1L2
2.2

The same computation for v: vnq=((a1/q)p)nq=(a1/q)pnq=((a1/q)q)pn=apn.

step 1.1L1L2
3.1

Since mq=pn, the two right-hand sides agree, so unq=amq=apn=vnq.

step 2.1step 2.2step 1.2
4.1

Both u and v are positive and nq1, so injectivity of xxnq on the nonnegatives forces u=v, which is the displayed identity; hence ar is independent of the representative, and in the supplementary case a=0 with r>0 every representative m/n of r with n1 has m>0 in Z, hence m1, so (01/n)m=0m=0 for all of them.

step 3.1step 1.1step 1.2L1L3L5
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passverified 2026-08-04 (gpt-5.6-sol-codex-subscription)Open item page →

Laws of rational exponents

Statement

Let a,bR with a,b>0 and let r,sQ, with rational powers as in Rational powers ar of a positive base. Then:

  1. ar>0.
  2. ar+s=aras.
  3. (ab)r=arbr; in particular (ab)1/N=a1/Nb1/N for every natural N1.
  4. ar=(ar)1=1/ar.
  5. (ar)s=ars.

Claims 2 and 3 persist in the supplementary case of Rational powers ar of a positive base: for a,b0 and rationals r,s>0 (Order on the rationals) one still has (ab)r=arbr and ar+s=aras. The two identities degenerate differently, and it is worth saying how. In the product identity, a zero base on either side makes both sides 0. In the addition identity only the base a occurs, so it degenerates only when a=0, and then both sides are 0; when a>0 that identity holds with no hypothesis on b at all.

Facts & Assumptions

Given: Reals a,b>0 and rationals r,s.

[L1]

Definition and well-definedness (Rational powers ar of a positive base, Rational powers do not depend on the representative): for ANY representative r=m/N with mZ and N1 natural, ar=(a1/N)m; and a1/N is the unique x0 with xN=a (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a), which is >0 when a>0.

[L2]

Laws of integer exponents (Laws of integer exponents, Integer powers am): for x,y0 and integers j,k, xj+k=xjxk, (xj)k=xjk, (xy)j=xjyj and xj=(xj)1.

[L3]

Positivity and injectivity: x>0 implies xj>0 for every NATURAL j (Monotonicity of xxn and of nan, claim 1), and hence for every integer j, since xj=(xj)1 (Laws of integer exponents, claim 2) and the inverse of a positive element is positive (Inverses of positives are positive, and reciprocation reverses order); and xxN is injective on {x0} for N1 (Monotonicity of xxn and of nan, claim 2).

[L4]

Rational arithmetic (Arithmetic on the rationals, The rationals as equivalence classes of pairs of integers): any two rationals can be written with a common positive denominator, m/N+k/N=(m+k)/N, (m/N)=(m)/N, and (m/n)(p/q)=(mp)/(nq).

[L5]

The order on Q (The rationals form a totally ordered field, Order on the rationals) is compatible with addition, so r>0 and s>0 imply r+s>0.

[L6]

The supplementary clause of Rational powers ar of a positive base: 0t=0 for every rational t>0, while 0t is left undefined for rational t<0 and the convention 00=1 of Integer powers am is untouched. In a field, a product with a factor 0 is 0 (Multiplication by zero: 0a=0).

Proof

technique · direct
1.1

Choose a common denominator: there are a natural N1 and integers m,k with r=m/N and s=k/N; then r+s=(m+k)/N and r=(m)/N.

L4
1.2

Roots of a product: for a,b>0 and N1 the element a1/Nb1/N is positive and satisfies (a1/Nb1/N)N=(a1/N)N(b1/N)N=ab, so by uniqueness of the nonnegative N-th root (ab)1/N=a1/Nb1/N.

L1L2L3
2.1

Claim 1: ar=(a1/N)m with a1/N>0, and a positive element has positive integer powers, so ar>0.

step 1.1L1L3
2.2

Claim 3: (ab)r=((ab)1/N)m=(a1/Nb1/N)m=(a1/N)m(b1/N)m=arbr, using the root-of-a-product identity and then the integer product law.

step 1.1step 1.2L1L2
3.1

Claim 2: ar+s=(a1/N)m+k=(a1/N)m(a1/N)k=aras, the middle equality being the integer addition law applied to the nonzero base a1/N.

step 1.1step 2.1L1L2
3.2

Claim 4: ar=(a1/N)m=((a1/N)m)1=(ar)1.

step 1.1step 2.1L1L2
3.3

Claim 5: write r=m/n and s=p/q with n,q1, and put x:=a1/(nq), so x>0 and xnq=a; then (xq)n=xqn=a with xq>0, so xq=a1/n by uniqueness of the nonnegative n-th root; putting z:=xm we get z>0 and zq=(xm)q=(xq)m=(a1/n)m=ar, so z is the nonnegative q-th root of ar, that is z=(ar)1/q; therefore (ar)s=((ar)1/q)p=zp=(xm)p=xmp=(a1/(nq))mp=a(mp)/(nq)=ars.

step 2.1L1L2L3L4
3.4

The supplementary nonnegative case, product identity: let a,b0 and let r>0 be rational; if a>0 and b>0 this is step 2.2, and otherwise a=0 or b=0, so ab=0 and the left side is 0r=0, while the right side arbr has a factor 0r=0 and is therefore 0 as well.

step 2.2L6
4.1

The supplementary nonnegative case, addition identity: the identity ar+s=aras involves the base a only, so nothing need be assumed about b; for a>0 it is step 3.1 verbatim, which uses only a>0, and both sides are then positive rather than 0; for a=0 the exponents satisfy r+s>0, so the left side is 0r+s=0 and the right side is 00=0.

step 3.1L5L6
5.1

All five claims hold for positive bases and arbitrary rational exponents, together with the two supplementary identities for nonnegative bases and positive rational exponents.

step 2.1step 3.1step 3.2step 2.2step 3.3step 3.4step 4.1
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Monotonicity of rar and of aar

Statement

Let aR with a>0 and let r,sQ with r<s (Order on the rationals), with rational powers as in Rational powers ar of a positive base.

  1. In the exponent. If a>1 then ar<as; if a=1 then ar=as=1; if 0<a<1 then ar>as.
  2. In the base. If rQ with r>0 and 0<a<b, then ar<br; so aar is strictly increasing on {aR:a>0}.
  3. Comparison with 1. For rational t>0: a>1 implies at>1, and 0<a<1 implies at<1.

Facts & Assumptions

Given: A real a>0 and rationals r<s; write t:=sr, a rational with t>0.

[L1]

Positive rationals have positive representatives: t>0 can be written t=m/N with m,N naturals and m1, N1. Every rational has a representative with positive denominator (Every rational has a positive-denominator representative); on such a representative m/N>0 holds exactly when m>0 in Z (Order on the rationals, Order on the integers); and a positive integer is the image of a unique natural 1 (The naturals embed in the integers), which is what turns both the numerator m>0 and the denominator N>0 into naturals 1. The last passage is a genuine step and is what Rational powers do not depend on the representative uses at its own [L5].

[L2]

Rational power laws (Laws of rational exponents, Rational powers do not depend on the representative, Rational powers ar of a positive base): ar>0; ar+t=arat; and at=(a1/N)m for the representative t=m/N.

[L3]

Roots (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a): a1/N is the unique x0 with xN=a, and it is >0 when a>0.

[L4]

Integer power monotonicity (Monotonicity of xxn and of nan): for N1, xxN is strictly increasing on {x0} (claim 2); for m1, x>1 implies xmx>1 (claim 3), while 0x<1 implies xm<1m=1, which is claim 2 again with 1 as the larger base and NOT claim 3, whose nonstrict xm1 would not suffice; and 1m=1 for every integer m, by claim 4 for natural m together with 1k=(1k)1=1 (Laws of integer exponents).

[L5]

Order arithmetic: for c>0, x<y    cx<cy; and trichotomy, exactly one of a<1, a=1, a>1 holds (Sign rules for products and monotonicity of multiplication, Ordered field).

Proof

technique · cases
1.1

Write t=sr, so t is rational with t>0, and fix a representative t=m/N with naturals m,N1; then as=ar+t=arat with ar>0, so the comparison of as with ar is exactly the comparison of at with 1.

L1L2L5
1.2

Claim 2, which needs no case split: let r>0 be rational with representative r=m/N, m,N1, and let 0<a<b; then a1/N<b1/N, since b1/Na1/N would give b=(b1/N)N(a1/N)N=a; raising to the power m preserves the strict inequality between nonnegatives, so ar=(a1/N)m<(b1/N)m=br.

L2L3L4
2.1

Case a>1: then a1/N>1, because a1/N1 would give a=(a1/N)N1; hence at=(a1/N)ma1/N>1, and multiplying 1<at by ar>0 gives ar<arat=as.

assume-case bigstep 1.1L3L4L5
2.2

Case a=1: then 1N=1 shows a1/N=1 by uniqueness of the nonnegative N-th root, so au=1m=1 for every rational u with representative m/N; in particular ar=as=1.

assume-case onestep 1.1L2L3L4
2.3

Case 0<a<1: then 0a1/N<1, because a1/N1 would give a=(a1/N)N1; hence at=(a1/N)m<1m=1 by strict monotonicity of xxm on the nonnegatives, m1, and multiplying at<1 by ar>0 gives as=arat<ar.

assume-case smallstep 1.1L3L4L5
3.1

The three cases a>1, a=1, 0<a<1 exhaust the possibilities for a>0 by trichotomy, so claim 1 holds; claim 3 is the comparison of at with 1 established inside the first and third cases; and claim 2 is step 1.2.

cases-exhaustivestep 2.1step 2.2step 2.3step 1.2L5
LemmaStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Triangle inequality for finite sums

Statement

Let a:NR be a sequence of reals and nN, with finite sums as in Finite sums and finite products, by recursion and the absolute value as in Absolute value in an ordered field. Then

k<nakk<nak.

Facts & Assumptions

Given: A sequence a:NR and a natural n.

[L1]

Recursion clauses (Finite sums and finite products, by recursion): k<0ak=0 and k<n+1ak=k<nak+an.

[L2]

Two-term triangle inequality: x+yx+y (The triangle inequality).

[L3]

Basic absolute value facts: x0 and 0=0 (Basic properties of the absolute value, Absolute value in an ordered field).

[L4]

Adding a constant preserves the order: Order is preserved by adding a constant and by adding inequalities gives x<yx+c<y+c and states no nonstrict form, so the form used below, xyx+cy+c, is that statement together with the case x=y, which trichotomy settles; and is transitive (Ordered field).

[L5]

Proof

technique · induction
1.1

Base case n=0: both sides are 0, since k<0ak=0=0 and k<0ak=0, so the inequality holds.

baseL1L3
1.2

Inductive hypothesis: fix nN and assume k<nakk<nak.

ih
2.1

Splitting off the last term and applying the two-term triangle inequality: k<n+1ak=k<nak+ank<nak+an.

step 1.2L1L2
3.1

Adding an to both sides of the inductive hypothesis gives k<nak+ank<nak+an=k<n+1ak, so transitivity yields k<n+1akk<n+1ak.

step 1.2step 2.1L1L4
4.1

By the induction principle the inequality holds for every nN.

step 1.1step 3.1L5discharge-induction
TheoremStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

The arithmetic mean, geometric mean inequality

Statement

Let nN with n1 and let a0,,an1R with ak0 for every k<n. Write

A:=1nk<nak,G:=(k<nak)1/n,

the arithmetic mean and the geometric mean, where the n-th root exists because k<nak0 (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a, Laws of finite sums and finite products) and n denotes the canonical natural ι(n)R, which is invertible since n1 (Canonical naturals are positive and strictly increasing, The unique embedding of ℚ into an ordered field). Then

k<nakAn,equivalentlyGA,

and equality holds in either form if and only if a0=a1==an1.

The proof is Cauchy's forward-backward induction: the statement is proved first along a doubling sequence, by doubling, and then pulled back from a member of that sequence to every smaller n by a descent that replaces the missing entry with the arithmetic mean of the others. That is why the induction below runs over the doubling scheme and not over n directly.

One point of hygiene decides how the doubling scheme is written. The doubling index has to be a natural number, because it is used as the length of a list, as a bound on an index, and as the starting point of a descent. The symbol 2j would not do: Integer powers am defines powers of a real base, so 2j denotes the real number ι(2)j, which is not a natural number and cannot index anything. The doubling sequence is therefore defined inside N, by recursion (The recursion theorem):

N0=1,Nj+1=Nj+Nj(jN),

and the induction below runs over j, with Nj as the list length. No identity relating Nj to any real power is needed anywhere, and none is claimed.

Facts & Assumptions

Given: A natural n1 and reals a0,,an10; for m1 let P(m) denote the statement "for all reals b0,,bm10, k<mbkBm where B=1mk<mbk, with equality if and only if b0==bm1".

[L1]

A product with a zero factor is zero, 0x=0 (Multiplication by zero: 0a=0). Laws of finite sums and products (Laws of finite sums and finite products, Finite sums and finite products, by recursion): splitting of sums and of products at any index; the constant sum k<mλ=mλ; monotonicity of sums, with a sum of nonnegatives being 0 only if every term is 0; and a product of nonnegatives is nonnegative, of positives positive.

[L2]

Roots (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a): every c0 has a unique c1/m0 with (c1/m)m=c, and c1/m>0 when c>0.

[L3]

Power monotonicity (Monotonicity of xxn and of nan, Integer powers am): xxm is strictly increasing and injective on {x0} for m1, and preserves nonnegativity and positivity.

[L4]

Integer exponent laws (Laws of integer exponents): (xy)m=xmym and (x2)m=x2m.

[L5]

Order arithmetic: multiplying inequalities of nonnegatives, in both the strict and the nonstrict form (Multiplying inequalities of positives); adding inequalities and scaling by a positive, both of which Order is preserved by adding a constant and by adding inequalities and Sign rules for products and monotonicity of multiplication state for the STRICT order only, so the nonstrict forms used below are the strict ones together with the case of equality, which is settled by trichotomy (Ordered field); and the inverse of a positive element is positive (Inverses of positives are positive, and reciprocation reverses order).

[L6]

Squares: x20, which is x2>0 for x0 (Squares of nonzero elements are positive, the only thing that item states) together with 02=00=0, a product with a zero factor (Multiplication by zero: 0a=0); and x2=0 only for x=0, the contrapositive of the same statement.

[L7]
[L8]

The doubling naturals: by the recursion theorem (The recursion theorem) applied to the set N, the starting element 1 and the function f(k)=k+k, there is a unique jNj from N to N with N0=1 and Nj+1=Nj+Nj. Each Nj is a natural number, available as a list length and as an index bound; the real number ι(2)j is never used and never mentioned.

[L9]

Canonical naturals: ι(m)>0 for m1, ι is a field homomorphism, and we write m for ι(m) (Canonical naturals are positive and strictly increasing, The unique embedding of ℚ into an ordered field).

[L10]

Order and addition in N (Order on the natural numbers, is a linear order on N, Order is compatible with addition, Discreteness: σ(n) is the immediate successor, Addition is associative, Addition is commutative): is a linear order; mn holds exactly when n=m+i for some iN; mn holds exactly when m+kn+k and m<n exactly when m+k<n+k, BOTH forms being stated in Order is compatible with addition and the nonstrict one being the one step 1.5 uses; m<n holds exactly when m+1n (Discreteness: σ(n) is the immediate successor); and addition is associative and commutative.

Proof

technique · induction
1.1

Base case P(1): for a single entry b00 we have k<1bk=b0 and B=11b0=b0, so k<1bk=b0=B1; equality always holds, and the condition "all entries equal" is automatic for one entry.

baseL1L9
1.2

Inductive hypothesis: fix jN, write N:=Nj for the j-th doubling natural, and assume P(N).

ih
1.3

Reduction to positive entries: if some bk=0 then k<mbk=0Bm, and equality means Bm=0, hence B=0, hence k<mbk=0, hence every bk=0, that is, all entries equal; conversely all entries equal to 0 gives both sides 0; so P(m) holds for lists with a zero entry, and it is enough to prove P(m) for lists of strictly positive entries.

L1L2L3L9
1.4

The two-entry case P(2): for x,y0, (x+y2)2xy=(x+y)24xy4=(xy2)20, so xy(x+y2)2, with equality exactly when (xy2)2=0, that is when x=y.

L5L6L9
1.5

The doubling naturals grow past their index: Nj1 and Nj>j for every jN, by induction on j inside N; at j=0, N0=11 and 1>0; and if Nj1 and Nj>j, then Njj+1, so Nj+1=Nj+Nj(j+1)+1>j+1 and Nj+11+11. This inequality is between natural numbers throughout; nothing is transported into R.

L7L8L10
2.1

Doubling step, P(N)P(2N), where 2N:=N+N=Nj+1 is again a natural number: let a0,,a2N1>0, put X:=1Nk<Nak and Y:=1Nk=N2N1ak, both positive, and let A:=12Nk<2Nak; splitting the sum at N gives k<2Nak=NX+NY, so A=X+Y2; splitting the product at N and applying the hypothesis to each half gives k<2Nak=(k<Nak)(k=N2N1ak)XNYN=(XY)N; and the two-entry case applied to X,Y gives XY(X+Y2)2=A2, whence (XY)N(A2)N=A2N and therefore k<2NakA2N.

step 1.2step 1.3step 1.4L1L3L4L5L9
2.2

Descent step, P(m+1)P(m) for every natural m1, written in this direction so that no subtraction of naturals is needed: let b0,,bm1>0 and put B:=1mk<mbk>0; define ak:=bk for k<m and am:=B, so that k<m+1ak=mB+B=(m+1)B and the arithmetic mean of a0,,am is exactly B; applying P(m+1) gives (k<mbk)B=k<m+1akBm+1, and dividing by B>0 gives k<mbkBm; moreover equality here holds exactly when k<m+1ak=Bm+1, which by the equality clause of P(m+1) holds exactly when all of a0,,am are equal, that is when b0==bm1=B, which in turn holds exactly when the bk are all equal, since a constant list equals its own mean; together with the zero-entry case this is P(m).

step 1.3L1L3L5L9
3.1

Equality in the doubling step: with the notation of the doubling step 2.1, suppose k<2Nak=A2N; then both inequalities in the chain are equalities, so first (XY)N=(A2)N with XY,A2>0 gives XY=A2 by injectivity, hence X=Y by the equality clause of the two-entry case; and second, writing P1=k<NakXN and P2=k=N2N1akYN with all four quantities positive, P1<XN would give P1P2<XNP2XNYN, so P1=XN and likewise P2=YN, whence by the equality clause of P(N) the first half is constant, equal to its mean X, and the second half is constant, equal to Y=X; so all 2N entries are equal, and conversely entries all equal to c give =c2N and A=c.

step 1.2step 1.4step 2.1L1L3L5L9
4.1

By the induction principle, P(Nj) holds for every jN: the base is P(N0)=P(1) and the step is the doubling argument together with its equality clause.

step 1.1step 2.1step 3.1L7L8
5.1

Every n1 is reached: by step 1.5, Nn>n, so nNn and Nn=n+i0 for some i0N; now run a further induction on i over the statement Q(i), "for every natural m1 with m+i=Nn, P(m) holds"; Q(0) says P(Nn), which is step 4.1; and if Q(i) holds and m1 satisfies m+(i+1)=Nn, then (m+1)+i=Nn with m+11, so P(m+1) holds by Q(i) and the descent step turns it into P(m), giving Q(i+1); applying Q(i0) to m=n yields P(n); hence k<nakAn with equality exactly when all ak are equal.

step 1.5step 4.1step 2.2L7L10
6.1

Translation to the root form: G=(k<nak)1/n satisfies G0 and Gn=k<nakAn with A0, so GA, since G>A would give Gn>An; and G=A holds exactly when Gn=An, by injectivity of xxn on the nonnegatives, hence exactly when all ak are equal.

step 5.1L2L3discharge-induction
TheoremStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Weighted AM-GM inequality with rational weights

Statement

Let nN with n1, let x0,,xn1R with xk>0, and let w0,,wn1Q be rational weights with wk0 (Order on the rationals) whose images under the canonical embedding ι:QR (The unique embedding of ℚ into an ordered field) satisfy k<nι(wk)=1. Then

k<nxkwk    k<nι(wk)xk,

where xkwk is the rational power of Rational powers ar of a positive base.

Both sums are sums in R, and that is not a detail. This library defines k<n only for a sequence NR (Finite sums and finite products, by recursion); there is no finite sum of rationals and none is used here. The weights are therefore summed after being carried into R by ι, and no step below sums anything outside R. Nothing is lost by this reading, because ι is an injective field homomorphism: for n=2 the hypothesis ι(w0)+ι(w1)=1 is exactly w0+w1=1 in Q, and the conclusion reads x0w0x1w1ι(w0)x0+ι(w1)x1. Below, ι is kept visible wherever a rational is being used as a real; elsewhere the page follows the usual convention of writing w for ι(w) (Finite sums and finite products, by recursion).

Why the weights are rational. The restriction is not laziness and it cannot be relaxed here. For a real weight w the symbol xw has no meaning in this library at all: Rational powers ar of a positive base defines xr only for rQ, and every proof on this page is a finite chain of field operations together with the least-upper-bound property. Real exponents require the exponential function and its inverse, which are built much later and by different means; the closing remark of this page records the situation in full. Taking n=2 and w0=w1=1/2 recovers the two-term case x0x1(x0+x1)/2 of The arithmetic mean, geometric mean inequality.

Facts & Assumptions

Given: A natural n1, reals x0,,xn1>0, and rationals w0,,wn10 with k<nι(wk)=1, a sum in R.

[L1]

AM-GM (The arithmetic mean, geometric mean inequality): for c0,,cN10 with N1, (i<Nci)1/N1Ni<Nci.

[L2]

Finite sums and products, defined ONLY for sequences NR (Finite sums and finite products, by recursion, Laws of finite sums and finite products): the recursion clauses k<0ak=0 and k<j+1ak=k<jak+aj; splitting of sums and products at any index mm, k<mak=k<mak+k=mm1ak, where the tail k=mm1ak is by definition the shifted sum t<mmam+t (Finite sums and finite products, by recursion), and likewise for products; scaling k<mλak=λk<mak; and the constant sum i<mλ=ι(m)λ. Every and written below is therefore a sum or product in R.

[L3]

Constant product: i<mλ=λm, by induction on m from the recursion clauses i<m+1λ=(i<mλ)λ and λm+1=λmλ, with both sides equal to 1 at m=0 (Finite sums and finite products, by recursion, Integer powers am, The principle of mathematical induction).

[L4]

Rational power laws (Laws of rational exponents, Rational powers ar of a positive base, Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a): for u,v>0 and rationals r,s: ur>0, (uv)r=urvr (hence, by induction on the number of factors, (j<nuj)r=j<nujr, using also the constant product for the empty case), and (ur)s=urs.

[L5]

Rational arithmetic, the order on Q and the embedding (Every rational has a positive-denominator representative, The rationals as equivalence classes of pairs of integers, Arithmetic on the rationals, Order on the rationals, The unique embedding of ℚ into an ordered field, Canonical naturals are positive and strictly increasing): on a representative with positive denominator, m/N0 holds exactly when m0 in Z (Order on the rationals, with the order on Z as in Order on the integers); a nonnegative integer is the image of a unique natural and a positive integer the image of a unique natural 1 (The naturals embed in the integers), which is the step that licenses reading such an m, and such a denominator, as a natural number; every single rational has a representative with positive denominator (Every rational has a positive-denominator representative states exactly this, for one rational; the passage to a common denominator for finitely many is NOT quoted from it and is carried out by the induction inside step 1.1); ι:QR is an injective order-preserving field homomorphism, so ι(0)=0, ι(u+v)=ι(u)+ι(v) and ι(uv)=ι(u)ι(v); on an integer ι is mm1R, with ι(m)>0 for a natural m1 and mι(m) injective on {1,2,}, hence injective on all of N since ι(0)=0<ι(m) there.

[L6]

Induction principle (The principle of mathematical induction), used for the routine inductions on the number of terms below, and the recursion theorem (The recursion theorem), which is what defines a function on N by a recursion clause.

Proof

technique · direct
1.1

Common denominator, by an induction written out rather than asserted. The claim at j is: any rationals v0,,vj1 admit a natural N1 and integers p0,,pj1 with vk=pk/N for every k<j. At j=0 take N=1, there being no pk to produce. Assume the claim at j and let v0,,vj be given: applying it to v0,,vj1 yields a natural N1 and integers pk with vk=pk/N, and vj has a representative vj=a/b with b>0, hence with b a natural 1; then N:=Nb is a natural 1, and the integers pk:=pkb for k<j and pj:=aN satisfy pk/N=(pkb)/(Nb)=pk/N=vk and pj/N=(aN)/(bN)=a/b=vj, since (x,y)(xc,yc) for c0. The claim at j=n, applied to w0,,wn1, fixes a natural N1 and integers m0,,mn1 with wk=mk/N. Finally each mk is a natural: wk0 read on the positive-denominator representative mk/N gives mk0 in Z, and a nonnegative integer is the image of a unique natural.

L5L6
2.1

The numerators sum to ι(N) in R: applying scaling to the real sequence kι(wk) multiplies the hypothesis k<nι(wk)=1 by ι(N) to give k<nι(N)ι(wk)=ι(N), and ι(N)ι(wk)=ι(Nwk)=ι(mk) since ι is multiplicative and Nwk=mk in Q, so k<nι(mk)=ι(N).

step 1.1L2L5
2.2

The partial sums of the numerators, inside N: define M:NN by recursion, M0:=0 and Mj+1:=Mj+mj for j<n (and Mj+1:=Mj for jn), so each Mj is a natural number and MjMj+1; then ι(Mj)=k<jι(mk) for every jn, by induction on j, since ι(M0)=ι(0)=0=k<0ι(mk) and ι(Mj+1)=ι(Mj)+ι(mj)=k<jι(mk)+ι(mj)=k<j+1ι(mk) by additivity of ι and the recursion clause for finite sums.

step 1.1L2L5L6construct
3.1

Hence Mn=N, an identity between natural numbers: steps 2.1 and 2.2 give ι(Mn)=k<nι(mk)=ι(N), and mι(m) is injective on N.

step 2.1step 2.2L5
4.1

The expanded list: define c:NR by ci:=xj whenever Mji<Mj+1 for some j<n, and ci:=1 for iN; this covers every iN exactly once, because the blocks [Mj,Mj+1) for j<n partition [0,Mn)=[0,N) by step 3.1, and every ci with i<N is positive since each xj>0.

step 1.1step 2.2step 3.1L5construct
5.1

Its sum and product, by a second induction written out rather than asserted. The claim at jn is i<Mjci=k<jι(mk)xk and i<Mjci=k<jxkmk. At j=0 we have M0=0 and all four expressions are the empty sum 0 or the empty product 1. Assume the claim at j<n. Since MjMj+1, splitting gives i<Mj+1ci=i<Mjci+i=MjMj+11ci, and the tail is by definition t<mjcMj+t, since Mj+1Mj=mj; every one of its terms equals xj, because MjMj+t<Mj+1 for t<mj, so the constant sum evaluates it as ι(mj)xj, and therefore i<Mj+1ci=k<jι(mk)xk+ι(mj)xj=k<j+1ι(mk)xk by the recursion clause for finite sums. The same computation with products in place of sums, the constant product in place of the constant sum, gives i<Mj+1ci=(k<jxkmk)xjmj=k<j+1xkmk. At j=n, where Mn=N by step 3.1, this reads i<Nci=j<nι(mj)xj and i<Nci=j<nxjmj.

step 3.1step 4.1L2L3L6
6.1

Applying AM-GM to c0,,cN1 and substituting: (j<nxjmj)1/N=(i<Nci)1/N1Ni<Nci=ι(N)1j<nι(mj)xj=j<nι(wj)xj, the last equality by scaling together with ι(N)1ι(mj)=ι(mj/N)=ι(wj).

step 4.1step 5.1L1L2L5
6.2

Rewriting the left-hand side with the rational power laws: (j<nxjmj)1/N=j<n(xjmj)1/N=j<nxjmj/N=j<nxjwj, each xjmj being positive.

step 5.1L4L6
7.1

Combining the two displays gives j<nxjwjj<nι(wj)xj, which is the assertion.

step 6.1step 6.2
TheoremStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Young's inequality for products (rational conjugate exponents)

Statement

Let p,qQ with p>1 and q>1 (Order on the rationals) be conjugate exponents, that is

1p+1q=1,equivalentlyq=pp1.

Then for all a,bR with a0 and b0,

ab    app+bqq,

with the rational powers of Rational powers ar of a positive base (its supplementary clause gives 0p=0, since p>0) and with the rationals p,q acting on R through the canonical embedding (The unique embedding of ℚ into an ordered field).

The conjugate exponent is rational because p is. From 1q=11p=p1p one gets q=p/(p1), a quotient of rationals with nonzero denominator (Arithmetic on the rationals), hence a rational. This is the observation that keeps Hölder and Minkowski inside the rational world on this page.

Facts & Assumptions

Given: Rationals p,q>1 with 1/p+1/q=1, and reals a,b0.

[L1]

Weighted AM-GM with rational weights (Weighted AM-GM inequality with rational weights): for x0,x1>0 and rationals w0,w10 with w0+w1=1, x0w0x1w1w0x0+w1x1.

[L2]

Rational power laws (Laws of rational exponents, Rational powers ar of a positive base): for u>0 and rationals r,s, ur>0 and (ur)s=urs, and u1=u; and 0r=0 for rational r>0.

[L3]

Rational arithmetic (The rationals as equivalence classes of pairs of integers, Arithmetic on the rationals, Order on the rationals): q=p/(p1) is a quotient of rationals with nonzero denominator, hence rational, and p(1/p)=1. Moreover Q is itself a totally ordered field (The rationals form a totally ordered field), which is what licenses the order arithmetic used on p and q; being an ordered field it has 1>0 (The multiplicative identity is positive, which is where that fact is proved: The rationals form a totally ordered field states totality, compatibility with addition and closure of the positives under multiplication, and not this), so p>1>0 gives p>0 by transitivity and hence 1/p>0, and likewise 1/q>0 (Inverses of positives are positive, and reciprocation reverses order, claim 1, applied in Q).

[L4]

The embedding ι:QR is an order-preserving field homomorphism, so ι(1/p)=ι(p)1>0 (The unique embedding of ℚ into an ordered field, Inverses of positives are positive, and reciprocation reverses order, Sign rules for products and monotonicity of multiplication).

Proof

technique · direct
1.1

The pair w0:=1/p, w1:=1/q is a legitimate system of rational weights: both are rational and positive because p,q>1>0, and w0+w1=1 by hypothesis.

givenL3L4
1.2

Degenerate cases: if a=0 then the left-hand side is 0 while the right-hand side is 0p/p+bq/q=bq/q0, since 0p=0 for p>0 and bq0; the case b=0 is symmetric, so the inequality holds whenever a=0 or b=0.

givenL2L3L4
1.3

For a>0 and b>0, which is the only case in which this step is used, the left-hand factors simplify: (ap)1/p=ap(1/p)=a1=a and, in the same way, (bq)1/q=b.

L2L3
2.1

Assume now a>0 and b>0, and put x0:=ap>0 and x1:=bq>0; applying weighted AM-GM with the weights of step 1.1 gives (ap)1/p(bq)1/q1pap+1qbq.

step 1.1L1L2
3.1

Substituting, abapp+bqq for all a,b>0, and together with the degenerate cases this proves the inequality for all a,b0.

step 2.1step 1.3step 1.2
TheoremStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

The Cauchy-Schwarz inequality for finite sums

Statement

Let nN and let a0,,an1 and b0,,bn1 be reals, with finite sums as in Finite sums and finite products, by recursion. Then

(k<nakbk)2    (k<nak2)(k<nbk2),

and, in root form (Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0}),

k<nakbk    k<nak2  k<nbk2.

Equality holds in the first display if and only if the two lists are proportional, in the symmetric sense that there is a pair (λ,μ)(0,0) of reals with λak=μbk for every k<n.

No root is used in the proof of the squared form. That form is an identity plus a sign argument in the ordered field, and the root form is only a restatement of it through the monotonicity of squaring on the nonnegatives (Squaring is monotone on the nonnegatives); the root enters nowhere but the last step, where that restatement is made and Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0} is what supplies the square-root symbol. This matters here, because it makes the squared inequality independent of the existence theorem for roots.

Facts & Assumptions

Given: A natural n and reals a0,,an1, b0,,bn1. Write A:=k<nak2, B:=k<nakbk and C:=k<nbk2.

[L1]

Laws of finite sums (Laws of finite sums and finite products, Finite sums and finite products, by recursion): additivity, scaling, monotonicity, and the fact that a sum of nonnegative terms is nonnegative and vanishes only if every term vanishes.

[L2]

Squares (Squares of nonzero elements are positive, Integer powers am): x20 for every x, and x2=0 only for x=0; and a product with a zero factor vanishes, 0x=0 (Multiplication by zero: 0a=0).

[L3]

Square roots (Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0}): every c0 has a unique c0 with (c)2=c.

[L4]

Monotonicity of squaring (Squaring is monotone on the nonnegatives): for x,y0, xy    x2y2; and x2=x2 with x0 (Basic properties of the absolute value, Absolute value in an ordered field).

[L5]

Order arithmetic in an ordered field: adding inequalities (Order is preserved by adding a constant and by adding inequalities) and scaling an inequality by a positive element (Sign rules for products and monotonicity of multiplication, claim 4) are both stated there for the STRICT order alone, so the nonstrict uses below are those statements together with the case of equality, settled by trichotomy (Ordered field); the inverse of a positive element is positive (Inverses of positives are positive, and reciprocation reverses order, claim 1); and a nonzero factor cancels, since λx=0 with λ0 gives x=λ1(λx)=λ10=0, a product with a zero factor (Multiplication by zero: 0a=0).

Proof

technique · direct
1.1

For every tR each term (akt+bk)2 is nonnegative, so the sum is nonnegative, and expanding with additivity and scaling gives 0k<n(akt+bk)2=At2+2Bt+C.

L1L2
1.2

In particular A0 and C0, being sums of squares.

L1L2
1.3

Proportionality forces equality: assume λak=μbk for all k<n with (λ,μ)(0,0); if μ0 then bk=cak with c=λ/μ, so B=cA and C=c2A by scaling, whence B2=c2A2=A(c2A)=AC; and if μ=0 then λ0 forces ak=0 for all k, so A=B=0 and both sides vanish.

L1L5
2.1

Suppose first A=0: then every term of k<nak2 vanishes, so ak=0 for all k<n, hence B=k<n0bk=0 and both sides of the squared inequality are 0, so it holds with equality; and the pair (λ,μ)=(1,0) satisfies λak=0=μbk.

step 1.2L1L2
2.2

Suppose instead A>0 and substitute t=B/A into step 1.1: 0AB2A22B2A+C=CB2A, so B2AC, and multiplying by A>0 gives B2AC.

step 1.1step 1.2L5
3.1

The squared inequality therefore holds in both cases, which exhaust the possibilities since A0.

step 2.1step 2.2step 1.2
3.2

Equality forces proportionality: in the case A=0 this was step 2.1; in the case A>0, if B2=AC then putting t0=B/A in step 1.1 gives k<n(akt0+bk)2=At02+2Bt0+C=CB2A=0, so every term vanishes and bk=t0ak for all k, and the pair (λ,μ)=(t0,1)(0,0) works.

step 1.1step 2.1step 2.2L1L2L5
4.1

The root form: by step 3.1, B2=B2AC=(AC)2, and both B and AC are nonnegative, so monotonicity of squaring on the nonnegatives gives BAC; note also that AC is the nonnegative square root of AC, by uniqueness.

step 3.1step 1.2L3L4
TheoremStatement: AI-adaptedProof: AI-adaptedprecheck passverified 2026-08-04 (gpt-5.6-sol-codex-subscription)Open item page →

Hölder's inequality for finite sums (rational exponents)

Statement

Let nN, let a0,,an1 and b0,,bn1 be reals, and let p,qQ with p,q>1 and 1p+1q=1 be conjugate exponents (Young's inequality for products (rational conjugate exponents)). Then

k<nakbk    (k<nakp)1/p(k<nbkq)1/q.

All powers here are rational powers of nonnegative bases (Rational powers ar of a positive base): the exponents p,q,1/p,1/q are positive rationals, so the supplementary clause 0r=0 covers the vanishing bases and no expression is left undefined. Taking p=q=2 gives k<nakbk(k<nak2)1/2(k<nbk2)1/2, since x1/2=x and ak2=ak2. That is not literally the root form of The Cauchy-Schwarz inequality for finite sums, whose left-hand side is k<nakbk: the two are bridged by k<nckk<nck (Triangle inequality for finite sums), which is the only step needed to get from the display above to the root form.

Facts & Assumptions

Given: A natural n, reals a0,,an1 and b0,,bn1, and conjugate rationals p,q>1. Write S:=k<nakp, T:=k<nbkq, P:=S1/p and Q:=T1/q.

[L1]

Young's inequality (Young's inequality for products (rational conjugate exponents)): uvupp+vqq for all reals u,v0.

[L2]

Laws of finite sums (Laws of finite sums and finite products, Finite sums and finite products, by recursion): additivity, scaling, monotonicity, and the fact that a sum of nonnegative terms is nonnegative and vanishes only if every term vanishes.

[L3]

Rational power laws (Laws of rational exponents, Rational powers ar of a positive base, Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a): for u>0 and rationals r,s: ur>0, (ur)s=urs, u1=u, ur=(ur)1, and (uv)r=urvr, the last also for u,v0 when r>0; and 0r=0 for rational r>0, while u>0 gives ur>0.

[L4]

Absolute values (Basic properties of the absolute value, Absolute value in an ordered field): x0, xy=xy, and x=0 only for x=0.

[L5]

Order arithmetic: adding inequalities, that is uv and uv imply u+uv+v, and scaling a by a positive element. Order is preserved by adding a constant and by adding inequalities and Sign rules for products and monotonicity of multiplication state both moves for the STRICT order and only that, so the nonstrict forms used below are those statements together with the case of equality, which trichotomy settles (Ordered field); and inverses of positives are positive (Inverses of positives are positive, and reciprocation reverses order, claim 1). The rational coefficients 1/p and 1/q are read as elements of R through the unique injective order-preserving field embedding of Q (The unique embedding of ℚ into an ordered field, Order on the rationals); the rational exponents p and q remain elements of Q and act through Rational powers ar of a positive base.

Proof

technique · direct
1.1

All the quantities are defined and nonnegative: each akp0 and each bkq0, so S0 and T0, and since 1/p>0 and 1/q>0 the powers P=S1/p and Q=T1/q are defined and nonnegative.

L2L3L4
2.1

Degenerate cases: if S=0 then every akp=0, so every ak=0 (a positive base has positive powers) and hence every ak=0, making the left-hand side k<nakbk=0, while P=01/p=0 makes the right-hand side 0 as well; the case T=0 is symmetric, so the inequality holds and we may assume S>0 and T>0, hence P>0 and Q>0.

step 1.1L2L3L4
3.1

Normalisation identities: Pp=(S1/p)p=S(1/p)p=S1=S, and likewise Qq=T; moreover for each k, (akP1)p=akp(P1)p=akp(Pp)1=akpS1, and likewise (bkQ1)q=bkqT1.

step 2.1L3
4.1

Termwise Young, applied to u=akP10 and v=bkQ10: for every k<n, akbkP1Q11pakpS1+1qbkqT1.

step 3.1L1L3L5
5.1

Summing over k<n and using additivity and scaling: P1Q1k<nakbk1pS1k<nakp+1qT1k<nbkq=1p+1q=1, the middle equality because S1S=1 and T1T=1.

step 4.1step 2.1L2L5
6.1

Multiplying by PQ>0 and using akbk=akbk gives k<nakbkPQ, which together with the degenerate cases is the assertion.

step 5.1step 2.1L4L5
TheoremStatement: AI-adaptedProof: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

Minkowski's inequality for finite sums (rational exponent)

Statement

Let nN, let a0,,an1 and b0,,bn1 be reals, and let pQ with p1 (Order on the rationals). Then

(k<nak+bkp)1/p    (k<nakp)1/p+(k<nbkp)1/p.

All exponents appearing are positive rationals, so every power is defined for a nonnegative base by Rational powers ar of a positive base and its supplementary clause 0r=0.

The conjugate exponent is rational exactly because p is. For p>1 the proof runs through Hölder with q=p/(p1), and a quotient of rationals with nonzero denominator is a rational (Arithmetic on the rationals). Had p been an arbitrary real, q would still be a real, but akp would already be undefined: the whole statement lives inside the rational exponents built on this page, as the closing remark of the page explains.

On the case p=1. It reads k<nak+bkk<nak+k<nbk and follows by summing the two-term triangle inequality (The triangle inequality) termwise. It is not literally the finite-sum triangle inequality Triangle inequality for finite sums, which compares k<nck with k<nck for one list; combining the two at p=1 gives the familiar k<n(ak+bk)k<nak+k<nbk.

Facts & Assumptions

Given: A natural n, reals a0,,an1 and b0,,bn1, and a rational p1. Write S:=k<nak+bkp, U:=(k<nakp)1/p, V:=(k<nbkp)1/p, and ck:=ak+bkp1 when p>1.

[L1]

Hölder's inequality (Hölder's inequality for finite sums (rational exponents)): for conjugate rationals p,q>1, k<nxkyk(k<nxkp)1/p(k<nykq)1/q.

[L2]

Laws of finite sums (Laws of finite sums and finite products, Finite sums and finite products, by recursion): additivity, scaling, monotonicity, and the fact that a sum of nonnegative terms is nonnegative.

[L3]

Rational power laws (Laws of rational exponents, Rational powers ar of a positive base, Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a): for u>0 and rationals r,s: ur>0, ur+s=urus, (ur)s=urs, u1=u and ur=(ur)1; and 0r=0 for every rational r>0.

[L4]

Absolute values (Basic properties of the absolute value, Absolute value in an ordered field, The triangle inequality): x0, xy=xy, and x+yx+y.

[L5]

Rational arithmetic (Arithmetic on the rationals, The rationals as equivalence classes of pairs of integers, Order on the rationals), carried out in the totally ordered field Q (The rationals form a totally ordered field, which is what makes the order comparisons below legitimate, and which supplies totality, compatibility with addition and closure of the positives under multiplication but NOT 1>0; that is The multiplicative identity is positive, valid in Q because Q is an ordered field): for rational p>1 one has p1>0 and, since 1>0, also p>p1>0, so the number q:=p/(p1) is a rational with q>1, 1p+1q=1, (p1)q=p and 11q=1p.

[L6]

Order arithmetic: Order is preserved by adding a constant and by adding inequalities and Sign rules for products and monotonicity of multiplication state adding inequalities and scaling by a positive element for the STRICT order only, so the nonstrict forms used below (adding two , and scaling a by a nonnegative element) are those statements together with the case of equality, which is settled by trichotomy (Ordered field); and the inverse of a positive element is positive (Inverses of positives are positive, and reciprocation reverses order, claim 1).

Proof

technique · direct
1.1

Every quantity is defined and nonnegative: ak+bkp, akp and bkp are nonnegative because p>0, hence so are S, U and V.

L2L3L4
1.2

The case p=1: summing the two-term triangle inequality termwise and using monotonicity and additivity gives k<nak+bkk<n(ak+bk)=k<nak+k<nbk, and since x1/1=x this is exactly the assertion at p=1.

L2L3L4
1.3

The case S=0: the left-hand side is 01/p=0, which is at most the nonnegative right-hand side.

L2L3
2.1

Assume from now on p>1 and S>0, and put q:=p/(p1), a rational with q>1 conjugate to p, so that (p1)q=p and 11q=1p.

step 1.1step 1.2step 1.3L5
3.1

Splitting each term: for u0 one has up=u1+(p1)=uup1, valid for u>0 by the addition law and for u=0 because both sides are 0; applying this with u=ak+bk and then the triangle inequality, multiplied by the nonnegative factor ck=ak+bkp1, gives ak+bkp(ak+bk)ck=akck+bkck for every k<n.

step 2.1L3L4L6
3.2

The auxiliary list has q-th power sum S: ckq=(ak+bkp1)q=ak+bk(p1)q=ak+bkp for ak+bk>0 by the iterated-power law, and both sides are 0 when ak+bk=0; hence k<nckq=S.

step 2.1L3L4
4.1

Summing the termwise bound: Sk<nakck+k<nbkck.

step 3.1L2
4.2

Applying Hölder to the pairs (ak,ck) and to (bk,ck), and using akck=akck since ck0: k<nakckUS1/q and k<nbkckVS1/q.

step 3.2step 2.1L1L4
5.1

Combining, S(U+V)S1/q.

step 4.1step 4.2L6
6.1

Dividing by S1/q>0, which is legitimate because S>0, and computing S(S1/q)1=S1S1/q=S11/q=S1/p, we obtain S1/pU+V; together with the case p=1 and the case S=0 this proves the inequality for every rational p1.

step 5.1step 2.1step 1.2step 1.3L3L5L6
RemarkRemark: AI-adaptedProof: Not applicableverified 2026-08-04 (gpt-5.6-sol-codex-subscription)Open item page →

Why real exponents are deferred on the rational-powers page

What this page has built is ar for a positive real base a and a rational exponent r (Rational powers ar of a positive base), together with its algebra (Laws of rational exponents) and its order behaviour: strictly increasing in r for a>1, constant for a=1, strictly decreasing for 0<a<1, and strictly increasing in a for a fixed positive exponent (Monotonicity of rar and of aar). Nothing here is a limit, a series or a continuous function. Every value is produced by finitely many field operations once the relevant root is available, and the only nonalgebraic ingredient anywhere on the page is the least-upper-bound property (Complete ordered field (least-upper-bound property)). It enters exactly one proof on the page directly, the existence of n-th roots (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a); everything else here that needs a root cites a theorem rather than the property itself, and those theorems are Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a and, for the root form of Cauchy-Schwarz (The Cauchy-Schwarz inequality for finite sums), the already published Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0}. In each case completeness is spent on producing a root and on nothing else.

The obvious next step, and how far it gets. For a>1 and a real x, put

Ea(x):=sup{ar:rQ,  rx}.

This supremum exists. The set is nonempty because there is a rational below x, and it is bounded above because there is a rational R>x, whence araR for every rational rx by monotonicity in the exponent; both rationals are supplied by the density of Q in R (ℚ is dense in every Archimedean ordered field, Every complete ordered field is Archimedean). The definition is also consistent with what we already have: for a rational x the set has greatest element ax, and a set with a greatest element has that element as its supremum (The supremum is attained exactly when a maximum exists), so Ea(x)=ax. For 0<a<1 one sets Ea(x):=1/E1/a(x), and E1(x):=1. So the object exists, it is the right object, and it is monotone.

Where it stops. Proving the law Ea(x+y)=Ea(x)Ea(y) from this definition is not an algebraic manipulation. One has to compare a supremum over rationals rx+y with the products asat for sx, ty, and the two families are not the same: every s+t is one of the r, but a given rx+y need only be approximated by such sums. Closing that gap is an approximation argument, and an approximation argument needs a notion of limit and an estimate that controls aras in terms of rs. The library does have a notion of convergent sequence of reals, introduced in the construction of R via Cauchy sequences (Limits and Cauchy sequences of reals), but no continuity, no uniform continuity, no series and no derivative is available at this point in its reading order, and each of those is exactly what the standard proofs of the power laws for real exponents use. Writing such a proof here would either import machinery that does not exist yet or quietly assume it, and the second is the failure mode this library is built to avoid.

The route the library will actually take. General powers will be defined not by the supremum above but through the exponential function and the logarithm, via ax=exp(xloga) for a>0. That route is developed much later, after limits, continuity, series and differentiation are in place; the exponential is built as a power series or as the solution of a differential equation, the logarithm as its inverse, and the power laws for real exponents then fall out of the functional equation exp(u+v)=exp(u)exp(v) instead of being fought for one at a time. The supremum definition is then recovered as a theorem rather than taken as a definition. That later development is now published: Real powers for positive bases, with the zero-base positive-exponent convention defines ax:=exp(xloga) for a>0 and real x, and The exponent, product, quotient, and iterated-power laws for positive real bases and real exponents proves the power laws for those exponents.

Practical consequence for this page. Everywhere an exponent appears in a statement on this page it is an integer or a rational, and where that looks like a restriction it is a real one. The weights in the weighted AM-GM inequality are rational for this reason, and the conjugate exponent q=p/(p1) in Hölder and Minkowski is rational precisely because p is. Those statements are the classical rational-exponent forms, restricted to the exponents available at this page's position in the reading order; the later real-power page supplies the general versions.

5 · Examples, counterexamples and false statements

False statementConstruction: AI-adaptedVerification: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

FALSE: every real number has a real square root

Statement

False claim: every real number has a real square root, that is, for every xR there exists yR with y2=x.

The true statement is Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0}, which produces a square root only for x0, and its generalisation Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a, which produces an n-th root only for x0. The nonnegativity hypothesis in both is load bearing, not decoration.

Facts & Assumptions

Given: The complete ordered field R (Complete ordered field (least-upper-bound property), Ordered field), with integer powers as in Integer powers am.

[A1]

Every square is nonnegative: y2>0 for y0 (Squares of nonzero elements are positive, which states this and only this), and 02=00=0 because a product with a zero factor vanishes (Multiplication by zero: 0a=0); so y20 for every yR.

[A2]

1>0, hence 1<0; and by trichotomy no element satisfies both z0 and z<0 (The multiplicative identity is positive, Ordered field).

[A3]

Refutation

technique · contradiction
1.1

Assume, for contradiction, that every real has a real square root; applying this to 1R produces yR with y2=1.

assume-contragiven
2.1

By [A1] the element y2 is nonnegative, so 1=y20; but 1<0 by [A2], and no element is both 0 and <0.

step 1.1A1A2
3.1

The obstruction is exactly the order, and it applies in every ordered field, not only in R: completeness is never used, so no ordered field contains a square root of a negative element, and adjoining one, as happens in C, necessarily destroys the order.

step 2.1A1A2
4.1

The assumption of step 1.1 therefore fails: there is no real y with y2=1, so the claim that every real has a real square root is false, and the correct statements are [A3] with its hypothesis a0 kept.

step 2.1step 3.1step 1.1A3discharge-contradiction

Remarks

False statementConstruction: AI-adaptedVerification: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)verified 2026-07-26 (claude-opus-5)Open item page →

FALSE: am/n:=(a1/n)m extends to negative bases

Statement

False claim: the definition am/n:=(a1/n)m of Rational powers ar of a positive base extends to negative bases, that is, the same formula assigns to every a<0 and every rQ a real number ar, depending only on a and on the rational r.

This is the claim that Rational powers ar of a positive base rules out by insisting on a>0, and this item is the reason for that restriction.

Facts & Assumptions

Given: The base a=8 and the rational r=1/3; the formula under test is am/n=(a1/n)m, in which a1/n has to denote a real number whose n-th power is a (Rational powers ar of a positive base, Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a).

[A1]

Numerals denote canonical naturals. For a natural k the symbol k inside R means ι(k)=k1R, where ι is the canonical order-preserving field embedding; ι(k)>0 for k1, and ι preserves products (Canonical naturals are positive and strictly increasing, The unique embedding of ℚ into an ordered field). So 8>0, and therefore 8<0, since x>0 means xP and 0(x)=xP says x<0 (Ordered field; none of the items just named states this passage from a positive element to its negative). Also 23=ι(2)ι(2)ι(2)=ι(8)=8 (Integer powers am). This is where the numerals of this item enter R; the order on Q (Order on the rationals) is not what is being used when we write 8<0 in R.

[A2]

The same rational has many representatives: 1/3=2/6 in Q, since 16=32 (The rationals as equivalence classes of pairs of integers). For a formula in m and n to define a function of r, all representatives must give the same value, which for positive bases is Rational powers do not depend on the representative.

[A3]

No real has sixth power 8: for every xR, x6=(x3)2 (Laws of integer exponents, claim 1, Integer powers am), and a square is nonnegative because a nonzero one is positive (Squares of nonzero elements are positive) while 02=00=0 (Multiplication by zero: 0a=0); so x60, whereas 8<0 in R by [A1].

[A4]

Exactly one real has cube 8, namely 2: if x3=8<0 then x<0, since x0 would give x30; and then y:=x>0 satisfies y3=x3=8, so y=81/3=2 by uniqueness of the nonnegative cube root, whence x=2 (Existence and uniqueness of n-th roots: a unique a1/n0 with (a1/n)n=a, Monotonicity of xxn and of nan, Sign rules for products and monotonicity of multiplication, Sign rules for products: (a)b=(ab) and (a)(b)=ab).

Refutation

technique · contradiction
1.1

Assume, for contradiction, that the formula does define ar for negative a and every rational r, depending only on a and r; then in particular (8)1/3 is a real number, and the value obtained from any representative m/n of the rational 1/3 is that same number.

assume-contragivenA2
2.1

Read through the representative 1/3: the formula gives (8)1/3=((8)1/3)1, where (8)1/3 is a real cube root of 8, and there is exactly one such real, namely 2; so the value is 2.

step 1.1A1A4
2.2

Read through the representative 2/6: the formula gives (8)2/6=((8)1/6)2, and (8)1/6 must be a real sixth root of 8, of which there is none.

step 1.1A1A3
3.1

The two readings are incompatible: by the assumption the rational 1/3=2/6 has a single value, which step 2.1 computes to be 2, while step 2.2 shows that the very expression the formula prescribes for the representative 2/6 names nothing at all in R.

step 1.1step 2.1step 2.2A2
4.1

The assumption therefore fails, and the failure is not an artefact of the chosen numbers: every rational r has representatives with even denominator, and a negative base has no real root of even order by the argument of [A3], so for a negative base the formula depends on the representative and Rational powers do not depend on the representative genuinely breaks down; this is exactly why Rational powers ar of a positive base requires a>0.

step 3.1step 1.1A2A3discharge-contradiction

Remarks

  • Precisely what fails. For a negative base the formula does not produce two different numbers; it produces a number from some representatives and nothing at all from others. That is still a failure of well-definedness: a definition of ar must depend only on the rational r, and this one depends on how r is written.
  • The odd-denominator repair, and why it is not adopted. If one restricts to rationals admitting a representative m/n with n odd, and always uses such a representative, the formula is consistent, because odd roots of negatives exist and are unique (FALSE: every real number has a real square root records this). What one gets is a partial operation, defined on the proper subset of Q of rationals with odd denominator in lowest terms, not on Q. The library does not adopt it: it is not the operation of Rational powers ar of a positive base, its exponents form only a proper subring of Q (every rational whose lowest-terms denominator is even is missing, 1/2 among them, so the square root that Square roots exist: a unique a0 with (a)2=a; the positives are {x2:x0} supplies for nonnegative bases has no counterpart here), and every later use on this page, from Weighted AM-GM inequality with rational weights to Minkowski's inequality for finite sums (rational exponent), needs arbitrary rational exponents on a base that is nonnegative anyway.
  • The restriction to a>0 is therefore not squeamishness about signs. It is the exact condition under which a1/n exists for every n1, which is what makes the value independent of the representative.

Sources