Alphabeta Math
How statement and proof provenance work

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

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

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

✓ 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 G have vertex set {0,1,2,3} and edge set {01,12,20,23}, where ij abbreviates {i,j}. The following lists separate the standard notions:

  • (0,1,2,1) is a walk but not a trail;
  • (3,2,0,1,2) is a trail but not a path;
  • (3,2,1,0) is a path;
  • (0,1,0) is a closed walk but not a cycle;
  • (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 G 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 3 (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 G 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,23, so every list is a walk in G.

givenF1F2
2.1

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

step 1.1F1
2.2

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

step 1.1F1
3.1

The list (0,1,2,0) is closed, has length 3, and has distinct vertices before returning to 0, 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 G have vertices a,b,c,p,q,r and edges ab,bc,ca,pq,qr. Its components are the triangle on {a,b,c} and the path on {p,q,r}. Within them,

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

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

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

Facts & Assumptions

Given: The graph G 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 ∞ 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,c reach one another along triangle edges, and p,q,r reach one another along pq,qr. No edge joins these two sets, so [F1] gives exactly the two stated components.

givenF1
1.2

The edges ab and pq give the two distances 1. The path (p,q,r) has length 2, while p and r are not adjacent, so d(p,r)=2.

givenF2
2.1

Since a and p lie in different components, d(a,p) is undefined by [F2]. The triangle is a cycle of length 3, 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 →

K5 and K3,3 illustrate complete and complete bipartite graphs, degrees and edge counts

Example

The complete graph K5 has degree 4 at every vertex and has 10 edges. The complete bipartite graph K3,3 has degree 3 at every vertex and has 9 edges.

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

Facts & Assumptions

Given: The standard graphs K5 and K3,3.

[F1]

K5 contains every pair of its five vertices as an edge, while K3,3 has two three-element parts and every edge between the parts (Empty and complete graphs, complete bipartite graphs, and the convention that Pn and Cn have n 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 K5 is adjacent to the other four vertices, so its degree is 4; [L1] gives ∣E(K5)∣=(52)=10.

F1L1algebra
1.2

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

F1
2.1

By [L2], 2∣E(K3,3)∣=6⋅3=18, hence ∣E(K3,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

Example

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

κ(G)=λ(G)=3.

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

Facts & Assumptions

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

[F2]
[L2]

Whitney's inequalities give κ(G)≤λ(G)≤δ(G) for a nontrivial connected graph (Whitney's inequalities: κ(G)≤λ(G)≤δ(G) for every nontrivial connected graph).

Verification

technique · direct
1.1

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

F1L1algebra
1.2

If distinct vertices A,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 Ω, two deleted two-element subsets are either the disjoint pair 12,34 or the intersecting pair 12,13. In the first case the remaining vertices have the spanning path 13,25,14,35,24,15,23,45; in the second they have the spanning path 24,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 4-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 2: disjoint ones are adjacent, and intersecting ones have the common neighbour from step 1.2. Hence G is connected.

step 1.2F1
3.1

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

step 2.1F1F2
3.2

No set of at most two edges disconnects G. Indeed, if such a deletion produced a component on a smallest vertex set S, then 1≤∣S∣≤5. Writing e(S) for the number of edges inside S, cubicity gives 3∣S∣−2e(S) edges leaving S. For ∣S∣=1,2,3 this number is at least 3,4,5, since a simple triangle-free graph on those sizes has at most 0,1,2 edges. For ∣S∣=4, the absence of triangles and 4-cycles makes the induced graph acyclic, so it has at most 3 edges and at least 6 edges leave. For ∣S∣=5, it is either acyclic with at most 4 edges or is a chordless 5-cycle with 5 edges, so at least 5 edges leave. Every case has at least three boundary edges, a contradiction. Therefore λ(G)≥3.

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 2, and κ(G)≥3.

step 1.1step 2.2step 1.3F3
4.1

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

step 1.1step 3.2L2
5.1

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

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

C6 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=C6 and H=C3∪˙C3, 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 G lies on the six-cycle and has degree 2. Every vertex of H lies on one of its two triangles and has degree 2. Thus both degree sequences are (2,2,2,2,2,2).

givenF1
1.2

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

givenF1
2.1

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

step 1.1step 1.2F2∎

Remarks


% C_3 dot-union C_3. \node[vertex] (h1) at (3.3,1) {}; \node[vertex] (h2) at (4.35,-.8) {}; \node[vertex] (h3) at (2.25,-.8) {}; \node[vertex] (j1) at (6.2,1) {}; \node[vertex] (j2) at (7.25,-.8) {}; \node[vertex] (j3) at (5.15,-.8) {}; \draw[edge] (h1)--(h2)--(h3)--cycle; \draw[edge] (j1)--(j2)--(j3)--cycle; \node[caption] at (4.75,-2) {$H=C_3\mathbin{\dot\cup}C_3$\\two components}; \node[font=\scriptsize] at (2.35,1.85) {every displayed vertex has degree $2$}; \end{tikzpicture} ```
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 G with vertices x,a,b,c,d and edges xa,ab,bx,xc,cd,dx.

[F2]

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

Counterexample

technique · direct
1.1

The edges form the triangles xabx and xcdx. Every vertex reaches x within its triangle, so every two vertices are joined by a path and G is connected.

given
1.2

The vertex x has degree 4, while a,b,c,d each have degree 2. Thus every degree is even by [F1].

givenF1
2.1

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

step 1.1step 1.2F2∎

Remarks

tikz \begin{tikzpicture}[ vertex/.style={draw,circle,fill=white,minimum size=8mm,inner sep=1pt,font=\small}, centre/.style={vertex,draw=red!75!black,fill=red!12,line width=1.4pt}, edge/.style={draw=gray!75,line width=1.1pt} ] \node[centre] (x) at (0,0) {$x$}; \node[vertex] (a) at (-2,1.25) {$a$}; \node[vertex] (b) at (-2,-1.25) {$b$}; \node[vertex] (c) at (2,1.25) {$c$}; \node[vertex] (d) at (2,-1.25) {$d$}; \draw[edge] (x)--(a)--(b)--(x); \draw[edge] (x)--(c)--(d)--(x); \node[font=\scriptsize,red!75!black,anchor=west] at (.45,.2) {$\deg(x)=4$}; \node[font=\scriptsize] at (0,-1.9) {$\deg(a)=\deg(b)=\deg(c)=\deg(d)=2$}; \end{tikzpicture}

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

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,2, take vertices ai,bi,ci,di spanning K4 with the edge aibi deleted. Add one vertex v, add the edges vai,vbi for both i, and add no edge between the two four-vertex lobes.

Counterexample

technique · direct
1.1

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

givenF1
1.2

In each lobe, ai and bi have two neighbours inside the lobe and the neighbour v, so degree 3; ci,di have degree 3 inside the lobe; and v has degree 4. Hence δ(G)=3.

givenF2
1.3

Deleting va1 and vb1 separates the first lobe from the rest, so λ(G)≤2.

givenF1
1.4

Every edge lies on a cycle. The edges vai and vbi lie on the 4-cycle v,ai,ci,bi,v. Each internal edge incident with ai lies on the triangle ai,ci,di,ai, and each internal edge incident with bi lies on bi,ci,di,bi. Thus deleting one edge leaves an alternate path between its endpoints and cannot disconnect the graph, so λ(G)≥2.

givenF1
2.1

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

step 1.1step 1.2step 1.3step 1.4∎

Remarks

tikz \begin{tikzpicture}[ vertex/.style={draw,circle,fill=white,minimum size=7.5mm,inner sep=1pt,font=\scriptsize}, cutvertex/.style={vertex,draw=violet!80!black,fill=violet!15,line width=1.4pt}, edge/.style={draw=gray!70,line width=.9pt}, edgecut/.style={draw=orange!85!black,line width=1.7pt} ] \node[cutvertex] (v) at (0,0) {$v$}; % First K_4-a_1b_1 lobe. \node[vertex] (a1) at (-1.5,.75) {$a_1$}; \node[vertex] (b1) at (-1.5,-.75) {$b_1$}; \node[vertex] (c1) at (-3.2,1.05) {$c_1$}; \node[vertex] (d1) at (-3.2,-1.05) {$d_1$}; \draw[edge] (a1)--(c1) (a1)--(d1) (b1)--(c1) (b1)--(d1) (c1)--(d1); \draw[edgecut] (v)--(a1) (v)--(b1); % Second K_4-a_2b_2 lobe. \node[vertex] (a2) at (1.5,.75) {$a_2$}; \node[vertex] (b2) at (1.5,-.75) {$b_2$}; \node[vertex] (c2) at (3.2,1.05) {$c_2$}; \node[vertex] (d2) at (3.2,-1.05) {$d_2$}; \draw[edge] (a2)--(c2) (a2)--(d2) (b2)--(c2) (b2)--(d2) (c2)--(d2); \draw[edge] (v)--(a2) (v)--(b2); \node[font=\scriptsize,violet!80!black] at (0,1.05) {vertex cut $\{v\}$}; \node[font=\scriptsize,orange!85!black] at (-1.25,-1.65) {edge cut $\{va_1,vb_1\}$}; \node[font=\scriptsize] at (0,-2.15) {$\kappa(G)=1<\lambda(G)=2<\delta(G)=3$}; \end{tikzpicture}

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 G have vertices 1,2,3,4 and edges 12,23,34,41,13. Then:

  • G−4 is the triangle on 1,2,3;
  • G−13 is the cycle C4;
  • contracting 12 produces the triangle on the new vertex x and vertices 3,4, so this triangle is a minor of G.

The contraction deletes the loop arising from 12 and merges the two copies of x3 arising from 13 and 23.

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

Facts & Assumptions

Given: The graph G 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 4 retains exactly 12,23,13, the three edges of a triangle on 1,2,3. Deleting edge 13 retains exactly 12,23,34,41, the four-cycle.

givenF1
1.2

Under contraction of 12 to x, the edge 12 becomes a loop and is deleted; 13 and 23 both become x3 and merge; 41 becomes 4x; and 34 remains 34. The resulting simple edge set is {x3,34,4x}, a triangle.

givenF1
2.1

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

step 1.2F1∎

Sources