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.

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

Finite Counting, Factorials and Binomial Coefficients: Examples and Counterexamples

1 · Prerequisites

2 · Summary

3 · Logical flowchart

4 · Definitions, theorems and proofs

None yet.

5 · Examples, counterexamples and false statements

ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passverified 2026-08-02 (claude-opus-5)Open item page →

Pascal's triangle computed to row 66, with Pascal's rule checked at every interior entry

Example

The array whose nn-th row is (n0),(n1),,(nn)\binom{n}{0}, \binom{n}{1}, \dots, \binom{n}{n} is Pascal's triangle. Rows 00 to 66 are

111121133114641151010511615201561\begin{array}{c} 1 \\ 1 \quad 1 \\ 1 \quad 2 \quad 1 \\ 1 \quad 3 \quad 3 \quad 1 \\ 1 \quad 4 \quad 6 \quad 4 \quad 1 \\ 1 \quad 5 \quad 10 \quad 10 \quad 5 \quad 1 \\ 1 \quad 6 \quad 15 \quad 20 \quad 15 \quad 6 \quad 1 \end{array}

1111211331146413+3=6¡42¢=¡31¢+¡32¢

Every interior entry is produced below by Pascal's rule (n+1k+1)=(nk)+(nk+1)\binom{n+1}{k+1} = \binom{n}{k} + \binom{n}{k+1}, and the hockey-stick identity in(ik)=(n+1k+1)\sum_{i \le n}\binom{i}{k} = \binom{n+1}{k+1} from the row above, the boundary entries being the values (n0)=(nn)=1\binom{n}{0} = \binom{n}{n} = 1; four interior entries are cross-checked against the closed formula of (nk)k!(nk)!=n!\binom{n}{k}\,k!\,(n-k)! = n! for knk \le n; hence (nk)k!=nk\binom{n}{k}\,k! = n^{\underline{k}}, the quotient n!/(k!(nk)!)n!/(k!(n-k)!) is a natural number, and (nk)=(nnk)\binom{n}{k} = \binom{n}{n-k}. The row sums and the alternating row sums are then checked against k<n+1(nk)=2n\sum_{k<n+1}\binom{n}{k} = 2^{n}, and k<n+1(1)kι ⁣(nk)=0\sum_{k<n+1}(-1)^{k}\iota\!\binom{n}{k} = 0 for n1n \ge 1, including the row where the alternating sum is not zero.

Facts & Assumptions

Given: The binomial coefficients of The set [A]k[A]^{k} of kk-element subsets and the binomial coefficient (nk):=[n]k\binom{n}{k} := \lvert [n]^{k}\rvert and the factorials 0!=10! = 1, 1!=11! = 1, 2!=22! = 2, 3!=63! = 6, 4!=244! = 24, 5!=1205! = 120, 6!=7206! = 720 of The factorial n!n! and the falling factorial nkn^{\underline{k}}, defined by recursion in N\mathbb{N}.

[L1]

Boundary values: (n0)=(nn)=1\binom{n}{0} = \binom{n}{n} = 1 for every nn, and (nk)=0\binom{n}{k} = 0 for k>nk > n (The set [A]k[A]^{k} of kk-element subsets and the binomial coefficient (nk):=[n]k\binom{n}{k} := \lvert [n]^{k}\rvert).

[L3]

The closed formula: (nk)k!(nk)!=n!\binom{n}{k}\,k!\,(n-k)! = n! for knk \le n, so (nk)\binom{n}{k} is the natural number whose canonical natural is ι(n!)/(ι(k!)ι((nk)!))\iota(n!)/(\iota(k!)\iota((n-k)!)) ((nk)k!(nk)!=n!\binom{n}{k}\,k!\,(n-k)! = n! for knk \le n; hence (nk)k!=nk\binom{n}{k}\,k! = n^{\underline{k}}, the quotient n!/(k!(nk)!)n!/(k!(n-k)!) is a natural number, and (nk)=(nnk)\binom{n}{k} = \binom{n}{n-k}, The canonical natural ι(n)=n1F\iota(n) = n \cdot 1_F of a field).

Verification

technique · direct
1.1

Row 00 is the single entry (00)=1\binom{0}{0} = 1, and row 11 is (10)=1\binom{1}{0} = 1, (11)=1\binom{1}{1} = 1, both by [L1]. Every row begins and ends with 11 for the same reason.

givenL1
2.1

The interior entries, each by [L2] from the row above. Row 22: (21)=(10)+(11)=2\binom{2}{1} = \binom{1}{0}+\binom{1}{1} = 2. Row 33: (31)=(20)+(21)=3\binom{3}{1} = \binom{2}{0}+\binom{2}{1} = 3 and (32)=(21)+(22)=3\binom{3}{2} = \binom{2}{1}+\binom{2}{2} = 3. Row 44: 44, (42)=3+3=6\binom{4}{2} = 3+3 = 6, 44. Row 55: 55, (52)=4+6=10\binom{5}{2} = 4+6 = 10, (53)=6+4=10\binom{5}{3} = 6+4 = 10, 55. Row 66: 66, (62)=5+10=15\binom{6}{2} = 5+10 = 15, (63)=10+10=20\binom{6}{3} = 10+10 = 20, (64)=10+5=15\binom{6}{4} = 10+5 = 15, 66. This is the array displayed above.

step 1.1L1L2
3.1

The closed formula agrees, checked on four interior entries by [L3]: (42)2!2!=622=24=4!\binom{4}{2}\cdot 2!\cdot 2! = 6\cdot 2\cdot 2 = 24 = 4!; (52)2!3!=1026=120=5!\binom{5}{2}\cdot 2!\cdot 3! = 10\cdot 2\cdot 6 = 120 = 5!; (62)2!4!=15224=720=6!\binom{6}{2}\cdot 2!\cdot 4! = 15\cdot 2\cdot 24 = 720 = 6!; (63)3!3!=2066=720=6!\binom{6}{3}\cdot 3!\cdot 3! = 20\cdot 6\cdot 6 = 720 = 6!. So the two routes give the same numbers.

step 2.1L3
3.2

The row sums are 11, 1+1=21+1 = 2, 1+2+1=41+2+1 = 4, 1+3+3+1=81+3+3+1 = 8, 1+4+6+4+1=161+4+6+4+1 = 16, 1+5+10+10+5+1=321+5+10+10+5+1 = 32 and 1+6+15+20+15+6+1=641+6+15+20+15+6+1 = 64, that is 20,21,,262^{0}, 2^{1}, \dots, 2^{6}, as [L4] requires.

step 2.1L4
3.3

The alternating row sums are 11 for row 00, and 11=01-1 = 0, 12+1=01-2+1 = 0, 13+31=01-3+3-1 = 0, 14+64+1=01-4+6-4+1 = 0, 15+1010+51=01-5+10-10+5-1 = 0, 16+1520+156+1=01-6+15-20+15-6+1 = 0 for rows 11 to 66. Row 00 is the exception, and it is exactly the row where the hypothesis n1n \ge 1 of [L4] fails: the sum there has the single term (00)=1\binom{0}{0} = 1.

step 2.1L1L4
4.1

Rows 00 to 66 are as displayed, each interior entry agreeing with [L2] and the four checked in step 3.1 agreeing with [L3], the row sums with the powers of 22, and the alternating sums with 00 from row 11 onwards and with 11 at row 00.

step 3.1step 3.2step 3.3

Remarks

ExampleConstruction: AI-generatedVerification: AI-generatedprecheck passjudge pass (z-ai/glm-5.2)audited 2026-07-29Open item page →

Choosing a committee: (103)=120\binom{10}{3} = 120, and the ordered count 103=72010^{\underline{3}} = 720

