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.

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

Graphs, Walks and Connectivity — Examples

1 · Prerequisites

2 · Summary

3 · Logical flowchart

4 · Definitions, theorems and proofs

None yet.

5 · Examples, counterexamples and false statements

ExampleConstruction: AI-generatedVerification: AI-generatedprecheck passaudited 2026-07-31Open item page →

A small graph separates walks, trails, paths, closed walks and cycles by explicit vertex lists

Example

Let GG have vertex set {0,1,2,3}\{0,1,2,3\} and edge set {01,12,20,23}\{01,12,20,23\}, where ijij abbreviates {i,j}\{i,j\}. The following lists separate the standard notions:

  • (0,1,2,1)(0,1,2,1) is a walk but not a trail;
  • (3,2,0,1,2)(3,2,0,1,2) is a trail but not a path;
  • (3,2,1,0)(3,2,1,0) is a path;
  • (0,1,0)(0,1,0) is a closed walk but not a cycle;
  • (0,1,2,0)(0,1,2,0) is a cycle.
012323walk(0;1;2;1)edge12twice0123trail(3;2;0;1;2)vertex2twice0123path(3;2;1;0)0123cycle(0;1;2;0)

Facts & Assumptions

Given: The graph GG and the vertex lists displayed above.

[F1]

Walks require adjacent successive vertices; trails do not repeat edges; paths do not repeat vertices; cycles repeat only their first vertex at the end and have length at least 33 (Walks, closed walks, trails, paths and cycles, with length equal to the number of traversed edges).

[F2]

The displayed edge set is a subset of the two-element subsets of the finite vertex set, so GG is a finite simple graph (A finite simple graph is a finite vertex set together with a set of two-element vertex subsets).

Verification

technique · direct
1.1

Every successive pair in every displayed list is one of 01,12,20,2301,12,20,23, so every list is a walk in GG.

givenF1F2
2.1

The list (0,1,2,1)(0,1,2,1) traverses 1212 twice, so it is not a trail. The list (3,2,0,1,2)(3,2,0,1,2) traverses the distinct edges 23,20,01,1223,20,01,12 but repeats vertex 22, so it is a trail and not a path.

step 1.1F1
2.2

The list (3,2,1,0)(3,2,1,0) has four distinct vertices, so it is a path. The list (0,1,0)(0,1,0) is closed but repeats the edge 0101 and has length 22, so it is not a cycle.

step 1.1F1
3.1

The list (0,1,2,0)(0,1,2,0) is closed, has length 33, and has distinct vertices before returning to 00, so it is a cycle.

step 1.1F1
ExampleConstruction: AI-generatedVerification: AI-generatedprecheck passaudited 2026-07-31Open item page →

Connected components, finite within-component distances, undefined cross-component distance and girth are computed in a disconnected graph

Example

Let GG have vertices a,b,c,p,q,ra,b,c,p,q,r and edges ab,bc,ca,pq,qrab,bc,ca,pq,qr. Its components are the triangle on {a,b,c}\{a,b,c\} and the path on {p,q,r}\{p,q,r\}. Within them,

d(a,b)=1,d(p,q)=1,d(p,r)=2.d(a,b)=1,\qquad d(p,q)=1,\qquad d(p,r)=2.

The distance d(a,p)d(a,p) is undefined. The graph has girth 33; its path component is acyclic and has girth \infty.

abcfa;b;cggirth3pqr11fp;q;rgd(p;r)=2,girth1noedgecrosses

Facts & Assumptions

Given: The graph GG described in the Example.

[F2]

Distance is the minimum path length within one component and is not assigned across components; girth is the least cycle length, with value \infty for an acyclic graph (Graph distance within a component, eccentricity, diameter and girth, including the acyclic convention).

Verification

technique · direct
1.1

The vertices a,b,ca,b,c reach one another along triangle edges, and p,q,rp,q,r reach one another along pq,qrpq,qr. No edge joins these two sets, so [F1] gives exactly the two stated components.

givenF1
1.2

The edges abab and pqpq give the two distances 11. The path (p,q,r)(p,q,r) has length 22, while pp and rr are not adjacent, so d(p,r)=2d(p,r)=2.

givenF2
2.1

Since aa and pp lie in different components, d(a,p)d(a,p) is undefined by [F2]. The triangle is a cycle of length 33, no cycle can have smaller length, and the path component has no cycle; the girth assertions follow.

step 1.1F2
ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-07-31Open item page →

