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 by a delegated reviewing agent on the owner's instruction; 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.

Relations, Functions, and Quotients: 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-adaptedprecheck passverified 2026-08-06 (claude-opus-5)Open item page →

A four-pair relation on {∅,{∅},{∅,{∅}}} with its domain, range, field, inverse, restriction, image and self-composite computed

Example

Write u:=∅, v:={∅} and w:={∅,{∅}}; these are pairwise distinct, since u has no element, v has exactly the element u, and w has v as an element while v does not. Put A:={u,v}∪{w} and

R:={(u,v),(v,w)}∪{(w,u),(u,u)}.

Then R is a relation on A with

dom⁡R=ran⁡R=fld⁡R=A,R−1={(v,u),(w,v)}∪{(u,w),(u,u)},

R↾{u}={(u,v),(u,u)},R[{u}∪{v}]=A,R∘R={(u,w),(u,v)}∪{(u,u),(v,u)}∪{(w,v),(w,u)}.

Facts & Assumptions

Given: u:=∅, v:={∅}, w:={∅,{∅}}, A:={u,v}∪{w} and R as displayed.

[L2]

dom⁡R:={ a:∃b (a,b)∈R },ran⁡R:={ b:∃a (a,b)∈R } (Relation, dom⁡R, ran⁡R, fld⁡R, and the specialisations "relation from A to B" and "relation on A").

[L3]

(b,a)∈R−1 holds if and only if (a,b)∈R; (a,c)∈S∘R holds if and only if (a,b)∈R and (b,c)∈S for some b; and (a,b)∈R↾A holds if and only if (a,b)∈R and a∈A (The inverse relation R−1, the composite S∘R, and the restriction R↾A).

[L4]

b∈R[A] holds if and only if (a,b)∈R for some a∈A (The image R[A] and the preimage R−1[B] of a set under a relation).

[L5]

(a,b)=(c,d) if and only if a=c and b=d ((a,b)=(c,d) if and only if a=c and b=d).

[L6]
[L7]

{x,y} is the set whose elements are exactly x and y, and {x}:={x,x} (The unordered pair {x,y} and the singleton {x}={x,x}).

[L8]

There is exactly one set with no elements, written ∅ (There is exactly one set with no elements, written ∅).

[L10]

z∈A×B holds if and only if z=(a,b) for some a∈A and some b∈B (The Cartesian product A×B:={ z∈P(P(A∪B)):∃a∈A ∃b∈B z=(a,b) }).

[L11]

If every z satisfies z∈x if and only if z∈y, then x=y (The Axiom of Extensionality: ∀x ∀y (∀z (z∈x↔z∈y)→x=y)).

Verification

technique · direct
1.1

u, v and w are pairwise distinct and A has exactly them as elements; every element of R is an ordered pair with both coordinates in A, so R is a relation on A, that is R⊆A×A.

L1L6L7L8L9L10L12
2.1

Reading off first coordinates gives u, v, w, so dom⁡R=A; reading off second coordinates gives v, w, u, so ran⁡R=A; and the field, being the union of the two, is A as well.

L2L5L9L11step 1.1
2.2

Reversing each pair gives R−1={(v,u),(w,v)}∪{(u,w),(u,u)}; keeping the pairs whose first coordinate is u gives R↾{u}={(u,v),(u,u)}; and the elements related to u or to v are v, u and w, so R[{u}∪{v}]=A.

L3L4L5L7L9L11step 1.1
2.3

For the self-composite, each pair (a,b) of R is matched with every pair of R whose first coordinate is b: from (u,v) and (v,w) comes (u,w); from (u,u) and the two pairs starting at u come (u,v) and (u,u); from (v,w) and (w,u) comes (v,u); and from (w,u) and the two pairs starting at u come (w,v) and (w,u). These six pairs are exactly the displayed R∘R.

L3L5L9L11step 1.1
3.1

The domain, range, field, inverse, restriction, image and self-composite are as displayed.