Example

Let PP be a set with P=10\lvert P\rvert = 10. Two different sets are counted, and naming which is which is the whole discipline of the example.

  • The unordered selections of three members of PP are the elements of [P]3[P]^{3}, and there are (103)=120\binom{10}{3} = 120 of them.
  • The ordered selections of three distinct members, that is the injections 3P3 \to P, number 103=72010^{\underline{3}} = 720.

The ratio of the two counts is 3!=63! = 6, which is clause 1 of (nk)k!(nk)!=n!\binom{n}{k}\,k!\,(n-k)! = n! for knk \le n; hence (nk)k!=nk\binom{n}{k}\,k! = n^{\underline{k}}, the quotient n!/(k!(nk)!)n!/(k!(n-k)!) is a natural number, and (nk)=(nnk)\binom{n}{k} = \binom{n}{n-k} seen concretely: each 33-element subset arises from exactly 3!3! ordered selections.

Facts & Assumptions

Given: A set PP with P=10\lvert P\rvert = 10, and the factorials 3!=63! = 6, 7!=50407! = 5040, 10!=362880010! = 3628800 (The factorial n!n! and the falling factorial nkn^{\underline{k}}, defined by recursion in N\mathbb{N}).

[L3]

The number of injections of a kk-element set into an nn-element set is nkn^{\underline{k}} (The number of injections from a kk-element set into an nn-element set is nkn^{\underline{k}}).

[L4]

n0=1n^{\underline{0}} = 1 and nσ(k)=nk(nk)n^{\underline{\sigma(k)}} = n^{\underline{k}}(n-k) (The factorial n!n! and the falling factorial nkn^{\underline{k}}, defined by recursion in N\mathbb{N}).

Verification

technique · direct
1.1

The two sets are [P]3[P]^{3}, whose elements are the 33-element subsets of PP, and Inj(3,P)\operatorname{Inj}(3,P), whose elements are the injective functions from 3={0,1,2}3 = \{0,1,2\} into PP. They are different sets, and each count below is stated for the set it counts.

givenL1L3
2.1

The unordered count. By [L2] with n=10n = 10, k=3k = 3, (103)3!7!=10!\binom{10}{3}\cdot 3!\cdot 7! = 10!, that is (103)65040=3628800\binom{10}{3}\cdot 6 \cdot 5040 = 3628800, so (103)30240=3628800\binom{10}{3}\cdot 30240 = 3628800 and (103)=120\binom{10}{3} = 120. By [L1] the set [P]3[P]^{3} has 120120 elements.

step 1.1L1L2
2.2

The ordered count. By [L4], 101=110=1010^{\underline{1}} = 1 \cdot 10 = 10, 102=109=9010^{\underline{2}} = 10\cdot 9 = 90 and 103=908=72010^{\underline{3}} = 90 \cdot 8 = 720. By [L3] the set Inj(3,P)\operatorname{Inj}(3,P) has 720720 elements.

step 1.1L3L4
3.1

The two counts are related as clause 1 of [L2] says: (103)3!=1206=720=103\binom{10}{3}\cdot 3! = 120 \cdot 6 = 720 = 10^{\underline{3}}. Each 33-element subset of PP is the image of exactly 3!=63! = 6 injections 3P3 \to P, so passing from the ordered to the unordered count divides by 66.

step 2.1step 2.2L2

Remarks

  • The standard error is to count one set and name the other. "How many ways can a committee of three be chosen from ten people" is the count of [P]3[P]^{3} only if the committee is unordered; if the three roles are distinguished it is the count of Inj(3,P)\operatorname{Inj}(3,P). The two differ by a factor of 66, and no computation can decide which was meant.
ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passverified 2026-08-02 (claude-opus-5)Open item page →

Arrangements of a word with repeated letters, counted by the multinomial coefficient

Example

Take the eleven-letter word MISSISSIPPI\mathrm{MISSISSIPPI}, over the four-letter alphabet {M,I,S,P}\{\mathrm{M},\mathrm{I},\mathrm{S},\mathrm{P}\}, in which M\mathrm{M} occurs once, I\mathrm{I} four times, S\mathrm{S} four times and P\mathrm{P} twice. The number of distinct arrangements of its letters is

(111,4,4,2)=11!1!4!4!2!=399168001152=34650.\binom{11}{1,4,4,2} = \frac{11!}{1!\,4!\,4!\,2!} = \frac{39916800}{1152} = 34650 .

The modelling step is the mathematics. An arrangement is a function from the set of eleven positions to the four-letter alphabet whose fibre over each letter has the prescribed size; that is literally an element of B(A,k)\mathcal{B}(A,k) in The multinomial coefficient (nk0,,km1)\binom{n}{k_0,\dots,k_{m-1}} as the number of ordered partitions of an nn-set into blocks of prescribed sizes, with AA the set of positions, m=4m = 4 and k=(1,4,4,2)k = (1,4,4,2).

Facts & Assumptions

Given: The position set AA with A=11\lvert A\rvert = 11, the alphabet identified with 4={0,1,2,3}4 = \{0,1,2,3\} by 0M0 \mapsto \mathrm{M}, 1I1 \mapsto \mathrm{I}, 2S2 \mapsto \mathrm{S}, 3P3 \mapsto \mathrm{P}, and the tuple k=(1,4,4,2)k = (1,4,4,2); the factorials 1!=11! = 1, 2!=22! = 2, 4!=244! = 24 and 11!=3991680011! = 39916800 (The factorial n!n! and the falling factorial nkn^{\underline{k}}, defined by recursion in N\mathbb{N}).

[L1]

B(A,k)\mathcal{B}(A,k) is the set of c:Amc : A \to m with c1[{i}]=ki\lvert c^{-1}[\{i\}]\rvert = k_i for every i<mi<m; it is nonempty only if i<mki=A\sum_{i<m}k_i = \lvert A\rvert, and its cardinality is (Ak)\binom{\lvert A\rvert}{k} (The multinomial coefficient (nk0,,km1)\binom{n}{k_0,\dots,k_{m-1}} as the number of ordered partitions of an nn-set into blocks of prescribed sizes, The cardinality A\lvert A\rvert of a finite set).

Verification

technique · direct
1.1

The modelling. An arrangement of the letters of MISSISSIPPI\mathrm{MISSISSIPPI} is a function cc assigning to each of the eleven positions one of the four letters, subject to the letter multiplicities; that is, c1[{0}]=1\lvert c^{-1}[\{0\}]\rvert = 1, c1[{1}]=4\lvert c^{-1}[\{1\}]\rvert = 4, c1[{2}]=4\lvert c^{-1}[\{2\}]\rvert = 4 and c1[{3}]=2\lvert c^{-1}[\{3\}]\rvert = 2. So the set of arrangements is exactly B(A,k)\mathcal{B}(A,k) with k=(1,4,4,2)k = (1,4,4,2).

givenL1
2.1

The hypothesis is satisfied, and it must be checked before the coefficient is written down: i<4ki=1+4+4+2=11=A\sum_{i<4}k_i = 1+4+4+2 = 11 = \lvert A\rvert, so kW(11,4)k \in \mathcal{W}(11,4) and (111,4,4,2)\binom{11}{1,4,4,2} is defined.

step 1.1L1L3
3.1

The value. By [L2], (111,4,4,2)(1!4!4!2!)=11!\binom{11}{1,4,4,2}\cdot(1!\cdot 4!\cdot 4!\cdot 2!) = 11!, that is (111,4,4,2)(124242)=39916800\binom{11}{1,4,4,2}\cdot(1\cdot 24\cdot 24\cdot 2) = 39916800; the product of factorials is 11521152, and 115234650=399168001152 \cdot 34650 = 39916800, so cancellation by the nonzero factor 11521152 gives (111,4,4,2)=34650\binom{11}{1,4,4,2} = 34650.

