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.

✓ 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×3 system row reduces to a unique solution

Example

Over R, the system x+y+z=6,2x−y+z=3,x+2y−z=2 has the unique solution (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 0 from row 1, subtract row 0 from row 2, swap rows 1,2, add three times row 1 to row 2, scale row 2 by −1/7, clear above its pivot, and then clear above the pivot in column 1; the result is [I3∣(1,2,3)T].

L1L2algebra
2.1

The RREF gives the unique solution. Direct substitution yields 1+2+3=6, 2−2+3=3, and 1+4−3=2.

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

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

Example

The real system x+y+z=1,2x+2y+2z=3,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).

[L2]

Consistency is equivalent to equality of coefficient and augmented ranks (The system Ax=b is consistent if and only if rank⁡(A)=rank⁡([A∣b])).

Verification

technique · direct
1.1

Subtracting twice row 0 from row 1 gives the row (0,0,0∣1), which normalizes to a pivot in the augmented column and represents 0=1.

L1algebra
2.1

The coefficient matrix has rank 2 because rows (1,1,1) and (1,−1,0) are independent, while the augmented matrix has the additional pivot and rank 3. 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, the system x+2y−z=3,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,t∈R.

Facts & Assumptions

Given: The displayed real system.

[L2]

A nonempty solution set is a particular solution plus the nullspace (If Ax=b has one solution xp, then its full solution set is the affine subspace xp+N(A)).

[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+2y−z=3. Put y=s and z=t; then the pivot variable is x=3−2s+t.

L1L3algebra
2.1

This is the displayed affine form. The base point maps to 3, while each direction maps to 0, so direct multiplication verifies that (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×3 inverse computed by row reducing [A∣I]

Example

For A=(110011001), row reduction of [A∣I3] gives A−1=(1−1101−1001).

Facts & Assumptions

Given: The displayed real matrix A.

[L1]

Reducing [A∣I] to [I∣B] gives B=A−1 (Row reducing [A∣I] yields [I∣A−1] exactly when A is invertible).

Verification

technique · direct
1.1

Starting from [A∣I3], replace row 1 by row 1 minus row 2, then replace row 0 by row 0 minus the new row 1. The left block becomes I3 and the right block becomes the displayed matrix B.

L1algebra
2.1

Direct multiplication gives AB=I3 and BA=I3: the only off-diagonal sums are −1+1, 1−1, and −1+1. Hence B=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, the matrix A=(1110) has distinct row echelon forms R=(110−1),S=(1101), but both reduce to I2.

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 1 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 F, an elementary row operation interchanges two distinct rows, replaces Rp by cRp for a nonzero c∈F, or replaces Rp by Rp+cRq for distinct p,q and c∈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 R1←R1+(−1)R0 is an elementary row operation of the third kind and takes A to R; the scaling R1←(−1)R1 is one of the second kind, −1 being nonzero in Q, and takes R to S. So A is row equivalent to each of R and S by [L3]. Each has no zero row, leading entries in columns 0 and 1 respectively, and 0 below the leading entry of its first row, so each is in row echelon form by [L2]. Finally R≠S because −1≠1 in Q. The ground field matters here and not elsewhere in the example: over F2 one has −1=1, so R and S coincide and this matrix exhibits no failure of uniqueness.

L2L3algebra
2.1

From S, the replacement R0←R0+(−1)R1 is again elementary of the third kind and gives I2, so I2 is row equivalent to A by [L3] and step 1.1; its two leading entries equal 1 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 R to I2 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), the real system Atx=b has rank 2 and the unique solution (2,0) when t≠1, while at t=1 it has rank 1 and the affine line of solutions (2−s,s).

Facts & Assumptions

Given: A real parameter t 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 0 from row 1 without dividing by the parameter; the augmented matrix becomes (1120t−10).

L1L2L3cases
2.1

If t≠1, the second row has a pivot, so the rank is 2, y=0, and x=2.

step 1.1assume-case generic
2.2

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

step 1.1assume-case exceptional
3.1

The alternatives t=1 and t≠1 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×3 real matrix factored explicitly into elementary matrices

Example

The matrix A=(110011001) has the elementary factorisation A=(100011001)(110010001).

Facts & Assumptions

Given: The displayed real matrix A.

[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 Er⋯E1A=I reverses to an elementary factorisation (A finite row reduction from A to B is encoded by B=Er⋯E1A).

Verification

technique · direct
1.1

Subtract row 2 from row 1, then subtract the new row 1 from row 0; these elementary operations reduce A to I3, so their matrices satisfy E2E1A=I3.

L1L2algebra
2.1

Reversing the operations gives the two displayed row-addition matrices. Their direct product is A, 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) and B=(0010).

[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 A gives B, so the matrices are row equivalent.

L1algebra
2.1

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

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

Over F2, the equation x+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, the equation x+y=0 has exactly two solutions.

Facts & Assumptions

Given: The equation x+y=0 with x,y∈F2=Z/2.

[L4]

Z/2 consists of the congruence classes 0 and 1 (The congruence class [a]n and the quotient set Z/n).

Counterexample

technique · direct
1.1

Exhausting F22, the sums are 0+0=0, 0+1=1, 1+0=1, and 1+1=0; hence precisely (0,0) and (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