step 2.1step 2.2step 2.3∎
ExampleConstruction: Literature-sourcedVerification: AI-adaptedprecheck passverified 2026-08-06 (claude-opus-5)Open item page →

∅ is a relation on every set, is the unique equivalence relation on ∅, is a function ∅→B for every B, is a bijection ∅→∅, and is not a surjection ∅→{∅}

Example

The empty set does the work of five different objects at once.

  • ∅ is a relation, and a relation on A for every set A; its domain, range and field are all ∅.
  • ∅ is the only relation on ∅, and it is an equivalence relation on ∅; so ∅ carries exactly one equivalence relation.
  • ∅ is a function ∅→B for every set B, and it is the only one.
  • ∅ is a bijection ∅→∅.
  • ∅ is not a surjection ∅→{∅}, even though it is an injective function ∅→{∅}.

The last two together are the reason a codomain belongs to the declaration f:A→B rather than to the set f: one and the same set is a bijection under one declaration and a non-surjection under another. The empty function is also the unique element of the empty product.

Facts & Assumptions

Given: the set ∅ and arbitrary sets A and B.

[L2]

dom⁡R:={ a:∃b (a,b)∈R },ran⁡R:={ b:∃a (a,b)∈R } (Relation, dom⁡R, ran⁡R, fld⁡R, and the specialisations "relation from A to B" and "relation on A").

[L3]
[L4]

We write f:A→B, and say f is a function from A to B, when f is a function with dom⁡f=A and ran⁡f⊆B (A function is a relation f with (a,b)∈f and (a,c)∈f implying b=c; f:A→B, the value f(a), domain and codomain).

[L5]

f is injective (one-to-one) if f(x)=f(y) implies x=y, for all x,y∈A (Injection, surjection, bijection).

[L6]

f is surjective (onto) if for every b∈B there is some x∈A with f(x)=b (Injection, surjection, bijection).

[L7]

A binary relation ∼ on A is an equivalence relation when it is reflexive, symmetric and transitive (Equivalence relation, equivalence class, and the quotient set A/∼).

[L8]

R is reflexive on A when (a,a)∈R for every a∈A (Reflexive, irreflexive, symmetric, asymmetric, antisymmetric, transitive, and connex relations on a set).

[L9]

There is exactly one set with no elements, written ∅ (There is exactly one set with no elements, written ∅).

[L10]

{x}:={x,x}, the singleton of x, is the set whose only element is x (The unordered pair {x,y} and the singleton {x}={x,x}).

[L12]
[L13]

z∈A×B holds if and only if z=(a,b) for some a∈A and some b∈B (The Cartesian product A×B:={ z∈P(P(A∪B)):∃a∈A ∃b∈B z=(a,b) }).

[L15]

an element of ∏i∈IAi is a function with domain I that takes its value at each index inside the member carried by that index (The product ∏i∈IAi:={ f:I→⋃i∈IAi ∣ f(i)∈Ai for every i∈I }).

Verification

technique · direct
1.1

∅ has no elements, so "every element is an ordered pair" holds vacuously and ∅ is a relation; ∅⊆A×A for every A, so it is a relation on every set; and no set satisfies the defining conditions for its domain or its range, so both are ∅, hence so is its field.

L1L2L9L12
1.2

A relation on ∅ is a subset of ∅×∅, which is ∅, so ∅ is the only one. It is reflexive on ∅, symmetric and transitive, since each condition quantifies over elements of ∅; hence it is the unique equivalence relation on ∅.

L7L8L9L11L12L13
2.1

∅ is single valued vacuously, has domain ∅ and range ∅⊆B, so ∅:∅→B for every B; and any function with domain ∅ has no elements, so it is ∅.

L3L4L9L12step 1.1
3.1

As a function ∅→∅ it is injective, since the injectivity condition quantifies over elements of the domain, and surjective, since the surjectivity condition quantifies over elements of the codomain and ∅ has none; so it is a bijection.

L5L6L9step 2.1
3.2

As a function ∅→{∅} it is still injective, for the same reason, but not surjective: ∅ is an element of {∅} and no element of the domain is sent to it.