step 2.1L2L3
4.1

Hence the word has exactly 3465034650 distinct arrangements, this being B(A,k)\lvert\mathcal{B}(A,k)\rvert by [L1].

step 1.1step 3.1L1

Remarks

ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passjudge pass (z-ai/glm-5.2)audited 2026-07-29Open item page →

Five-card hands from a 5252-card deck: (525)=2598960\binom{52}{5} = 2598960, and the count of hands with all cards of one suit

Example

Model a deck as the set D:=13×4D := 13 \times 4, a rank paired with a suit, so D=52\lvert D\rvert = 52 by The product rule: A×B=AB\lvert A \times B\rvert = \lvert A\rvert\,\lvert B\rvert, and i<mAi=i<mAi\big\lvert\prod_{i<m} A_i\big\rvert = \prod_{i<m}\lvert A_i\rvert. A hand is a five-element subset of DD, that is an element of [D]5[D]^{5}. Then

[D]5=(525)=2598960,\big\lvert [D]^{5}\big\rvert = \binom{52}{5} = 2598960 ,

and the number of hands all of whose cards share a suit is

4(135)=41287=5148.4\cdot\binom{13}{5} = 4 \cdot 1287 = 5148 .

No probability is claimed anywhere. There is no probability space in this library at this point in the reading order; these are counts of sets, and nothing below divides one by another or calls a count a chance.

Facts & Assumptions

Given: The deck D=13×4D = 13 \times 4; for s<4s < 4 the suit Ds:=13×{s}D_s := 13 \times \{s\}; and the falling factorials computed from n0=1n^{\underline{0}} = 1 and nσ(k)=nk(nk)n^{\underline{\sigma(k)}} = n^{\underline{k}}(n-k) (The factorial n!n! and the falling factorial nkn^{\underline{k}}, defined by recursion in N\mathbb{N}).

[L4]

Cancellation by a nonzero natural (Cancellation for multiplication by a nonzero factor).

Verification

technique · direct
1.1

The deck has D=134=134=52\lvert D\rvert = \lvert 13\rvert\cdot\lvert 4\rvert = 13 \cdot 4 = 52 by [L3], and a hand is by definition an element of [D]5[D]^{5}, so the number of hands is (525)\binom{52}{5} by [L1].

givenL1L3
2.1

The total. By [L2], (525)5!=525=5251504948\binom{52}{5}\cdot 5! = 52^{\underline{5}} = 52\cdot 51\cdot 50\cdot 49\cdot 48. Computing the falling factorial step by step: 5251=265252\cdot 51 = 2652, 265250=1326002652\cdot 50 = 132600, 13260049=6497400132600\cdot 49 = 6497400, 649740048=3118752006497400\cdot 48 = 311875200. Since 5!=1205! = 120 and 1202598960=311875200120\cdot 2598960 = 311875200, cancellation by 120120 gives (525)=2598960\binom{52}{5} = 2598960.

step 1.1L2L4
2.2

The single-suit hands. Let FF be the set of hands all of whose cards lie in one suit, and for s<4s < 4 let FsF_s be the set of hands contained in DsD_s. The FsF_s are pairwise disjoint, since a hand has five cards and cannot lie in two different suits at once, and their union is FF. Each Ds=13×{s}D_s = 13\times\{s\} is in bijection with 1313 under the first projection, so Fs=[Ds]5=(135)\lvert F_s\rvert = \lvert [D_s]^{5}\rvert = \binom{13}{5} by [L1]. By [L2], (135)120=135=131211109=154440\binom{13}{5}\cdot 120 = 13^{\underline{5}} = 13\cdot 12\cdot 11\cdot 10\cdot 9 = 154440, and 1201287=154440120\cdot 1287 = 154440, so (135)=1287\binom{13}{5} = 1287. Finally [L3] gives F=s4Fs=41287=5148\lvert F\rvert = \sum_{s \in 4}\lvert F_s\rvert = 4\cdot 1287 = 5148.

step 1.1L1L2L3L4
3.1

So there are 25989602598960 hands in all, of which 51485148 have all five cards of one suit. Both numbers are cardinalities of explicitly described sets, and neither is a probability.

step 2.1step 2.2

Remarks

  • The sum rule is doing real work in step 2.2, and its hypothesis is checked rather than assumed: two different suits share no card, so the four blocks are disjoint. Without that, adding the four counts would overcount, which is the failure this page's counterexample exhibits.

  • What is deliberately absent. Turning 5148/25989605148/2598960 into a probability needs a probability space, which the library does not have here. The temptation to write one down is exactly the place a worked example smuggles in machinery it has not got.

ExampleConstruction: AI-generatedVerification: AI-generatedprecheck passjudge pass (z-ai/glm-5.2)audited 2026-07-29Open item page →

The 1515 weak compositions of 44 into 33 parts, listed and matched against stars and bars

Example

Take n=4n = 4 and m=3m = 3. The weak compositions of 44 into 33 parts (Compositions and weak compositions of a natural number into a fixed number of parts) are the triples (k0,k1,k2)(k_0,k_1,k_2) of naturals with k0+k1+k2=4k_0+k_1+k_2 = 4. Listed in decreasing lexicographic order they are

(4,0,0)(3,1,0)(3,0,1)(2,2,0)(2,1,1)(2,0,2)(1,3,0)(1,2,1)(1,1,2)(1,0,3)(0,4,0)(0,3,1)(0,2,2)(0,1,3)(0,0,4)\begin{array}{lllll} (4,0,0) & (3,1,0) & (3,0,1) & (2,2,0) & (2,1,1) \\ (2,0,2) & (1,3,0) & (1,2,1) & (1,1,2) & (1,0,3) \\ (0,4,0) & (0,3,1) & (0,2,2) & (0,1,3) & (0,0,4) \end{array}

fifteen in all, matching (n+m1m1)=(62)=15\binom{n+m-1}{m-1} = \binom{6}{2} = 15 from For m1m \ge 1 the number of weak compositions of nn into mm parts is (n+m1m1)\binom{n+m-1}{m-1}, and the number of compositions is (n1m1)\binom{n-1}{m-1} for n1n \ge 1. Of these, three have every part nonzero, namely (2,1,1)(2,1,1), (1,2,1)(1,2,1) and (1,1,2)(1,1,2), matching (n1m1)=(32)=3\binom{n-1}{m-1} = \binom{3}{2} = 3.

Facts & Assumptions

Given: n=4n = 4, m=3m = 3, so M:=m1=2M := m-1 = 2 and n+M=6n+M = 6; the sets W(4,3)\mathcal{W}(4,3) and C(4,3)\mathcal{C}(4,3) of Compositions and weak compositions of a natural number into a fixed number of parts; and 2!=22! = 2, 4!=244! = 24, 6!=7206! = 720, 3!=63! = 6 (The factorial n!n! and the falling factorial nkn^{\underline{k}}, defined by recursion in N\mathbb{N}).

[L1]

For m1m \ge 1, W(n,m)=(n+m1m1)\lvert\mathcal{W}(n,m)\rvert = \binom{n+m-1}{m-1}, and the map kS(k):={(j<σ(i)kj)+i:i<M}k \mapsto S(k) := \{\,(\sum_{j<\sigma(i)}k_j) + i : i < M\,\} is a bijection onto the set of MM-element subsets of n+Mn+M (For m1m \ge 1 the number of weak compositions of nn into mm parts is (n+m1m1)\binom{n+m-1}{m-1}, and the number of compositions is (n1m1)\binom{n-1}{m-1} for n1n \ge 1).

[L2]