K5K_5 and K3,3K_{3,3} illustrate complete and complete bipartite graphs, degrees and edge counts

Example

The complete graph K5K_5 has degree 44 at every vertex and has 1010 edges. The complete bipartite graph K3,3K_{3,3} has degree 33 at every vertex and has 99 edges.

12345K5:degree4,10edgesu1u2u3v1v2v3K3;3:degree3,9edges

Facts & Assumptions

Given: The standard graphs K5K_5 and K3,3K_{3,3}.

[F1]

K5K_5 contains every pair of its five vertices as an edge, while K3,3K_{3,3} has two three-element parts and every edge between the parts (Empty and complete graphs, complete bipartite graphs, and the convention that PnP_n and CnC_n have nn vertices).

[L2]

The sum of degrees is twice the number of edges (Handshake lemma: the sum of the vertex degrees is twice the number of edges).

Verification

technique · direct
1.1

Each vertex of K5K_5 is adjacent to the other four vertices, so its degree is 44; [L1] gives E(K5)=(52)=10|E(K_5)|=\binom52=10.

F1L1algebra
1.2

Each vertex of K3,3K_{3,3} is adjacent to all three vertices in the opposite part and none in its own part, so all six vertices have degree 33.

F1
2.1

By [L2], 2E(K3,3)=63=182|E(K_{3,3})|=6\cdot3=18, hence E(K3,3)=9|E(K_{3,3})|=9.

step 1.2L2algebra
ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passverified 2026-08-04 (gpt-5.6-sol-codex-subscription)Open item page →

The Petersen graph has ten vertices, is cubic, has girth five and has κ=λ=3\kappa=\lambda=3

Example

For Ω={1,2,3,4,5}\Omega=\{1,2,3,4,5\}, the Petersen graph on [Ω]2[\Omega]^2 has ten vertices, is cubic, has girth 55, and satisfies

κ(G)=λ(G)=3.\kappa(G)=\lambda(G)=3.

12341523453525241413the5-cycle12;34;15;23;45;12

Facts & Assumptions

Given: The Petersen graph GG whose vertices are the two-element subsets of Ω={1,2,3,4,5}\Omega=\{1,2,3,4,5\}, adjacent exactly when disjoint.

[F2]
[L2]

Whitney's inequalities give κ(G)λ(G)δ(G)\kappa(G)\le\lambda(G)\le\delta(G) for a nontrivial connected graph (Whitney's inequalities: κ(G)λ(G)δ(G)\kappa(G)\le\lambda(G)\le\delta(G) for every nontrivial connected graph).

Verification

technique · direct
1.1

The vertex set has (52)=10\binom52=10 elements by [L1]. For a vertex AA, its neighbours are the two-element subsets of the three-element complement ΩA\Omega\setminus A, so it has (32)=3\binom32=3 neighbours. Thus GG is cubic and δ(G)=3\delta(G)=3.

F1L1algebra
1.2

If distinct vertices A,BA,B are disjoint, their union has four elements and there is no two-element subset disjoint from both. If they intersect, their union has three elements and its two-element complement is their unique common neighbour.

F1
1.3

Deleting any two vertices leaves a connected graph. Up to relabelling Ω\Omega, two deleted two-element subsets are either the disjoint pair 12,3412,34 or the intersecting pair 12,1312,13. In the first case the remaining vertices have the spanning path 13,25,14,35,24,15,23,4513,25,14,35,24,15,23,45; in the second they have the spanning path 24,35,14,25,34,15,23,4524,35,14,25,34,15,23,45. Every successive pair displayed is disjoint. Relabelling preserves disjointness, so these cases cover every pair.

F1
2.1

There is no triangle: adjacent vertices are disjoint and have no common neighbour by step 1.2. There is no 44-cycle, because its two opposite vertices would have two distinct common neighbours, also impossible by step 1.2.

step 1.2
2.2

Every two distinct vertices are at distance at most 22: disjoint ones are adjacent, and intersecting ones have the common neighbour from step 1.2. Hence GG is connected.

step 1.2F1
3.1

The vertices 12,34,15,23,4512,34,15,23,45 in that order form a 55-cycle, since consecutive sets, including 4545 and 1212, are disjoint. With step 2.1 and [F2], this proves g(G)=5g(G)=5.

step 2.1F1F2
3.2