L5L6L9L10step 2.1
3.3

The empty function is the unique element of the empty product: ∏i∈∅Ai={∅}, and its one element is a function with domain ∅.

L14L15step 2.1
4.1

All five descriptions hold of the single set ∅, and the last two differ only in the declared codomain.

step 1.1step 1.2step 2.1step 3.1step 3.2step 3.3∎
CounterexampleConstruction: AI-adaptedVerification: AI-adaptedprecheck passverified 2026-08-06 (claude-opus-5)Open item page →

Relations R and S on a two-element set with S∘R≠R∘S

Statement refuted

Refuted claim: S∘R=R∘S for all relations R and S. With u:=∅, v:={∅}, A:={u,v} and

R:={(u,v)},S:={(v,u)},

the two composites are S∘R={(u,u)} and R∘S={(v,v)}, which are different. Composition of relations is associative (T∘(S∘R)=(T∘S)∘R, (S∘R)−1=R−1∘S−1, (R−1)−1=R, dom⁡(R−1)=ran⁡R, and ΔB∘R=R=R∘ΔA for a relation R from A to B) but not commutative.

Facts & Assumptions

Given: u:=∅, v:={∅}, A:={u,v}, R:={(u,v)} and S:={(v,u)}.

[L1]

(a,c)∈S∘R holds if and only if (a,b)∈R and (b,c)∈S for some b (The inverse relation R−1, the composite S∘R, and the restriction R↾A).

[L3]

(a,b)=(c,d) if and only if a=c and b=d ((a,b)=(c,d) if and only if a=c and b=d).

[L4]
[L5]

{x,y} is the set whose elements are exactly x and y, and {x}:={x,x} (The unordered pair {x,y} and the singleton {x}={x,x}).

[L6]

There is exactly one set with no elements, written ∅ (There is exactly one set with no elements, written ∅).

[L7]

If every z satisfies z∈x if and only if z∈y, then x=y (The Axiom of Extensionality: ∀x ∀y (∀z (z∈x↔z∈y)→x=y)).

[L9]

z∈A×B holds if and only if z=(a,b) for some a∈A and some b∈B (The Cartesian product A×B:={ z∈P(P(A∪B)):∃a∈A ∃b∈B z=(a,b) }).

Counterexample

technique · direct
1.1

u≠v, because v has an element and u has none; and R and S are relations on A, each with one pair, both of whose coordinates lie in A.

L2L5L6L9
2.1

S∘R: the only pair of R is (u,v), and the only pair of S whose first coordinate is v is (v,u), so the only element of S∘R is (u,u).

L1L3L5L7step 1.1
2.2

R∘S: the only pair of S is (v,u), and the only pair of R whose first coordinate is u is (u,v), so the only element of R∘S is (v,v).

L1L3L5L7step 1.1
3.1

(u,u) and (v,v) are different, since equality of ordered pairs would force u=v; so the two composites have different elements and S∘R≠R∘S, while the associativity of composition is unaffected.

L3L4L7L8step 1.1step 2.1step 2.2∎
ExampleConstruction: AI-adaptedVerification: AI-adaptedprecheck passverified 2026-08-06 (claude-opus-5)Open item page →

A two-cell partition of a three-element set, the equivalence relation it induces listed pair by pair, and the quotient set recovered from it

Example

Write u:=∅, v:={∅} and w:={∅,{∅}}, which are pairwise distinct, and put A:={u,v}∪{w}. The collection {{u,v},{w}} has nonempty cells, covers A, and its two cells are disjoint. The equivalence relation it induces on A, namely "a and b lie in the same cell", is

∼  =  {(u,u),(u,v)}∪{(v,u),(v,v)}∪{(w,w)},

with classes [u]=[v]={u,v} and [w]={w}, so that A/∼={{u,v},{w}} is the original collection again.

Facts & Assumptions

Given: u:=∅, v:={∅}, w:={∅,{∅}}, A:={u,v}∪{w}, and ∼ as displayed.

[L1]
[L2]