Verification

technique · direct
1.1

The list above is exhaustive and has no repetitions: it is organised by the value of k0k_0, which runs over 4,3,2,1,04, 3, 2, 1, 0, and for each k0k_0 the pair (k1,k2)(k_1,k_2) runs over all solutions of k1+k2=4k0k_1+k_2 = 4-k_0, of which there are 5k05-k_0, namely (4k0,0),(3k0,1),,(0,4k0)(4-k_0,0), (3-k_0,1), \dots, (0,4-k_0). The block sizes are therefore 1,2,3,4,51, 2, 3, 4, 5, and 1+2+3+4+5=151+2+3+4+5 = 15.

givenL4
2.1

The formula agrees. By [L3] with n=6n = 6, k=2k = 2: (62)2!4!=6!\binom{6}{2}\cdot 2!\cdot 4! = 6!, that is (62)224=720\binom{6}{2}\cdot 2 \cdot 24 = 720, so (62)48=720\binom{6}{2}\cdot 48 = 720 and (62)=15\binom{6}{2} = 15. By [L1] with n=4n = 4, m=3m = 3 this is W(4,3)\lvert\mathcal{W}(4,3)\rvert, matching step 1.1.

step 1.1L1L3
2.2

The bijection of [L1] made concrete. Here M=2M = 2, so S(k)={k0, k0+k1+1}S(k) = \{k_0,\ k_0+k_1+1\}, a two-element subset of 6={0,1,2,3,4,5}6 = \{0,1,2,3,4,5\}. For (4,0,0)(4,0,0): S={4, 5}S = \{4,\ 5\}. For (2,1,1)(2,1,1): S={2, 4}S = \{2,\ 4\}. For (1,2,1)(1,2,1): S={1, 4}S = \{1,\ 4\}. For (0,0,4)(0,0,4): S={0, 1}S = \{0,\ 1\}. Each is indeed a 22-element subset of 66, and the four are distinct, as injectivity requires. Reading the picture backwards, the two elements of SS are the positions of the two bars in a row of four stars and two bars, and the parts are the lengths of the three runs of stars.

step 1.1L1
3.1

The compositions. A weak composition has all parts nonzero exactly when none of k0,k1,k2k_0,k_1,k_2 is 00, and inspection of the list leaves (2,1,1)(2,1,1), (1,2,1)(1,2,1) and (1,1,2)(1,1,2), three in all. By [L2] the predicted count is (4131)=(32)=3\binom{4-1}{3-1} = \binom{3}{2} = 3, which agrees. The bijection behind [L2] subtracts 11 from every part, sending these three to (1,0,0)(1,0,0), (0,1,0)(0,1,0) and (0,0,1)(0,0,1), the three weak compositions of 11 into 33 parts.

step 1.1step 2.1L2L4
4.1

So W(4,3)=15=(62)\lvert\mathcal{W}(4,3)\rvert = 15 = \binom{6}{2} and C(4,3)=3=(32)\lvert\mathcal{C}(4,3)\rvert = 3 = \binom{3}{2}, both by direct enumeration and by the formulas.

step 2.1step 2.2step 3.1

Remarks

  • A stars-and-bars example that only checks the number is the weaker example. Step 2.2 exhibits the bijection on four of the fifteen tuples, so the reader sees which subset of 66 each composition corresponds to rather than being told that some correspondence exists.

  • The count 1+2+3+4+51+2+3+4+5 in step 1.1 is itself an instance of the theorem, at m=2m = 2: the number of weak compositions of jj into 22 parts is (j+11)=j+1\binom{j+1}{1} = j+1.

ExampleConstruction: AI-generatedVerification: AI-generatedprecheck passjudge pass (z-ai/glm-5.2)audited 2026-07-29Open item page →

All 88 functions 323 \to 2, the 00 injections 323 \to 2, and the 88 subsets of a 33-element set

Example

Every count here is small enough to list in full, so nothing is asserted by inspection. Take 3={0,1,2}3 = \{0,1,2\} and 2={0,1}2 = \{0,1\}.

  • There are 23=82^{3} = 8 functions 323 \to 2, and all eight are listed below as triples (f(0),f(1),f(2))(f(0),f(1),f(2)).
  • None of them is injective, and the predicted count is 23=210=02^{\underline{3}} = 2\cdot 1\cdot 0 = 0.
  • There are 23=82^{3} = 8 subsets of a three-element set, and grouping them by size gives 1+3+3+1=81+3+3+1 = 8.

Facts & Assumptions

Given: The sets 3={0,1,2}3 = \{0,1,2\} and 2={0,1}2 = \{0,1\}, and A:=3A := 3.

[L2]

The number of injections of a kk-element set into an nn-element set is nkn^{\underline{k}}, with n0=1n^{\underline{0}} = 1 and nσ(k)=nk(nk)n^{\underline{\sigma(k)}} = n^{\underline{k}}(n-k) (The number of injections from a kk-element set into an nn-element set is nkn^{\underline{k}}, The factorial n!n! and the falling factorial nkn^{\underline{k}}, defined by recursion in N\mathbb{N}).

[L3]

Pigeonhole: there is no injection σ(n)n\sigma(n) \to n, and none pqp \to q when q<pq < p (The pigeonhole principle on N\mathbb{N}, claims 1 and 2).

Verification

technique · direct
1.1

The eight functions 323 \to 2, written as the triples of their values: (0,0,0)(0,0,0), (0,0,1)(0,0,1), (0,1,0)(0,1,0), (0,1,1)(0,1,1), (1,0,0)(1,0,0), (1,0,1)(1,0,1), (1,1,0)(1,1,0), (1,1,1)(1,1,1). The list is exhaustive because a function is determined by its three values and each value is 00 or 11, and it has no repetitions. There are eight, and [L1] predicts 23=23=222=8\lvert 2\rvert^{\lvert 3\rvert} = 2^{3} = 2\cdot 2\cdot 2 = 8.

givenL1
2.1

None of the eight is injective: in every triple above two of the three entries are equal, so two distinct elements of 33 receive the same value. This agrees with [L2], which predicts 23=22(22)=220=02^{\underline{3}} = 2^{\underline{2}}\cdot(2-2) = 2^{\underline{2}}\cdot 0 = 0 injections, and with [L3], which forbids an injection 323 \to 2 outright since 2<32 < 3.

step 1.1L2L3
2.2

The eight subsets of A=3A = 3, grouped by cardinality: \varnothing; then {0}\{0\}, {1}\{1\}, {2}\{2\}; then {0,1}\{0,1\}, {0,2}\{0,2\}, {1,2}\{1,2\}; then {0,1,2}\{0,1,2\}. So [A]0=1\lvert [A]^{0}\rvert = 1, [A]1=3\lvert [A]^{1}\rvert = 3, [A]2=3\lvert [A]^{2}\rvert = 3, [A]3=1\lvert [A]^{3}\rvert = 1, that is (30)=1\binom{3}{0} = 1, (31)=3\binom{3}{1} = 3, (32)=3\binom{3}{2} = 3, (33)=1\binom{3}{3} = 1, which is row 33 of Pascal's triangle as [L5] gives it.

step 1.1L4L5
3.1

The two ways of counting P(A)\mathcal{P}(A) agree: directly, the list in step 2.2 has 1+3+3+1=81+3+3+1 = 8 entries; by [L4], P(A)=23=8\lvert\mathcal{P}(A)\rvert = 2^{3} = 8 and k<4(3k)=23\sum_{k<4}\binom{3}{k} = 2^{3}. This is clause 1 of [L4] in its smallest interesting case.

step 2.1step 2.2L4

Remarks