No set of at most two edges disconnects GG. Indeed, if such a deletion produced a component on a smallest vertex set SS, then 1S51\le|S|\le5. Writing e(S)e(S) for the number of edges inside SS, cubicity gives 3S2e(S)3|S|-2e(S) edges leaving SS. For S=1,2,3|S|=1,2,3 this number is at least 3,4,53,4,5, since a simple triangle-free graph on those sizes has at most 0,1,20,1,2 edges. For S=4|S|=4, the absence of triangles and 44-cycles makes the induced graph acyclic, so it has at most 33 edges and at least 66 edges leave. For S=5|S|=5, it is either acyclic with at most 44 edges or is a chordless 55-cycle with 55 edges, so at least 55 edges leave. Every case has at least three boundary edges, a contradiction. Therefore λ(G)3\lambda(G)\ge3.

step 1.1step 2.1F3algebra
3.3

Deleting one vertex also leaves a connected graph: choose a second vertex, use step 1.3 on the remaining eight, and then add the second vertex back; it retains at least two of its three neighbours. Step 2.2 covers deletion of no vertices. Thus no vertex cut has size at most 22, and κ(G)3\kappa(G)\ge3.

step 1.1step 2.2step 1.3F3
4.1

By [L2] and step 1.1, λ(G)δ(G)=3\lambda(G)\le\delta(G)=3. Together with step 3.2 this gives λ(G)=3\lambda(G)=3.

step 1.1step 3.2L2
5.1

Whitney's inequality [L2] and step 4.1 give κ(G)3\kappa(G)\le3, while step 3.3 gives the reverse bound. Hence κ(G)=λ(G)=3\kappa(G)=\lambda(G)=3; both lower bounds were obtained in steps 3.2 and 3.3, which use the cubic regularity of GG.

step 4.1step 3.3L2
CounterexampleConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-07-31Open item page →

C6C_6 and the disjoint union of two triangles have the same degree sequence but are not isomorphic

Statement refuted

The false statement FALSE: a finite simple graph is determined up to isomorphism by its degree sequence claims that a finite simple graph is determined up to isomorphism by its degree sequence.

Facts & Assumptions

Given: G=C6G=C_6 and H=C3˙C3H=C_3\mathbin{\dot\cup}C_3, the disjoint union of two triangles.

[F2]

Isomorphisms preserve adjacency and therefore preserve path-reachability and connectedness (Graph isomorphisms, automorphisms and graph complements, Connected graphs and connected components defined by the existence of vertex paths).

Counterexample

technique · direct
1.1

Every vertex of GG lies on the six-cycle and has degree 22. Every vertex of HH lies on one of its two triangles and has degree 22. Thus both degree sequences are (2,2,2,2,2,2)(2,2,2,2,2,2).

givenF1
1.2

The graph GG is connected, since either direction around the cycle gives a path between any two vertices. The graph HH is disconnected, since no edge joins its two triangles.

givenF1
2.1

By [F2], connectedness is invariant under isomorphism, so G≇HG\not\cong H. They have the same degree sequence by step 1.1, which refutes the stated claim.

step 1.1step 1.2F2

Remarks