symmetric: a∼b implies b∼a, for all a,b∈A (Equivalence relation, equivalence class, and the quotient set A/∼).

[L3]

transitive: a∼b and b∼c imply a∼c, for all a,b,c∈A (Equivalence relation, equivalence class, and the quotient set A/∼).

[L4]

[a]  :=  { b∈A  :  a∼b }  ⊆  A (Equivalence relation, equivalence class, and the quotient set A/∼).

[L5]

A/∼  :=  { [a]  :  a∈A } (Equivalence relation, equivalence class, and the quotient set A/∼).

[L7]

{x,y} is the set whose elements are exactly x and y, and {x}:={x,x} (The unordered pair {x,y} and the singleton {x}={x,x}).

[L8]

There is exactly one set with no elements, written ∅ (There is exactly one set with no elements, written ∅).

[L10]

z∈A×B holds if and only if z=(a,b) for some a∈A and some b∈B (The Cartesian product A×B:={ z∈P(P(A∪B)):∃a∈A ∃b∈B z=(a,b) }).

[L11]

(a,b)=(c,d) if and only if a=c and b=d ((a,b)=(c,d) if and only if a=c and b=d).

[L12]
[L13]

If every z satisfies z∈x if and only if z∈y, then x=y (The Axiom of Extensionality: ∀x ∀y (∀z (z∈x↔z∈y)→x=y)).

Verification

technique · direct
1.1

u, v and w are pairwise distinct: u has no element, v has exactly u, and w has v as an element while v does not. So A has exactly those three elements, and ∼ is a relation on A, each of its five listed pairs having both coordinates in A.

L7L8L9L10L12L14L15
2.1

∼ is an equivalence relation on A: it contains (u,u), (v,v) and (w,w), so it is reflexive on A; its pairs with distinct coordinates are (u,v) and (v,u), and each of those has its reverse present, so it is symmetric; and every composable pair of its members has its composite present, since chains through u and v stay inside {u,v} and w relates only to itself.

L1L2L3L11L13step 1.1
3.1

The classes are as stated: [u]={b∈A:u∼b}={u,v}, [v]={u,v} by the pairs (v,u) and (v,v), and [w]={w}. Hence A/∼ has exactly the two elements {u,v} and {w}, which is the collection we started from.

L4L5L7L11L13step 1.1step 2.1
4.1

The collection is therefore a partition of A in the sense of the classes being nonempty, covering A and pairwise equal or disjoint, and it is recovered as the quotient set of the equivalence relation it induces.

L6step 2.1step 3.1∎
ExampleConstruction: AI-adaptedVerification: AI-adaptedprecheck passverified 2026-08-06 (claude-opus-5)Open item page →

A two-to-one function on a four-element set, its kernel, the quotient, and the canonical factorisation computed explicitly

Example

Write u:=∅, v:={∅}, w:={∅,{∅}} and x:={{∅}}; these four are pairwise distinct. Put A:={u,v}∪{w,x} and B:={u,v}, and let

f:={(u,u),(v,u)}∪{(w,v),(x,v)},

so f:A→B takes the value u twice and the value v twice. Then

ker⁡f={(u,u),(u,v)}∪{(v,u),(v,v)}∪{(w,w),(w,x)}∪{(x,w),(x,x)},

A/ker⁡f={{u,v},{w,x}},f[A]=B,

and the canonical factorisation f=ι∘fˉ∘π has π(u)=π(v)={u,v}, π(w)=π(x)={w,x}, fˉ({u,v})=u, fˉ({w,x})=v, and ι=ΔB.

Facts & Assumptions

Given: u,v,w,x, A, B and f as displayed.

[L3]
[L4]

[a]  :=  { b∈A  :  a∼b }  ⊆  A (Equivalence relation, equivalence class, and the quotient set A/∼).

[L5]

A/∼  :=  { [a]  :  a∈A } (Equivalence relation, equivalence class, and the quotient set A/∼).

[L6]