ExampleConstruction: AI-generatedVerification: AI-generatedprecheck passjudge pass (z-ai/glm-5.2)audited 2026-07-29Open item page →

Vandermonde's identity checked at m=4m = 4, n=3n = 3, k=3k = 3, both sides equal to 3535

Example

Take m=4m = 4, n=3n = 3 and k=3k = 3 in Vandermonde's identity (m+nk)=i<k+1(mi)(nki)\binom{m+n}{k} = \sum_{i<k+1}\binom{m}{i}\binom{n}{k-i}. The left-hand side is (73)=35\binom{7}{3} = 35, and the right-hand side is

(40)(33)+(41)(32)+(42)(31)+(43)(30)=1+12+18+4=35.\binom{4}{0}\binom{3}{3} + \binom{4}{1}\binom{3}{2} + \binom{4}{2}\binom{3}{1} + \binom{4}{3}\binom{3}{0} = 1 + 12 + 18 + 4 = 35 .

The same identity at k=5k = 5, still with m=4m = 4 and n=3n = 3, exercises the boundary convention: three of the six terms vanish because their coefficients are 00, and both sides come to 2121.

Facts & Assumptions

Given: M:=4×{0}M := 4\times\{0\} and N:=3×{1}N := 3\times\{1\}, disjoint with M=4\lvert M\rvert = 4, N=3\lvert N\rvert = 3 and MN=7\lvert M\cup N\rvert = 7; and the factorials 2!=22! = 2, 3!=63! = 6, 4!=244! = 24, 5!=1205! = 120, 7!=50407! = 5040 (The factorial n!n! and the falling factorial nkn^{\underline{k}}, defined by recursion in N\mathbb{N}).

Verification

technique · direct
1.1

The coefficients needed, all from [L2]. (73)3!4!=7!\binom{7}{3}\cdot 3!\cdot 4! = 7! gives (73)624=5040\binom{7}{3}\cdot 6\cdot 24 = 5040, so (73)144=5040\binom{7}{3}\cdot 144 = 5040 and (73)=35\binom{7}{3} = 35. Similarly (42)2!2!=4!\binom{4}{2}\cdot 2!\cdot 2! = 4! gives (42)=6\binom{4}{2} = 6; and (40)=(33)=(30)=1\binom{4}{0} = \binom{3}{3} = \binom{3}{0} = 1, (41)=4\binom{4}{1} = 4, (43)=(41)=4\binom{4}{3} = \binom{4}{1} = 4 by symmetry, (31)=(32)=3\binom{3}{1} = \binom{3}{2} = 3. Also (75)5!2!=7!\binom{7}{5}\cdot 5!\cdot 2! = 7! gives (75)240=5040\binom{7}{5}\cdot 240 = 5040, so (75)=21\binom{7}{5} = 21.

givenL2
2.1

The case k=3k = 3. The four terms of the sum, indexed by i<4i < 4, are (40)(33)=11=1\binom{4}{0}\binom{3}{3} = 1\cdot 1 = 1, (41)(32)=43=12\binom{4}{1}\binom{3}{2} = 4\cdot 3 = 12, (42)(31)=63=18\binom{4}{2}\binom{3}{1} = 6\cdot 3 = 18 and (43)(30)=41=4\binom{4}{3}\binom{3}{0} = 4\cdot 1 = 4; their sum is 1+12+18+4=351+12+18+4 = 35, equal to (73)\binom{7}{3}.

step 1.1L1L3
2.2

The case k=5k = 5, where the boundary convention does the work. The sum runs over i<6i < 6 and its terms are (40)(35)=0\binom{4}{0}\binom{3}{5} = 0, (41)(34)=0\binom{4}{1}\binom{3}{4} = 0, (42)(33)=6\binom{4}{2}\binom{3}{3} = 6, (43)(32)=12\binom{4}{3}\binom{3}{2} = 12, (44)(31)=3\binom{4}{4}\binom{3}{1} = 3 and (45)(30)=0\binom{4}{5}\binom{3}{0} = 0, the vanishing ones being those with 5i>35-i > 3 or i>4i > 4. The total is 6+12+3=21=(75)6+12+3 = 21 = \binom{7}{5}.

step 1.1L1L2L3
3.1

The partition behind one block. The term with i=2i = 2 in step 2.1 counts the sets S[MN]3S \in [M\cup N]^{3} with exactly two elements in MM; the bijection of [L1] sends such an SS to the pair (SM,SN)(S\cap M, S\cap N). For instance S={(0,0),(1,0),(0,1)}S = \{(0,0),(1,0),(0,1)\} goes to ({(0,0),(1,0)}, {(0,1)})[M]2×[N]1\big(\{(0,0),(1,0)\},\ \{(0,1)\}\big) \in [M]^{2}\times[N]^{1}, and there are (42)(31)=18\binom{4}{2}\binom{3}{1} = 18 such SS, which is the value computed there. So the identity is a count, not an algebraic accident.

step 1.1step 2.1L1
4.1

Both instances confirm [L1]: at k=3k = 3 both sides are 3535, at k=5k = 5 both sides are 2121, and in the second the terms whose blocks are empty contribute 00 exactly as the identity's lack of a range restriction requires.

step 2.1step 2.2step 3.1

Remarks

  • Why a case with vanishing terms is included. The identity is stated for all mm, nn, kk with no side condition, and that is only correct because out-of-range binomial coefficients are 00 rather than undefined. Checking a case where three terms vanish is checking exactly that clause.
CounterexampleConstruction: AI-generatedVerification: AI-generatedprecheck passverified 2026-08-03 (gpt-5.6-sol-codex-subscription)Open item page →

Two sets of the same finite cardinality between which the bijection is not unique

Statement refuted

Refuted claim: two equinumerous finite sets admit exactly one bijection between them.

The witness is A:=2={,{}}={0,1}A := 2 = \{\varnothing,\{\varnothing\}\} = \{0,1\} and B:=[2]1={{0},{1}}B := [2]^{1} = \{\{0\},\{1\}\}, the set of one-element subsets of 22. Both have cardinality 22, and there are exactly two bijections between them.

Facts & Assumptions

Given: A=2={0,1}A = 2 = \{0,1\} with 0=0 = \varnothing and 1={0}1 = \{0\} (The natural numbers N\mathbb{N} (von Neumann)), and B=[2]1B = [2]^{1}, the set of 11-element subsets of 22.

[L1]

n=n\lvert n\rvert = n for a natural nn, and A\lvert A\rvert is the unique natural equinumerous with AA (The cardinality A\lvert A\rvert of a finite set).

[L2]

[X]k=(Xk)\lvert [X]^{k}\rvert = \binom{\lvert X\rvert}{k} and (n1)=n\binom{n}{1} = n (The set [A]k[A]^{k} of kk-element subsets and the binomial coefficient (nk):=[n]k\binom{n}{k} := \lvert [n]^{k}\rvert).

[L5]

Claim 3 of The pigeonhole principle on N\mathbb{N}: a finite set is equinumerous with exactly one natural number.

Counterexample

technique · direct
1.1

The two sets and their cardinalities. A=2A = 2 has A=2\lvert A\rvert = 2 by [L1]. The elements of B=[2]1B = [2]^{1} are the one-element subsets of {0,1}\{0,1\}, namely {0}\{0\} and {1}\{1\}, so B=(21)=2\lvert B\rvert = \binom{2}{1} = 2 by [L2]. Hence A=B\lvert A\rvert = \lvert B\rvert.

givenL1L2
2.1

Two distinct bijections. Let f:ABf : A \to B be f(0)={0}f(0) = \{0\}, f(1)={1}f(1) = \{1\}, and let g:ABg : A \to B be g(0)={1}g(0) = \{1\}, g(1)={0}g(1) = \{0\}. Each is injective, its two values being distinct, and each is surjective, its image being all of BB; so both are bijections by [L4]. They are distinct, since f(0)={0}{1}=g(0)f(0) = \{0\} \ne \{1\} = g(0).