G=C6onecomponentH=C3_[C3twocomponentseverydisplayedvertexhasdegree2
CounterexampleConstruction: AI-adaptedVerification: AI-generatedprecheck passverified 2026-08-04 (gpt-5.6-sol-codex-subscription)Open item page →

Two triangles sharing one vertex form a connected simple graph with all degrees even that is not a cycle

Statement refuted

The false statement FALSE: a connected simple graph in which every vertex has even degree must itself be a cycle claims that every connected simple graph whose degrees are all even is itself a cycle.

Facts & Assumptions

Given: The graph GG with vertices x,a,b,c,dx,a,b,c,d and edges xa,ab,bx,xc,cd,dxxa,ab,bx,xc,cd,dx.

[F2]

In the cycle graph CnC_n each vertex is joined by an edge exactly to its predecessor and its successor modulo nn (Empty and complete graphs, complete bipartite graphs, and the convention that PnP_n and CnC_n have nn vertices); with [F1] this gives every vertex of a cycle graph degree 22.

Counterexample

technique · direct
1.1

The edges form the triangles xabxxabx and xcdxxcdx. Every vertex reaches xx within its triangle, so every two vertices are joined by a path and GG is connected.

given
1.2

The vertex xx has degree 44, while a,b,c,da,b,c,d each have degree 22. Thus every degree is even by [F1].

givenF1
2.1

Since xx has degree 44, [F2] shows that GG is not a cycle graph. Steps 1.1 and 1.2 supply the required connected even-degree counterexample.

step 1.1step 1.2F2

Remarks

xabcddeg(x)=4deg(a)=deg(b)=deg(c)=deg(d)=2
CounterexampleConstruction: AI-generatedVerification: AI-generatedprecheck passaudited 2026-07-31Open item page →

Two dense lobes meeting at one cut vertex give κ(G)=1<λ(G)=2<δ(G)=3\kappa(G)=1<\lambda(G)=2<\delta(G)=3

Statement refuted

The false statement FALSE: vertex connectivity, edge connectivity and minimum degree are always equal claims that vertex connectivity, edge connectivity and minimum degree always agree.

Facts & Assumptions

Given: For i=1,2i=1,2, take vertices ai,bi,ci,dia_i,b_i,c_i,d_i spanning K4K_4 with the edge aibia_ib_i deleted. Add one vertex vv, add the edges vai,vbiva_i,vb_i for both ii, and add no edge between the two four-vertex lobes.

Counterexample

technique · direct
1.1

The graph is connected, and deleting vv separates the two lobes. No deletion of zero vertices disconnects a connected graph, so κ(G)=1\kappa(G)=1.

givenF1
1.2

In each lobe, aia_i and bib_i have two neighbours inside the lobe and the neighbour vv, so degree 33; ci,dic_i,d_i have degree 33 inside the lobe; and vv has degree 44. Hence δ(G)=3\delta(G)=3.

givenF2
1.3

Deleting va1va_1 and vb1vb_1 separates the first lobe from the rest, so λ(G)2\lambda(G)\le2.

givenF1
1.4

Every edge lies on a cycle. The edges vaiva_i and vbivb_i lie on the 44-cycle v,ai,ci,bi,vv,a_i,c_i,b_i,v. Each internal edge incident with aia_i lies on the triangle ai,ci,di,aia_i,c_i,d_i,a_i, and each internal edge incident with bib_i lies on bi,ci,di,bib_i,c_i,d_i,b_i. Thus deleting one edge leaves an alternate path between its endpoints and cannot disconnect the graph, so λ(G)2\lambda(G)\ge2.

givenF1
2.1

Steps 1.3 and 1.4 give λ(G)=2\lambda(G)=2. Together with steps 1.1 and 1.2, this proves κ(G)=1<λ(G)=2<δ(G)=3\kappa(G)=1<\lambda(G)=2<\delta(G)=3 and refutes equality in both Whitney inequalities.

step 1.1step 1.2step 1.3step 1.4

Remarks

va1b1c1d1a2b2c2d2vertexcutfvgedgecutfva1;vb1g(G)=1<¸(G)=2<±(G)=3
ExampleConstruction: AI-generatedVerification: AI-generatedprecheck passaudited 2026-07-31Open item page →

A worked graph records vertex deletion, edge deletion, edge contraction and the resulting minor model

Example

Let GG have vertices 1,2,3,41,2,3,4 and edges 12,23,34,41,1312,23,34,41,13. Then:

  • G4G-4 is the triangle on 1,2,31,2,3;
  • G13G-13 is the cycle C4C_4;
  • contracting 1212 produces the triangle on the new vertex xx and vertices 3,43,4, so this triangle is a minor of GG.

The contraction deletes the loop arising from 1212 and merges the two copies of x3x3 arising from 1313 and 2323.

1234G123G¡41234G¡13=C4x34G=12:atriangleminor

Facts & Assumptions

Given: The graph GG displayed in the Example.

[F1]

Vertex deletion takes the induced subgraph on the remaining vertices, edge deletion removes the named edge, and contraction deletes loops and merges parallel images (Vertex and edge deletion, edge contraction, graph minors, subdivisions and topological minors, Subgraphs, induced subgraphs and spanning subgraphs).

Verification

technique · direct
1.1

Deleting vertex 44 retains exactly 12,23,1312,23,13, the three edges of a triangle on 1,2,31,2,3. Deleting edge 1313 retains exactly 12,23,34,4112,23,34,41, the four-cycle.

givenF1
1.2

Under contraction of 1212 to xx, the edge 1212 becomes a loop and is deleted; 1313 and 2323 both become x3x3 and merge; 4141 becomes 4x4x; and 3434 remains 3434. The resulting simple edge set is {x3,34,4x}\{x3,34,4x\}, a triangle.

givenF1
2.1

Since this triangle is obtained from GG by an allowed edge contraction, it is a minor of GG.

step 1.2F1

Sources