b∈R[A] holds if and only if (a,b)∈R for some a∈A (The image R[A] and the preimage R−1[B] of a set under a relation).

[L7]

{x,y} is the set whose elements are exactly x and y, and {x}:={x,x} (The unordered pair {x,y} and the singleton {x}={x,x}).

[L8]

There is exactly one set with no elements, written ∅ (There is exactly one set with no elements, written ∅).

[L9]

f is surjective (onto) if for every b∈B there is some x∈A with f(x)=b (Injection, surjection, bijection).

[L12]

(a,b)=(c,d) if and only if a=c and b=d ((a,b)=(c,d) if and only if a=c and b=d).

[L13]

dom⁡R:={ a:∃b (a,b)∈R },ran⁡R:={ b:∃a (a,b)∈R } (Relation, dom⁡R, ran⁡R, fld⁡R, and the specialisations "relation from A to B" and "relation on A").

Verification

technique · direct
1.1

The four sets are pairwise distinct: u has no element; v and x each have exactly one, namely u and v respectively, which differ; and w has both u and v, so it differs from all three. Hence A has exactly four elements and B exactly two.

L7L8L10L11
2.1

f is a function A→B: its four pairs have distinct first coordinates, so it is single valued; its domain is A and its range is B. It is surjective, since u=f(u) and v=f(w), so f[A]=B.

L3L6L9L12L13step 1.1
3.1

ker⁡f is as displayed: a pair (a,a′) of elements of A lies in it exactly when f(a)=f(a′), and f takes the value u exactly at u and v, and the value v exactly at w and x; so the pairs are those with both coordinates in {u,v} or both in {w,x}. By the general lemma it is an equivalence relation on A.

L1L12step 1.1step 2.1
4.1

The classes are [u]=[v]={u,v} and [w]=[x]={w,x}, so A/ker⁡f has exactly the two elements {u,v} and {w,x}, and the quotient map sends u and v to the first and w and x to the second.

L4L5L7step 3.1
5.1

The canonical factorisation is as displayed: fˉ sends {u,v}=[u] to f(u)=u and {w,x}=[w] to f(w)=v, and it is a bijection onto f[A]=B; the inclusion ι is the identity on B because f[A]=B; and composing gives back f.

L2L6step 2.1step 3.1step 4.1∎
CounterexampleConstruction: AI-adaptedVerification: AI-adaptedprecheck passverified 2026-08-06 (claude-opus-5)Open item page →

A symmetric and transitive relation on a two-element set that is not reflexive on it

Statement refuted

Refuted claim: a symmetric and transitive relation on a set A is reflexive on A. Write u:=∅ and v:={∅}, put A:={u,v} and

R:={(u,u)}.

R is a relation on A that is symmetric and transitive, and it is not reflexive on A, because (v,v)∉R.

The failure is located exactly at the point of A that R does not touch: R is reflexive on its own field {u}, and symmetry and transitivity constrain R only there.

Facts & Assumptions

Given: u:=∅, v:={∅}, A:={u,v} and R:={(u,u)}.

[L1]

R is reflexive on A when (a,a)∈R for every a∈A (Reflexive, irreflexive, symmetric, asymmetric, antisymmetric, transitive, and connex relations on a set).

[L2]

R is symmetric when (a,b)∈R implies (b,a)∈R, for all a,b∈A (Reflexive, irreflexive, symmetric, asymmetric, antisymmetric, transitive, and connex relations on a set).

[L3]

R is transitive when (a,b)∈R and (b,c)∈R imply (a,c)∈R, for all a,b,c∈A (Reflexive, irreflexive, symmetric, asymmetric, antisymmetric, transitive, and connex relations on a set).

[L5]

dom⁡R:={ a:∃b (a,b)∈R },ran⁡R:={ b:∃a (a,b)∈R } (Relation, dom⁡R, ran⁡R, fld⁡R, and the specialisations "relation from A to B" and "relation on A").

[L6]

There is exactly one set with no elements, written ∅ (There is exactly one set with no elements, written ∅).

[L7]

