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.

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

Gaussian Elimination and Row Reduction: 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 passaudited 2026-08-11Open item page →

A 3×33\times3 system row reduces to a unique solution

Example

Over R\mathbb R, the system x+y+z=6,2xy+z=3,x+2yz=2x+y+z=6,\qquad 2x-y+z=3,\qquad x+2y-z=2 has the unique solution (x,y,z)=(1,2,3)(x,y,z)=(1,2,3).

Facts & Assumptions

Given: The displayed real linear system.

[L1]

An RREF with a pivot in every variable column gives one solution and no free variables (Reduced row echelon form detects consistency and parametrises every solution by the nonpivot variables).

[L2]

Row operations on the augmented matrix preserve the solution set (Elementary row operations on an augmented matrix preserve exactly the solutions of its linear system).

Verification

technique · direct
1.1

Its augmented matrix reduces as follows: subtract twice row 00 from row 11, subtract row 00 from row 22, swap rows 1,21,2, add three times row 11 to row 22, scale row 22 by 1/7-1/7, clear above its pivot, and then clear above the pivot in column 11; the result is [I3(1,2,3)T][I_3\mid(1,2,3)^{\mathsf T}].

L1L2algebra
2.1

The RREF gives the unique solution. Direct substitution yields 1+2+3=61+2+3=6, 22+3=32-2+3=3, and 1+43=21+4-3=2.

step 1.1algebra
ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-08-11Open item page →

A 3×33\times3 system has no solution because its augmented column contains a pivot

Example

The real system x+y+z=1,2x+2y+2z=3,xy=0x+y+z=1,\qquad 2x+2y+2z=3,\qquad x-y=0 is inconsistent.

Facts & Assumptions

Given: The displayed system and its augmented matrix.

[L1]

A pivot in the augmented column of the RREF is equivalent to inconsistency (Reduced row echelon form detects consistency and parametrises every solution by the nonpivot variables).

Verification

technique · direct
1.1

Subtracting twice row 00 from row 11 gives the row (0,0,01)(0,0,0\mid1), which normalizes to a pivot in the augmented column and represents 0=10=1.

L1algebra
2.1

The coefficient matrix has rank 22 because rows (1,1,1)(1,1,1) and (1,1,0)(1,-1,0) are independent, while the augmented matrix has the additional pivot and rank 33. Thus [L2] independently gives inconsistency.

step 1.1L2algebra
ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-08-11Open item page →

A consistent underdetermined system has an affine two-parameter solution set

Example

Over R\mathbb R, the system x+2yz=3,2x+4y2z=6x+2y-z=3,\qquad 2x+4y-2z=6 has the affine two-parameter solution set (x,y,z)=(3,0,0)+s(2,1,0)+t(1,0,1),s,tR.(x,y,z)=(3,0,0)+s(-2,1,0)+t(1,0,1),\qquad s,t\in\mathbb R.

Facts & Assumptions

Given: The displayed real system.

[L3]

The real numbers form a field (The reals form a field).

Verification

technique · direct
1.1

Subtracting twice the first row from the second leaves one nonzero row x+2yz=3x+2y-z=3. Put y=sy=s and z=tz=t; then the pivot variable is x=32s+tx=3-2s+t.

L1L3algebra
2.1

This is the displayed affine form. The base point maps to 33, while each direction maps to 00, so direct multiplication verifies that (3,0,0)(3,0,0) is particular and the two direction vectors lie in the nullspace, as [L2] requires.

step 1.1L2algebra
ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-08-11Open item page →

A 3×33\times3 inverse computed by row reducing [AI][A\mid I]

Example

For A=(110011001),A=\begin{pmatrix}1&1&0\\0&1&1\\0&0&1\end{pmatrix}, row reduction of [AI3][A\mid I_3] gives A1=(111011001).A^{-1}=\begin{pmatrix}1&-1&1\\0&1&-1\\0&0&1\end{pmatrix}.

Facts & Assumptions

Given: The displayed real matrix AA.

[L1]

Reducing [AI][A\mid I] to [IB][I\mid B] gives B=A1B=A^{-1} (Row reducing [AI][A\mid I] yields [IA1][I\mid A^{-1}] exactly when AA is invertible).

Verification

technique · direct
1.1