step 1.1L4construct
3.1

There are exactly two. By [L3] the set of bijections ABA \to B has 2!=22! = 2 elements, so ff and gg of step 2.1 are all of them.

step 1.1L3
4.1

The refuted claim fails: A=B\lvert A\rvert = \lvert B\rvert holds, and there are two bijections ABA \to B, not one. The cardinality A\lvert A\rvert of a finite set asserts only that some bijection AAA \to \lvert A\rvert exists; [L5] makes the resulting natural number unique, not the witnessing map.

step 2.1step 3.1L1L5

Remarks

CounterexampleConstruction: AI-generatedVerification: AI-generatedprecheck passverified 2026-08-02 (claude-opus-5)Open item page →

A count that overcounts because the blocks are not disjoint, and exactly where the sum rule's hypothesis is spent

Statement refuted

Refuted claim: clause 2 of The sum rule: a finite disjoint union is finite with AB=A+B\lvert A \cup B\rvert = \lvert A\rvert + \lvert B\rvert and iIAi=iIAi\lvert\bigcup_{i \in I} A_i\rvert = \sum_{i \in I}\lvert A_i\rvert, and a sum over a finite index set splits along a partition with its disjointness hypothesis deleted, that is, for a finite index set II and any family (Ai)iI(A_i)_{i \in I} of finite sets,

iIAi=iIAi.\Big\lvert\bigcup_{i \in I} A_i\Big\rvert = \sum_{i \in I}\lvert A_i\rvert .

The witness lives inside P(X)\mathcal{P}(X) for X:=4={0,1,2,3}X := 4 = \{0,1,2,3\}. Take I:=2I := 2, let A0A_0 be the set of subsets of XX containing 00 and A1A_1 the set of subsets containing 11. Then A0=A1=8\lvert A_0\rvert = \lvert A_1\rvert = 8, so the right-hand side is 1616, while A0A1=12\lvert A_0 \cup A_1\rvert = 12.