{x,y} is the set whose elements are exactly x and y, and {x}:={x,x} (The unordered pair {x,y} and the singleton {x}={x,x}).

[L8]

z∈A×B holds if and only if z=(a,b) for some a∈A and some b∈B (The Cartesian product A×B:={ z∈P(P(A∪B)):∃a∈A ∃b∈B z=(a,b) }).

[L9]

(a,b)=(c,d) if and only if a=c and b=d ((a,b)=(c,d) if and only if a=c and b=d).

[L10]

Counterexample

technique · direct
1.1

u≠v, because v has the element u and u has none; so A has exactly the two elements u and v.

L6L7
2.1

R is a relation on A: its only element is the ordered pair (u,u), and both coordinates lie in A, so R⊆A×A.

L4L8L10step 1.1
3.1

The three characteristic sets of R are dom⁡R=ran⁡R=fld⁡R={u}, since (u,u) is its only pair.

L5L7L9L11L12step 2.1
3.2

R is symmetric: the only pair in R is (u,u), whose reversal is itself. It is transitive: the only composable pair of members is (u,u) with (u,u), and the required conclusion (u,u)∈R holds.

L2L3L9step 2.1
4.1

R is reflexive on fld⁡R: the only element of {u} is u, and (u,u)∈R.

L1L7step 3.1
5.1

R is not reflexive on A: v∈A, and (v,v)≠(u,u) because v≠u, so (v,v)∉R. The failure is therefore confined to the single element of A lying outside fld⁡R; symmetry and transitivity say nothing about such a point, which is exactly why they do not imply reflexivity on A.

L1L9step 1.1step 2.1step 3.1step 3.2step 4.1∎
False statementConstruction: Literature-sourcedVerification: AI-adaptedprecheck passverified 2026-08-06 (claude-opus-5)Open item page →

FALSE: a symmetric and transitive relation on a set A is reflexive on A, so reflexivity is redundant in the definition of an equivalence relation

Statement

False statement. If a relation R on a set A is symmetric and transitive, then it is reflexive on A; consequently the reflexivity clause in the definition of an equivalence relation follows from the other two and could be dropped.

Facts & Assumptions

Given: the claim above.

[L1]

R is reflexive on A when (a,a)∈R for every a∈A (Reflexive, irreflexive, symmetric, asymmetric, antisymmetric, transitive, and connex relations on a set).

[L2]

R is symmetric when (a,b)∈R implies (b,a)∈R, for all a,b∈A (Reflexive, irreflexive, symmetric, asymmetric, antisymmetric, transitive, and connex relations on a set).

[L3]

R is transitive when (a,b)∈R and (b,c)∈R imply (a,c)∈R, for all a,b,c∈A (Reflexive, irreflexive, symmetric, asymmetric, antisymmetric, transitive, and connex relations on a set).

[L4]

A binary relation ∼ on A is an equivalence relation when it is reflexive, symmetric and transitive (Equivalence relation, equivalence class, and the quotient set A/∼).

[L6]

z∈A×B holds if and only if z=(a,b) for some a∈A and some b∈B (The Cartesian product A×B:={ z∈P(P(A∪B)):∃a∈A ∃b∈B z=(a,b) }).

[L7]
[L8]

{x,y} is the set whose elements are exactly x and y, and {x}:={x,x} (The unordered pair {x,y} and the singleton {x}={x,x}).

[L9]

There is exactly one set with no elements, written ∅ (There is exactly one set with no elements, written ∅).

Refutation

technique · direct
1.1

The argument that makes the claim look right: given a∈A, take any b with (a,b)∈R; symmetry gives (b,a)∈R, and transitivity applied to (a,b) and (b,a) gives (a,a)∈R.

L1L2L3
1.2

The witness: put u:=∅, v:={∅}, A:={u,v} and R:={(u,u)}. Here u≠v, because v has an element and u has none.

L8L9
2.1

The gap in step 1.1 is the phrase "take any b with (a,b)∈R": no hypothesis supplies such a b. Symmetry and transitivity are conditional on pairs that are already in R, so they constrain R only at points that R relates to something, and say nothing whatever about a point of A that R leaves untouched.