Starting from [AI3][A\mid I_3], replace row 11 by row 11 minus row 22, then replace row 00 by row 00 minus the new row 11. The left block becomes I3I_3 and the right block becomes the displayed matrix BB.

L1algebra
2.1

Direct multiplication gives AB=I3AB=I_3 and BA=I3BA=I_3: the only off-diagonal sums are 1+1-1+1, 111-1, and 1+1-1+1. Hence B=A1B=A^{-1}.

step 1.1L2algebra
ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-08-11Open item page →

One matrix has two distinct row echelon forms but one reduced row echelon form

Example

Over Q\mathbb Q, the matrix A=(1110)A=\begin{pmatrix}1&1\\1&0\end{pmatrix} has distinct row echelon forms R=(1101),S=(1101),R=\begin{pmatrix}1&1\\0&-1\end{pmatrix},\qquad S=\begin{pmatrix}1&1\\0&1\end{pmatrix}, but both reduce to I2I_2.

Facts & Assumptions

Given: The displayed matrix and two proposed reductions.

[L1]

Every finite matrix over a field is row equivalent to exactly one matrix in reduced row echelon form (Every finite matrix over a field is row equivalent to exactly one reduced row echelon matrix).

[L2]

A matrix is in row echelon form when every zero row lies below every nonzero row, the leading entry — the leftmost nonzero entry — of each nonzero row lies strictly to the right of the leading entry in the row above it, and every entry below a leading entry is zero. A row echelon matrix is in reduced row echelon form when every leading entry equals 11 and is the only nonzero entry in its column (Row echelon form, reduced row echelon form, leading entries, pivots, pivot positions and pivot columns).

[L3]

Over a field FF, an elementary row operation interchanges two distinct rows, replaces RpR_p by cRpcR_p for a nonzero cFc\in F, or replaces RpR_p by Rp+cRqR_p+cR_q for distinct p,qp,q and cFc\in F; two matrices are row equivalent when a finite sequence of elementary row operations transforms one into the other (Elementary row operations and row equivalence for finite matrices over a field).

Verification

technique · direct
1.1

The replacement R1R1+(1)R0R_1\leftarrow R_1+(-1)R_0 is an elementary row operation of the third kind and takes AA to RR; the scaling R1(1)R1R_1\leftarrow(-1)R_1 is one of the second kind, 1-1 being nonzero in Q\mathbb Q, and takes RR to SS. So AA is row equivalent to each of RR and SS by [L3]. Each has no zero row, leading entries in columns 00 and 11 respectively, and 00 below the leading entry of its first row, so each is in row echelon form by [L2]. Finally RSR\ne S because 11-1\ne1 in Q\mathbb Q. The ground field matters here and not elsewhere in the example: over F2\mathbb F_2 one has 1=1-1=1, so RR and SS coincide and this matrix exhibits no failure of uniqueness.

L2L3algebra
2.1

From SS, the replacement R0R0+(1)R1R_0\leftarrow R_0+(-1)R_1 is again elementary of the third kind and gives I2I_2, so I2I_2 is row equivalent to AA by [L3] and step 1.1; its two leading entries equal 11 and each is alone in its column, so it is in reduced row echelon form by [L2]. Applying the same replacement after the scaling of step 1.1 carries RR to I2I_2 as well, in agreement with the uniqueness of [L1].

step 1.1L1L2L3algebra
ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-08-11Open item page →

The rank and solution behaviour of a parameterised matrix change at one exceptional parameter

Example

For At=(111t),b=(22),A_t=\begin{pmatrix}1&1\\1&t\end{pmatrix},\qquad b=\begin{pmatrix}2\\2\end{pmatrix}, the real system Atx=bA_tx=b has rank 22 and the unique solution (2,0)(2,0) when t1t\ne1, while at t=1t=1 it has rank 11 and the affine line of solutions (2s,s)(2-s,s).

Facts & Assumptions

Given: A real parameter tt and the displayed system.

[L1]
[L2]
[L3]

The real numbers form a field (The reals form a field).

Verification

technique · cases
1.1

Subtract row 00 from row 11 without dividing by the parameter; the augmented matrix becomes (1120t10)\begin{pmatrix}1&1&2\\0&t-1&0\end{pmatrix}.

L1L2L3cases
2.1

If t1t\ne1, the second row has a pivot, so the rank is 22, y=0y=0, and x=2x=2.

