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.

5 results · all verified · 4 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 1 not AI-judged were verified by owner audit (typically over a confirmed judge false positive), not failures.

Set Partitions, Stirling Numbers and Exponential Generating Functions — Examples

1 · Prerequisites

2 · Summary

These examples keep the page concrete. They list the partitions of [4], compare the three standard computations of S(4,2), and show the Stirling inversion numerically in small size. They also separate Bell numbers from ordered Bell numbers, record a small Lah number and an involution count, and pin down three common boundary mistakes: Bell numbers are not ordered Bell numbers, S(n,k) is not the raw surjection count, and exponential generating functions multiply only for the labelled product.

3 · Logical flowchart

4 · Definitions, theorems and proofs

None yet.

5 · Examples, counterexamples and false statements

ExampleConstruction: AI-generatedVerification: Not suppliedjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

The set partitions of [4] grouped by their number of blocks

Example

The partitions of [4] are:

  • one block: {{1,2,3,4}};
  • two blocks: {{1},{2,3,4}}, {{2},{1,3,4}}, {{3},{1,2,4}}, {{4},{1,2,3}}, {{1,2},{3,4}}, {{1,3},{2,4}}, {{1,4},{2,3}};
  • three blocks: {{1},{2},{3,4}}, {{1},{3},{2,4}}, {{1},{4},{2,3}}, {{2},{3},{1,4}}, {{2},{4},{1,3}}, {{3},{4},{1,2}};
  • four blocks: {{1},{2},{3},{4}}.

So

S(4,1)=1,S(4,2)=7,S(4,3)=6,S(4,4)=1,

and therefore B4=1+7+6+1=15.

ExampleConstruction: AI-generatedVerification: Not suppliedjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

S(4,2) computed by recurrence, inclusion-exclusion, and direct listing

Example

Three standard computations agree:

  1. recurrence: S(4,2)=2S(3,2)+S(3,1)=23+1=7;
  2. inclusion-exclusion: S(4,2)=12!(24214)=142=7;
  3. direct listing: The set partitions of [4] grouped by their number of blocks shows exactly seven two-block partitions of [4].

Thus all three routes give the same value S(4,2)=7.

ExampleConstruction: AI-generatedVerification: Not suppliedjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

The Stirling triangles invert up to size 4

Example

For 0n,k4, the lower-triangular matrices are

S=(1000001000011000131001761),s=(10000010000110002310061161).

Multiplying them gives the 5×5 identity matrix, which is the concrete size-4 instance of The signed first-kind and second-kind Stirling numbers are inverse transition matrices.

ExampleConstruction: AI-generatedVerification: Not suppliedjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

Ordered Bell numbers already differ from Bell numbers at n=3

Example

For [3], the Bell number is

B3=S(3,1)+S(3,2)+S(3,3)=1+3+1=5.

The ordered Bell number is larger because each partition with k blocks can be ordered in k! ways:

11!+32!+13!=1+6+6=13.

So the ordered Bell sequence already differs from the Bell sequence at n=3.

ExampleConstruction: AI-generatedVerification: Not suppliedjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

The involutions of [4] and their cycle decomposition

Example

The involutions of [4] are exactly the permutations whose cycle lengths are all 1 or 2:

  • one with four fixed points: ();
  • six with one transposition: (12), (13), (14), (23), (24), (34);
  • three with two disjoint transpositions: (12)(34), (13)(24), (14)(23).

Hence I4=1+6+3=10, agreeing with the EGF exp(x+x2/2) from Standard labelled specializations give involutions, ordered Bell numbers, and partitions without singletons.

ExampleConstruction: AI-generatedVerification: Not suppliedjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

The Lah number L(4,2)

Example

The closed formula gives

L(4,2)=4!2!(31)=123=36.

So there are 36 partitions of [4] into two nonempty blocks when each block is internally linearly ordered.