L2L3step 1.1
2.2

R is a relation on A: its only element is the ordered pair (u,u), whose coordinates both lie in A.

L5L6L7step 1.2
2.3

R is symmetric, since its only pair is its own reversal, and transitive, since the only composable pair of its members is (u,u) with (u,u), whose conclusion (u,u)∈R holds.

L2L3step 1.2
3.1

R is not reflexive on A: v is an element of A and (v,v)∉R, since the only element of R is (u,u) and v≠u.

L1L7L8step 1.2step 2.2
4.1

The claim is therefore false, and with it the conclusion drawn from it: the reflexivity clause in the definition of an equivalence relation is not redundant, since R satisfies the other two clauses on A and is not an equivalence relation on A.

L4step 2.1step 2.3step 3.1∎
CounterexampleConstruction: AI-adaptedVerification: AI-adaptedprecheck passverified 2026-08-06 (claude-opus-5)Open item page →

A function f and sets S,T with f[S∩T]⊊f[S]∩f[T]

Statement refuted

Refuted claim: f[S∩T]=f[S]∩f[T] for every function f:A→B and all S,T⊆A. Write u:=∅ and v:={∅}, and take

A:={u,v},B:={u},f:={(u,u),(v,u)},S:={u},T:={v}.

Then S∩T=∅, so f[S∩T]=∅, while f[S]=f[T]={u} and therefore f[S]∩f[T]={u}. The inclusion f[S∩T]⊆f[S]∩f[T] of For f:A→B and S,T⊆A: f[S∪T]=f[S]∪f[T], f[S∩T]⊆f[S]∩f[T] and f[S]∖f[T]⊆f[S∖T]; both inclusions are equalities for all S and T if and only if f is injective is proper here, and it is proper exactly because f is not injective.

Facts & Assumptions

Given: u:=∅, v:={∅}, A:={u,v}, B:={u}, f:={(u,u),(v,u)}, S:={u} and T:={v}.

[L2]

b∈R[A] holds if and only if (a,b)∈R for some a∈A (The image R[A] and the preimage R−1[B] of a set under a relation).

[L3]

We write f:A→B, and say f is a function from A to B, when f is a function with dom⁡f=A and ran⁡f⊆B (A function is a relation f with (a,b)∈f and (a,c)∈f implying b=c; f:A→B, the value f(a), domain and codomain).

[L4]

f is injective (one-to-one) if f(x)=f(y) implies x=y, for all x,y∈A (Injection, surjection, bijection).

[L6]

{x,y} is the set whose elements are exactly x and y, and {x}:={x,x} (The unordered pair {x,y} and the singleton {x}={x,x}).

[L7]

There is exactly one set with no elements, written ∅ (There is exactly one set with no elements, written ∅).

[L8]
[L9]

dom⁡R:={ a:∃b (a,b)∈R },ran⁡R:={ b:∃a (a,b)∈R } (Relation, dom⁡R, ran⁡R, fld⁡R, and the specialisations "relation from A to B" and "relation on A").

Counterexample

technique · direct
1.1

u≠v, since v has an element and u has none; so A has exactly the two elements u and v, and S and T are the two singletons inside it.

L6L7
2.1

f is a function A→B: its two pairs have distinct first coordinates, so it is single valued; its domain is A and its range is {u}=B. It is not injective, since f(u)=u=f(v) while u≠v.

L3L4L8L9step 1.1
2.2

S∩T has no element, since an element would have to equal both u and v; so S∩T=∅ and f[S∩T]=∅, no element of ∅ being related to anything.

L2L5L6L7step 1.1
3.1

f[S]={u} and f[T]={u}, since f(u)=u and f(v)=u; hence f[S]∩f[T]={u}.

L2L5L6step 2.1
4.1

The general inclusion holds and is proper here: u lies in f[S]∩f[T] and not in f[S∩T], which has no element at all.