step 1.1assume-case generic
2.2

If t=1t=1, the second row is zero, so the rank is 11 and y=sy=s is free with x=2sx=2-s.

step 1.1assume-case exceptional
3.1

The alternatives t=1t=1 and t1t\ne1 are exhaustive and give the stated solution behaviour.

step 2.1step 2.2cases-exhaustive
ExampleConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-08-11Open item page →

An invertible 3×33\times3 real matrix factored explicitly into elementary matrices

Example

The matrix A=(110011001)A=\begin{pmatrix}1&1&0\\0&1&1\\0&0&1\end{pmatrix} has the elementary factorisation A=(100011001)(110010001).A=\begin{pmatrix}1&0&0\\0&1&1\\0&0&1\end{pmatrix}\begin{pmatrix}1&1&0\\0&1&0\\0&0&1\end{pmatrix}.

Facts & Assumptions

Given: The displayed real matrix AA.

[L1]

Every invertible real square matrix is a finite product of elementary matrices (Every invertible finite square real matrix is a finite product of elementary matrices).

[L2]

A reduction ErE1A=IE_r\cdots E_1A=I reverses to an elementary factorisation (A finite row reduction from AA to BB is encoded by B=ErE1AB=E_r\cdots E_1A).

Verification

technique · direct
1.1

Subtract row 22 from row 11, then subtract the new row 11 from row 00; these elementary operations reduce AA to I3I_3, so their matrices satisfy E2E1A=I3E_2E_1A=I_3.

L1L2algebra
2.1

Reversing the operations gives the two displayed row-addition matrices. Their direct product is AA, verifying the factorisation entry by entry.

step 1.1algebra
CounterexampleConstruction: AI-adaptedVerification: AI-generatedprecheck passaudited 2026-08-11Open item page →

Row-equivalent matrices can have different column spaces even though their column ranks agree

Statement refuted

The false claim is: row-equivalent matrices have the same column space.

Facts & Assumptions

Given: Over any field, let A=(1000)A=\begin{pmatrix}1&0\\0&0\end{pmatrix} and B=(0010)B=\begin{pmatrix}0&0\\1&0\end{pmatrix}.

[L1]

Row operations preserve all column relations and column rank, but do not assert equality of the literal column spaces (Elementary row operations preserve every linear relation among the columns and hence preserve column rank).

[L2]

The column space is the span of the columns and column rank is its dimension (Row space, column space, nullspace, row rank, column rank and matrix rank).

Counterexample

technique · direct
1.1

Swapping the two rows of AA gives BB, so the matrices are row equivalent.

L1algebra
2.1

Yet Col(A)=span{(1,0)T}\operatorname{Col}(A)=\operatorname{span}\{(1,0)^{\mathsf T}\} and Col(B)=span{(0,1)T}\operatorname{Col}(B)=\operatorname{span}\{(0,1)^{\mathsf T}\}, which are distinct one-dimensional subspaces. Their column ranks are both 11, exactly as [L1] predicts.

step 1.1L2algebra
CounterexampleConstruction: AI-generatedVerification: AI-generatedprecheck passaudited 2026-08-11Open item page →

Over F2\mathbb F_2, the equation x+y=0x+y=0 has exactly two solutions, so the infinite-field hypothesis is necessary

Statement refuted

The false extension is: over every field, a finite linear system has no solution, one solution, or infinitely many solutions. Over F2\mathbb F_2, the equation x+y=0x+y=0 has exactly two solutions.

Facts & Assumptions

Given: The equation x+y=0x+y=0 with x,yF2=Z/2x,y\in\mathbb F_2=\mathbb Z/2.

[L4]

Z/2\mathbb Z/2 consists of the congruence classes 00 and 11 (The congruence class [a]n[a]_n and the quotient set Z/n\mathbb{Z}/n).

Counterexample

technique · direct
1.1

Exhausting F22\mathbb F_2^2, the sums are 0+0=00+0=0, 0+1=10+1=1, 1+0=11+0=1, and 1+1=01+1=0; hence precisely (0,0)(0,0) and (1,1)(1,1) solve the equation.

L2L3L4L5algebra
2.1

The solution set therefore has exactly two elements, so it is neither a singleton nor infinite. This refutes the extension and shows why [L1] requires an infinite field.

step 1.1L1

Sources