P(X)A0A14444jA0j+jA1j=8+8=16;jA0[A1j=4+4+4=12

Facts & Assumptions

Given: X=4={0,1,2,3}X = 4 = \{0,1,2,3\}; A0:={SX:0S}A_0 := \{\, S \subseteq X : 0 \in S \,\}; A1:={SX:1S}A_1 := \{\, S \subseteq X : 1 \in S \,\}; and C:={SX:0S and 1S}C := \{\, S \subseteq X : 0 \notin S \text{ and } 1 \notin S \,\}.

[L1]

P(Y)=2Y\lvert\mathcal{P}(Y)\rvert = 2^{\lvert Y\rvert} (P(A)=2A\lvert\mathcal{P}(A)\rvert = 2^{\lvert A\rvert} for finite AA, Exponentiation of natural numbers, mnm^{n}, and its agreement with the integer power in R\mathbb{R}), and 22=42^{2} = 4, 23=82^{3} = 8, 24=162^{4} = 16.

[L2]

The sum rule for two disjoint blocks: ST=S+T\lvert S \cup T\rvert = \lvert S\rvert + \lvert T\rvert, and its proof, whose only use of disjointness is the injectivity of the splice map hh (The sum rule: a finite disjoint union is finite with AB=A+B\lvert A \cup B\rvert = \lvert A\rvert + \lvert B\rvert and iIAi=iIAi\lvert\bigcup_{i \in I} A_i\rvert = \sum_{i \in I}\lvert A_i\rvert, and a sum over a finite index set splits along a partition, step 1.1 there).

[L4]

Maps (Injection, surjection, bijection): a map with a two-sided inverse is a bijection.

Counterexample

technique · direct
1.1

The three sets are subsets of the finite set P(X)\mathcal{P}(X), hence finite by [L3], and P(X)=24=16\lvert\mathcal{P}(X)\rvert = 2^{4} = 16 by [L1].

givenL1L3
2.1

Each block has eight elements. The map SS{0}S \mapsto S \setminus \{0\} sends A0A_0 into P({1,2,3})\mathcal{P}(\{1,2,3\}) and TT{0}T \mapsto T \cup \{0\} sends P({1,2,3})\mathcal{P}(\{1,2,3\}) into A0A_0; the two composites are the identity, because 0S0 \in S for SA0S \in A_0 and 0T0 \notin T for T{1,2,3}T \subseteq \{1,2,3\}. So A0=23=8\lvert A_0\rvert = 2^{3} = 8 by [L1], [L3] and [L4], and the same argument at the point 11 gives A1=8\lvert A_1\rvert = 8. Hence i2Ai=8+8=16\sum_{i \in 2}\lvert A_i\rvert = 8 + 8 = 16.

step 1.1L1L3L4L5
2.2

The union has twelve. A subset of XX lies in A0A1A_0 \cup A_1 exactly when it contains 00 or contains 11, so P(X)\mathcal{P}(X) is the disjoint union of A0A1A_0\cup A_1 and CC; and CC is in bijection with P({2,3})\mathcal{P}(\{2,3\}) under the identity map, since a subset of XX containing neither 00 nor 11 is precisely a subset of {2,3}\{2,3\}, giving C=22=4\lvert C\rvert = 2^{2} = 4. By [L2], 16=A0A1+416 = \lvert A_0\cup A_1\rvert + 4, so A0A1=12\lvert A_0 \cup A_1\rvert = 12 by [L5].

step 1.1L1L2L3L4L5
3.1

The claim fails: 121612 \ne 16. The overcount is exactly 44, the number of subsets containing both 00 and 11, and it agrees with C\lvert C\rvert because SS{0,1}S \mapsto S \cup \{0,1\} is a bijection of CC onto A0A1A_0 \cap A_1, with inverse TT{0,1}T \mapsto T \setminus \{0,1\}.

step 2.1step 2.2L4

Remarks

False statementConstruction: AI-adaptedVerification: AI-adaptedprecheck passjudge pass (z-ai/glm-5.2)audited 2026-07-29Open item page →

FALSE: every injection of a set into itself is a bijection

Statement

FALSE. The statement

every injective function f:AAf : A \to A from a set to itself is a bijection

for all sets AA.

The claim is plausible because it is true for finite AA: that is clause 4 of A subset of a finite set is finite, with BA\lvert B\rvert \le \lvert A\rvert, and equality holds if and only if B=AB = A. What is easy to miss is that the proof of that clause uses finiteness twice, at the transport f[A]=A\lvert f[A]\rvert = \lvert A\rvert and at the step "a subset of the same cardinality as the whole is the whole", and neither survives without it.

Facts & Assumptions

Given: The von Neumann naturals N\mathbb{N} with 0=0 = \varnothing and successor σ\sigma (The natural numbers N\mathbb{N} (von Neumann)), and A:=NA := \mathbb{N}, f:=σf := \sigma.

[L1]

(N,0,σ)(\mathbb{N},0,\sigma) satisfies the Peano axioms: σ(n)0\sigma(n) \ne 0 for every nn, and σ\sigma is injective (The von Neumann naturals form a Peano system).

[L2]

Every nonzero natural is a successor (Every nonzero natural number is a successor), so the image of σ\sigma is exactly N{0}\mathbb{N}\setminus\{0\}.

[L3]

Injection, surjection, bijection (Injection, surjection, bijection): ff is surjective when its image is the whole codomain, and bijective when injective and surjective.

[L4]

For finite AA, every injection AAA \to A is a bijection (A subset of a finite set is finite, with BA\lvert B\rvert \le \lvert A\rvert, and equality holds if and only if B=AB = A, clause 4), the proof going through f[A]=A\lvert f[A]\rvert = \lvert A\rvert and clause 3 of the same theorem (The cardinality A\lvert A\rvert of a finite set).

[L5]

N\mathbb{N} is not finite: N≉n\mathbb{N} \not\approx n for every natural nn (The pigeonhole principle on N\mathbb{N}, claim 4, Finite, countably infinite, countable, uncountable, Equinumerous sets, ABA \approx B and ABA \preceq B).

Refutation

technique · direct
1.1

The witness is the successor map σ:NN\sigma : \mathbb{N} \to \mathbb{N}. It is injective by [L1].

givenL1L3
2.1

It is not surjective: 00 is not in its image, since σ(n)0\sigma(n) \ne 0 for every nn by [L1]. Equivalently, its image is N{0}\mathbb{N}\setminus\{0\} by [L2], a proper subset of N\mathbb{N}.

step 1.1L1L2L3
3.1

So σ\sigma is an injection of N\mathbb{N} into itself that is not a bijection, and the displayed statement is false.

step 1.1step 2.1L3
4.1

Finiteness is exactly the missing hypothesis. By [L4] the statement is true whenever AA is finite, and N\mathbb{N} is not finite by [L5]. In the proof of [L4] the hypothesis is spent at the transport of cardinality along the bijection Af[A]A \to f[A], which presupposes AA finite, and then at the conclusion f[A]=Af[A] = A from f[A]=A\lvert f[A]\rvert = \lvert A\rvert, which is the clause of A subset of a finite set is finite, with BA\lvert B\rvert \le \lvert A\rvert, and equality holds if and only if B=AB = A that fails here: σ[N]\sigma[\mathbb{N}] is a proper subset of N\mathbb{N} equinumerous with it.

step 3.1L4L5

Remarks

False statementConstruction: AI-adaptedVerification: AI-generatedprecheck passjudge pass (z-ai/glm-5.2)audited 2026-07-29Open item page →

FALSE: AB=A+B\lvert A \cup B\rvert = \lvert A\rvert + \lvert B\rvert for all finite AA and BB

Statement

FALSE. The statement

AB=A+B\lvert A \cup B\rvert = \lvert A\rvert + \lvert B\rvert

for all finite sets AA and BB.

This is The sum rule: a finite disjoint union is finite with AB=A+B\lvert A \cup B\rvert = \lvert A\rvert + \lvert B\rvert and iIAi=iIAi\lvert\bigcup_{i \in I} A_i\rvert = \sum_{i \in I}\lvert A_i\rvert, and a sum over a finite index set splits along a partition clause 1 with the hypothesis AB=A \cap B = \varnothing deleted. It is the single most common way a count goes wrong, and the smallest witness is as small as a witness can be.

Facts & Assumptions

Given: The sets {0}\{0\}, {0,1}\{0,1\} and {1,2}\{1,2\}, with 00, 11, 22 the von Neumann naturals (The natural numbers N\mathbb{N} (von Neumann)).

[L1]

n=n\lvert n\rvert = n for a natural nn, and a bijection transports cardinality (The cardinality A\lvert A\rvert of a finite set, Injection, surjection, bijection).

[L3]

Distinct naturals are distinct, so 121 \ne 2 and 343 \ne 4 (Trichotomy of the order on N\mathbb{N}).

Refutation

technique · direct
1.1

The smallest witness. Take A=B={0}A = B = \{0\}. Then AB={0}A \cup B = \{0\}, which is 11 as a von Neumann natural, so AB=1\lvert A \cup B\rvert = 1 by [L1]; while A+B=1+1=2\lvert A\rvert + \lvert B\rvert = 1 + 1 = 2. Since 121 \ne 2 by [L3], the displayed statement fails.

givenL1L3
2.1

A witness with partial overlap, to show that the failure is not an artefact of taking AA and BB equal. Take A={0,1}=2A = \{0,1\} = 2 and B={1,2}B = \{1,2\}. Then A=2\lvert A\rvert = 2 by [L1], and B=2\lvert B\rvert = 2 because 010 \mapsto 1, 121 \mapsto 2 is a bijection of 22 onto BB. But AB={0,1,2}=3A \cup B = \{0,1,2\} = 3, so AB=3\lvert A\cup B\rvert = 3, whereas A+B=4\lvert A\rvert + \lvert B\rvert = 4. Again the two differ.

step 1.1L1L3
3.1

The missing hypothesis is disjointness. [L2] proves the identity whenever AB=A \cap B = \varnothing, and in step 1.1 the intersection is {0}\{0\} while in step 2.1 it is {1}\{1\}; in each case the excess of the right-hand side over the left is the cardinality of that intersection.

step 1.1step 2.1L2

Remarks

  • What the general correction is. Adding the counts and then subtracting the count of the overlap is the two-set case of inclusion and exclusion. That principle is the next page of this track and is not available here, so no formula for the general case is stated: what is established above is only that the identity as displayed is false, and where its hypothesis went.

  • The same failure at the level of a family is exhibited concretely in A count that overcounts because the blocks are not disjoint, and exactly where the sum rule's hypothesis is spent, where twelve subsets are counted as sixteen.

False statementConstruction: AI-adaptedVerification: AI-generatedprecheck passverified 2026-08-02 (claude-opus-5)Open item page →

FALSE: for all sets AA and BB with BB having at least two elements, A×BA \times B is strictly larger than AA

Statement

FALSE. The statement

for all sets AA and BB with BB having at least two elements, AA×BA \prec A \times B

that is, AA injects into A×BA \times B and is not equinumerous with it (Equinumerous sets, ABA \approx B and ABA \preceq B).

The claim generalises the finite product rule in the shape a reader expects: if A\lvert A\rvert is multiplied by at least 22, surely the product is bigger. It fails at both ends of the range, trivially when AA is empty and substantially when AA is infinite.

Facts & Assumptions

Given: The sets N\mathbb{N} and \varnothing, and 2={0,1}2 = \{0,1\} (The natural numbers N\mathbb{N} (von Neumann)).

[L1]

N×NN\mathbb{N}\times\mathbb{N} \approx \mathbb{N}: the map J(m,n)=2m(2n+1)J(m,n) = 2^{m}(2n+1) is a bijection of N×N\mathbb{N}\times\mathbb{N} onto N{0}\mathbb{N}\setminus\{0\}, and composing with the inverse of the successor gives a bijection onto N\mathbb{N} (N×NN\mathbb{N} \times \mathbb{N} \approx \mathbb{N}, Finite, countably infinite, countable, uncountable).

[L2]

XYX \prec Y means XYX \preceq Y and X≉YX \not\approx Y (Equinumerous sets, ABA \approx B and ABA \preceq B).

[L4]

Order arithmetic of N\mathbb{N}: pqp \le q implies pkqkpk \le qk; xyx \le y implies x+cy+cx + c \le y + c; a0a \ne 0 is the same as 1a1 \le a; 2a=σ(1)a=1a+a=a+a2 \cdot a = \sigma(1)\cdot a = 1\cdot a + a = a + a by the successor-left law; 1a=a1 \cdot a = a; and multiplication is commutative (Order is compatible with multiplication, Order is compatible with addition, Discreteness: σ(n)\sigma(n) is the immediate successor, Zero and one under multiplication, Distributivity and the successor law for multiplication, Multiplication is commutative, Order on the natural numbers).

[L5]

010 \ne 1 in N\mathbb{N}, so N\mathbb{N} has at least two elements (The von Neumann naturals form a Peano system).

Refutation

technique · direct
1.1

The substantial witness: A=B=NA = B = \mathbb{N}. The set N\mathbb{N} has at least two elements by [L5], so the hypothesis on BB holds. By [L1] there is a bijection N×NN\mathbb{N}\times\mathbb{N} \to \mathbb{N}, so AA×BA \approx A \times B, and therefore AA×BA \prec A\times B is false by [L2].

givenL1L2L5
1.2

A degenerate witness, which shows the claim fails even for finite AA: take A=A = \varnothing and B=2B = 2. Then A×B=A \times B = \varnothing, since a pair in it would have a first coordinate in \varnothing; so AA×BA \approx A \times B and again AA×BA \prec A\times B fails.

givenL2L3
2.1

The corrected finite statement is true. Let AA be finite and nonempty and let BB be finite with B2\lvert B\rvert \ge 2; write a:=A1a := \lvert A\rvert \ge 1 and b:=Bb := \lvert B\rvert. Then A×B=ab2a=a+aa+1>a\lvert A\times B\rvert = ab \ge 2a = a + a \ge a + 1 > a by [L3] and [L4], using 1a1 \le a. So a finite nonempty AA is strictly smaller than A×BA \times B in cardinality. Both hypotheses are needed, by step 1.1 and step 1.2 respectively.

step 1.1step 1.2L3L4
3.1

So the displayed statement is false, and what fails is not the product rule but its extension beyond the finite nonempty case: finiteness and nonemptiness of AA are exactly the hypotheses under which multiplying by a factor of at least 22 increases the count.

step 1.1step 1.2step 2.1L2L3

Remarks

  • The contrast with Cantor's theorem is the point. XP(X)X \prec \mathcal{P}(X) holds for every set whatsoever (Cantor's theorem: AP(A)A \prec \mathcal{P}(A)), finite or infinite; strict increase survives to the infinite case there and not here. Passing to the power set is a genuinely different operation from multiplying by a fixed set.

  • Read the cited theorem before using it. N×NN\mathbb{N} \times \mathbb{N} \approx \mathbb{N} states that J(m,n)=2m(2n+1)J(m,n) = 2^{m}(2n+1) is a bijection onto the nonzero naturals, and the bijection onto N\mathbb{N} is obtained by composing with the inverse of the successor. The statement used above is the one that item actually proves.