L1L7L10L11step 2.2step 3.1∎
ExampleConstruction: AI-generatedVerification: AI-adaptedprecheck passverified 2026-08-06 (claude-opus-5)Open item page →

For any indexed family the product ∏i∈IP(Xi) contains the constant function with value ∅, and ∏i∈I{i} has exactly one element

Example

Two families whose products can be shown nonempty by writing an element down, with no choice principle involved.

  • Let (Xi)i∈I be any indexed family. Then (P(Xi))i∈I is an indexed family, and the constant function c:={ (i,∅):i∈I } is an element of ∏i∈IP(Xi). So that product is nonempty for every I and every family, even when some Xi is empty.
  • Let I be any set and let ({i})i∈I be the family carrying the singleton of the index at each index. Then ∏i∈I{i}={ΔI}: its only element is the identity relation on I.

Neither construction selects anything: in the first the value is the same set at every index, and in the second the value at i is forced to be i.

Facts & Assumptions

Given: an indexed family (Xi)i∈I and a set I.

[L1]

an element of ∏i∈IAi is a function with domain I that takes its value at each index inside the member carried by that index (The product ∏i∈IAi:={ f:I→⋃i∈IAi ∣ f(i)∈Ai for every i∈I }).

[L2]

An indexed family with index set I is a function A with dom⁡A=I (An indexed family (Ai)i∈I is a function with domain I; {Ai:i∈I} is its range).

[L3]

z∈P(x) holds if and only if z⊆x (The power set P(x)={ z:z⊆x }).

[L5]
[L6]

There is exactly one set with no elements, written ∅ (There is exactly one set with no elements, written ∅).

[L9]

{x}:={x,x}, the singleton of x, is the set whose only element is x (The unordered pair {x,y} and the singleton {x}={x,x}).

[L11]

For any parameters pˉ and any set x, there is a set y whose elements are exactly the elements z of x for which φ(z,pˉ) holds (The Axiom Schema of Separation: for each formula φ, ∀pˉ ∀x ∃y ∀z (z∈y↔(z∈x∧φ(z,pˉ)))).

[L12]

z∈A×B holds if and only if z=(a,b) for some a∈A and some b∈B (The Cartesian product A×B:={ z∈P(P(A∪B)):∃a∈A ∃b∈B z=(a,b) }).

[L13]

dom⁡R:={ a:∃b (a,b)∈R },ran⁡R:={ b:∃a (a,b)∈R } (Relation, dom⁡R, ran⁡R, fld⁡R, and the specialisations "relation from A to B" and "relation on A").

[L14]

Verification

technique · direct
1.1

(P(Xi))i∈I is an indexed family: separating inside I×P(P(⋃i∈IXi)) with the formula ∃i ∃w (z=(i,w)∧i∈I∧w=P(Xi)) gives a set, which is single valued and has domain I; the ambient set contains each P(Xi), since every subset of Xi is a subset of ⋃i∈IXi.

L2L3L5L11L12L13L14
1.2

Similarly ({i})i∈I is an indexed family, obtained by separating inside I×P(I), since {i}⊆I for i∈I.

L2L3L5L9L11L12L13
2.1

The constant function c:={ (i,∅):i∈I } is a set, by separating inside I×{∅}; it is single valued, has domain I, and c(i)=∅ for every i∈I. Since ∅⊆Xi, we have ∅∈P(Xi) for every i, so c lies in ∏i∈IP(Xi) and that product is nonempty.

L1L3L4L5L6L9L11L12L13step 1.1
2.2

ΔI is a function with domain I and ΔI(i)=i, and i is the only element of {i}, so ΔI∈∏i∈I{i}. Conversely any f in that product has domain I and f(i)∈{i}, hence f(i)=i for every i∈I, so f and ΔI are functions with the same domain agreeing everywhere and are equal.

L1L5L7L8L9step 1.2
3.1

Both products are therefore nonempty, and the second has exactly one element; when I=∅ both statements agree with the general computation of the empty product, whose single element is the empty function.

L10step 2.1step 2.2∎

Sources