Section-Retraction Pairs
Definition
A section-retraction pair is a pair of functions s:B→A and r:A→B such that:
r∘s=idB
- s is called the section (or left inverse)
- r is called the retraction (or right inverse)
Intuition
- s embeds B into A
- r projects back from A to B
- Composing r after s returns to where we started in B

Examples
- B↪A↠B where s is inclusion and r is identity on B
- s:N→Z, s(n)=n; r:Z→N, r(n)=∣n∣ fails since r(s(−1)) is undefined
- Correct: s:N→Z, s(n)=n; r:Z→N, r(n)=max(n,0)
Properties
Section is Injective
If s is a section of r, then s is injective.
Proof: If s(b1)=s(b2), then b1=r(s(b1))=r(s(b2))=b2.
Retraction is Surjective
If r is a retraction of s, then r is surjective.
Proof: For any b∈B, b=r(s(b)), so b is in the image of r.
Converse Requires Choice
If s:B→A is injective, there exists a retraction r:A→B (on image of s) iff we can “pick” values for elements outside the image.
This requires the Axiom of Choice in general.
Idempotents
Definition
A function e:A→A is idempotent if e∘e=e.
Intuition
Applying e once or twice gives the same result. e “freezes” elements to a fixed form.
Examples
- Projection (x,y)↦(x,0) is idempotent
- Identity is idempotent
- Constant function x↦c is idempotent iff c=c (always true)
Examinable Proof: Idempotents and Section-Retraction Pairs
Theorem: There is a bijection between:
- Section-retraction pairs (s,r) with s:B→A, r:A→B, r∘s=idB
- Idempotents e:A→A
From Section-Retraction to Idempotent
Given (s,r) with r∘s=idB, define e=s∘r:A→A.
Idempotence:
e∘e=s∘r∘s∘r=s∘idB∘r=s∘r=e
From Idempotent to Section-Retraction
Given idempotent e:A→A, define:
- B=Im(e)={e(a):a∈A}
- r:A→B by r(a)=e(a)
- s:B↪A the inclusion
Verification: r(s(b))=r(b)=e(b).
If b∈B, then b=e(a) for some a. So e(b)=e(e(a))=e(a)=b by idempotence.
Thus r∘s=idB.
These are Inverses
Starting with (s,r): the associated idempotent s∘r has image isomorphic to B (via s).
Starting with e: the section-retraction pair recovers e as s∘r.
Splitting Idempotents
The process of going from e to (s,r) is called splitting the idempotent.
The set B=Im(e) is the “fixed points” of e, and e is the identity on B.
Summary
- Section-retraction: r∘s=idB
- Sections are injective; retractions are surjective
- Idempotent: e∘e=e
- Bijection: (s,r)↦s∘r and e↦(inclusion,e∣Im(e))