ExampleConstruction: AI-generatedVerification: Not suppliedjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

The set partitions of [4] with no singleton blocks

Example

The partitions of [4] with every block of size at least 2 are:

{{1,2,3,4}},{{1,2},{3,4}},{{1,3},{2,4}},{{1,4},{2,3}}.

So the count is 4.

ExampleConstruction: AI-generatedVerification: Not suppliedjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

Set partitions whose blocks are all singletons have EGF ex

Example

There is exactly one partition of [n] into singleton blocks, namely

{{1},{2},,{n}}.

So the counting sequence is constantly 1, and the corresponding exponential generating function is

n0xnn!=ex.

False statementConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-08-27Open item page →

FALSE: Bell numbers count ordered set partitions

Statement

False claim: the Bell number Bn counts ordered set partitions of [n].

Facts & Assumptions

Given: The Bell numbers and ordered Bell numbers already discussed on this page.

Proof

technique · direct
2.1

But the ordered set partitions of [3] are counted by 11!+32!+13!=13. Since 513, the Bell numbers do not count ordered set partitions.

step 1.1givenalgebra
3.1

Therefore the claim is false.

step 2.1
False statementConstruction: AI-adaptedVerification: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

FALSE: S(n,k) counts surjections [n][k]

Statement

False claim: for all n,k, the number S(n,k) is the number of surjections [n][k].

Facts & Assumptions

Given: The surjection formula and the second-kind inclusion-exclusion formula.

Proof

technique · direct
2.1

But The number of surjections from an n-element set onto a k-element set is i<k+1(1)i(ki)(ki)n, read in R through ι gives the surjection count 232=6. Since 36, S(3,2) does not count surjections themselves; it counts them only after dividing by 2!.

step 1.1given
3.1

Therefore the claim is false.

step 2.1
False statementConstruction: AI-adaptedVerification: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

FALSE: exponential generating functions multiply without the labelled-product hypothesis

Statement

False claim: whenever two labelled classes A and B are combined in any way, the exponential generating function of the result is the product of the EGFs of A and B.

Proof

technique · direct
1.1

The product rule of The labelled constructions translate into the usual exponential-generating-function rules applies to the labelled product AB, where the label set is split into two disjoint parts, one for the A-object and one for the B-object.

given
2.1

If that disjointness requirement is dropped, two one-label structures can be forced to live on the same label. Then the combined object has size 1, whereas the EGF product would place it in degree 2. So multiplication is not a free rule about arbitrary combinations; it is the rule for the labelled product and depends on that hypothesis.

step 1.1given
3.1

Therefore the claim is false.

step 2.1
CounterexampleConstruction: AI-generatedVerification: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

Two set partitions can have the same block-size multiset and still be different

Statement refuted

Refuted claim: a set partition is determined by the multiset of its block sizes.

Facts & Assumptions

Given: The partitions P={{1,2},{3,4}} and Q={{1,3},{2,4}} of [4].

Proof

technique · direct
1.1

Both P and Q are set partitions of [4], and both have block-size multiset {2,2}.

given
2.1

But {1,2} is a block of P and not of Q, so PQ. Thus the same block sizes do not determine the partition.

step 1.1
3.1

Therefore the claim is false.

step 2.1
CounterexampleConstruction: AI-generatedVerification: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-08-27Open item page →

The second-kind inclusion-exclusion formula does not count permutations by cycles

Statement refuted

Refuted claim: the inclusion-exclusion formula for S(n,k) also counts permutations of [n] with exactly k cycles.

Facts & Assumptions

Given: The case n=3, k=1.

Proof

technique · direct
1.1

The second-kind formula gives S(3,1)=1.

given
2.1

But the permutations of [3] with exactly one cycle are the two 3-cycles (123) and (132), so c(3,1)=2. Therefore the second-kind formula does not count permutations by cycles.

step 1.1given
3.1

Hence the claim is false.

step 2.1

Sources