False statementConstruction: AI-adaptedVerification: AI-generatedprecheck passjudge pass (z-ai/glm-5.2)audited 2026-07-29Open item page →

FALSE: k<n+1(1)kι ⁣(nk)=0\sum_{k<n+1}(-1)^{k}\iota\!\binom{n}{k} = 0 for every nNn \in \mathbb{N}

Statement

FALSE. The statement

k<n+1(1)kι(nk)=0\displaystyle\sum_{k<n+1}(-1)^{k}\,\iota\binom{n}{k} = 0

for every nNn \in \mathbb{N}.

The claim is what a text whose natural numbers begin at 11 would state truly. In this library N\mathbb{N} contains 00 (The natural numbers N\mathbb{N} (von Neumann)), and the statement acquires a counterexample at its very first index.

Facts & Assumptions

[L1]

k<0uk=0\sum_{k<0}u_k = 0 and k<σ(N)uk=k<Nuk+uN\sum_{k<\sigma(N)}u_k = \sum_{k<N}u_k + u_N (Finite sums and finite products, by recursion, Laws of finite sums and finite products).

[L3]

a0=1a^{0} = 1 for every real aa, including a=0a = 0; and 0m=00^{\,m} = 0 for m1m \ge 1 (Integer powers ama^m, Multiplication by zero: 0a=00 \cdot a = 0, Field).

Refutation

technique · direct
1.1

Evaluate the left-hand side at n=0n = 0. The sum runs over k<0+1=1k < 0+1 = 1, so by [L1] it is the single term (1)0ι(00)(-1)^{0}\,\iota\binom{0}{0}.

givenL1
2.1

That term is 11: (1)0=1(-1)^{0} = 1 by [L3], (00)=1\binom{0}{0} = 1 by [L2], and ι(1)=1\iota(1) = 1. So the sum equals 11, not 00, and the displayed statement is false at n=0n = 0.

step 1.1L2L3
3.1

Where the hypothesis is spent in the true version. [L4] obtains the identity by evaluating the binomial theorem at x=1x = -1, y=1y = 1: the left-hand side becomes (1+1)n=0n(-1+1)^{n} = 0^{\,n}, which is 00 only for n1n \ge 1, while 00=10^{0} = 1 by [L3]. That single evaluation is the entire difference between the true statement and the false one.

step 2.1L3L4

Remarks

  • The convention 00=10^{0} = 1 is not the culprit. It is what makes the binomial theorem itself true at n=0n = 0 and at x=0x = 0, with no exceptional case; the price is that one of its corollaries carries a hypothesis. Changing the convention would move the exception, not remove it.

  • The concrete picture. In Pascal's triangle computed to row 66, with Pascal's rule checked at every interior entry the alternating sums of rows 11 to 66 are all 00 and the alternating sum of row 00 is 11. A reader who computes from row 11 onwards sees only the true pattern.

False statementConstruction: AI-adaptedVerification: AI-generatedprecheck passverified 2026-08-02 (claude-opus-5)Open item page →

FALSE: the number of weak compositions of nn into mm parts is (n+m1m1)\binom{n+m-1}{m-1} for every mNm \in \mathbb{N}

Statement

FALSE. The statement

W(n,m)=(n+m1m1)\big\lvert\mathcal{W}(n,m)\big\rvert = \dbinom{n+m-1}{\,m-1\,}

for every nNn \in \mathbb{N} and every mNm \in \mathbb{N}, that is, For m1m \ge 1 the number of weak compositions of nn into mm parts is (n+m1m1)\binom{n+m-1}{m-1}, and the number of compositions is (n1m1)\binom{n-1}{m-1} for n1n \ge 1 with its hypothesis m1m \ge 1 deleted.

This is a false statement of an unusual kind: at m=0m = 0 the expression on the right is not even well formed under the reading a reader would intend, and under the only reading available in this library it is well formed and gives the wrong number.

Facts & Assumptions

[L1]

W(0,0)=1\lvert\mathcal{W}(0,0)\rvert = 1 and W(n,0)=0\lvert\mathcal{W}(n,0)\rvert = 0 for n1n \ge 1 (Compositions and weak compositions of a natural number into a fixed number of parts, The cardinality A\lvert A\rvert of a finite set).

Refutation

technique · direct
1.1

Fix m=0m = 0 and n=1n = 1. The true count is W(1,0)=0\lvert\mathcal{W}(1,0)\rvert = 0 by [L1]: a weak composition of 11 into 00 parts would be a function 0N0 \to \mathbb{N}, and the only such function is the empty function, whose sum is the empty sum 010 \ne 1.

givenL1L5
2.1

The formula gives 11. With the truncated difference, n+m1=1+01=0n+m-1 = 1+0-1 = 0 and m1=01=0m-1 = 0-1 = 0, so the right-hand side reads (00)=1\binom{0}{0} = 1 by [L2]. Since 101 \ne 0 by [L5], the displayed statement is false at (n,m)=(1,0)(n,m) = (1,0).

step 1.1L2L5
3.1

Under the other reading the expression is not defined at all. If m1m-1 is meant as an integer, it is 1-1 at m=0m = 0, and 1-1 is not a natural number, so (n11)\binom{n-1}{-1} names nothing: The set [A]k[A]^{k} of kk-element subsets and the binomial coefficient (nk):=[n]k\binom{n}{k} := \lvert [n]^{k}\rvert defines (Nk)\binom{N}{k} for natural NN and kk only. So the statement is either false or ill formed, and in neither reading is it true.

step 2.1L4

Remarks

Sources