Chain Obstructions and Deflation in the Invariant Subspace Problem
Reformulates the invariant subspace problem as a fixed-point problem on the lattice of closed subspaces and provides a structural analysis of chain-based methods. Proves that chains from both extremes of the lattice are forced to triviality — the Adámek construction and its dual are both structurally obstructed. Identifies stabilization and properness as jointly sufficient conditions for nontrivial invariant subspaces, and proves three new sufficient conditions: a deflation theorem, a lattice intermediate value theorem, and a descending chain condition theorem. The deflation theorem abstracts the order-theoretic component of Lomonosov's theorem. Independence results show the abstract lattice axiom system neither forces nor precludes nontrivial fixed points. Formalized in Lean 4 with zero sorry.
The ISP formalization (four files within the multi-paper code archive
(Close 2026e)) is available at DOI: 10.5281/zenodo.18915083. The Zenodo
record covers all three companion papers
(Close 2026b, 2026c); the ISP formalization comprises four files
(InvariantSubspace.lean, InvariantSubspaceOrbits.lean,
InvariantSubspaceDeep.lean, ISPOperatorBridge.lean) within the
larger repository.
1 Introduction
The invariant subspace problem (ISP) asks whether every bounded linear operator on a separable infinite-dimensional complex Hilbert space has a nontrivial closed invariant subspace—a closed subspace with and . The problem has been open for Hilbert spaces since at least the 1950s, despite major partial results for compact operators (Aronszajn and Smith 1954), operators commuting with compact operators (Lomonosov 1973), and various spectral conditions (Brown et al. 1979). Counterexamples exist for general Banach spaces (Enflo 1987; Read 1985), but the Hilbert space case remains unresolved.
We approach the ISP as a fixed-point problem on a lattice. The lattice of closed subspaces of , ordered by inclusion, is a complete lattice with bottom element and top element . The orbit-closure map is a monotone endomorphism of satisfying and . The fixed points of are precisely the closed invariant subspaces of , and the ISP asks whether a fixed point exists strictly between and .
This is a fixed-point problem—but the standard fixed-point theorems fail to resolve it. Tarski’s theorem (Tarski 1955) guarantees that has fixed points, but they could all be trivial ( or ). The Adámek initial algebra construction (Adámek 1974) builds the least fixed point by iterating from , but since , the chain is constant at : the least fixed point is trivial. The challenge is finding intermediate fixed points.
This paper provides a structural analysis of what chain-based methods can and cannot achieve for the ISP. Our main results are:
-
Extremal chains are obstructed. The Adámek chain from is constant at (Theorem 3.1), and its dual from is constant at (Theorem 3.3). These are structural features, not accidental failures.
-
Chain classification. Every chain-based approach to the ISP falls into one of three types: bottom-up, top-down, or intermediate. The first two produce only trivial results; orbit chains from intermediate starting points are the unique viable chain-based method (Theorem 3.5).
-
Three new sufficient conditions.
- The deflation theorem: if a proper pre-fixed point exists whose deflation chain avoids , there is a nontrivial fixed point (Theorem 5.3).
- The lattice intermediate value theorem: if a post-fixed point lies below a pre-fixed point , there is a fixed point in (Theorem 6.1).
- The DCC theorem: under the descending chain condition, a proper pre-fixed point with non-collapsing deflation yields a nontrivial fixed point (Theorem 6.3).
-
Independence. The existence of nontrivial fixed points is independent of the abstract deep-lattice axiom system: both ISP success and ISP failure are consistent with any enrichment of the lattice structure that does not introduce analytic hypotheses (Theorem 7.1). These independence results concern the abstract lattice axiom system only; they are not independence results for the Hilbert-space invariant subspace problem itself.
The deflation theorem recovers the order-theoretic template abstracted from Lomonosov’s theorem (Lomonosov 1973): the compact-operator commutation hypothesis provides the proper pre-fixed point that the deflation theorem requires (Section 5.4).
These results identify where the difficulty of the ISP actually lives—not in the existence of fixed points (Tarski guarantees those) but in their location between the extremes. The lattice framework cannot resolve the ISP on its own (the independence results show this), but it precisely identifies what additional analytic input is needed: an intermediate starting point whose orbit chain stabilizes below .
All results in this paper are formalized in Lean 4 with no sorry statements
(unresolved proof obligations). The formalization spans four files totaling
approximately 4000 lines of verified code.
2 The Lattice Framework
2.1 The subspace lattice
Let be a bounded linear operator on a Hilbert space . The collection of closed subspaces of , ordered by inclusion, forms a complete lattice with:
- (the trivial subspace),
- (the whole space),
- (closure of the sum),
- (intersection).
Define the orbit-closure map by
Then is monotone ( implies ), (since for all ), and (since for all , so ). The fixed points of —subspaces with —are precisely the closed invariant subspaces of .
The ISP asks: does there exist with and ?
2.2 Abstract lattice axioms
We axiomatize the structure needed for the ISP analysis. The minimal axiom
system (corresponding to the Lean typeclass InvariantLattice) requires:
Definition 2.1 (Invariant lattice). An invariant lattice is a bounded partial order with , equipped with a monotone endomorphism satisfying .
The reflexivity, transitivity, and antisymmetry of , together with and for all , are part of the axioms. The condition ensures the underlying space is nonzero.
For deeper results, we enrich this structure progressively:
Definition 2.2 (Orbit lattice). An orbit lattice extends an invariant lattice with:
- Binary join satisfying the usual least-upper-bound properties.
- Countable directed join - with each element below the join, and the join least among upper bounds.
- Scott continuity: -- for every non-decreasing chain .
Definition 2.3 (Deep lattice). A deep lattice extends an orbit lattice with:
- Binary meet satisfying the usual greatest-lower-bound properties.
- Countable decreasing infimum - with each element above the infimum, and the infimum greatest among lower bounds.
- Co-continuity: -- for every non-increasing chain .
- .
Each axiom system is formalized as a Lean 4 typeclass (InvariantLattice,
OrbitLattice, DeepLattice). Every theorem states its required axiom level
explicitly.
2.3 Pre-fixed and post-fixed points
Definition 2.4. Let be an invariant lattice.
- is pre-fixed if . (Lean:
IsPreFixed) - is post-fixed if . (Lean:
IsPostFixed) - is a fixed point if . (Lean:
IsFixedPoint) - is nontrivial if and . (Lean:
IsNontrivial) - is a proper pre-fixed point if is pre-fixed, , and . (Lean:
IsProperPreFixed)
Every fixed point is both pre-fixed and post-fixed, and the converse holds by antisymmetry. Pre-fixed points are “upper bounds on invariance”: contracts them. Post-fixed points are “lower bounds on invariance”: expands them.
In the abstract lattice setting, post-fixed means . For the concrete orbit-closure map, this becomes , which is automatic since the term contributes itself. Thus, in the operator case, the nontrivial structural content lies not in post-fixedness alone but in pre-fixedness (, i.e., -invariance), stabilization, and interval constraints.
Proposition 2.5. In any deep lattice, and are both fixed points of .
Proof. by axiom, and by axiom.
3 The Extremal Obstructions
This section establishes the first main result: standard chain methods from the extremes of the lattice are structurally incapable of finding nontrivial fixed points.
3.1 The Adámek chain from ⊥
The Adámek initial algebra construction (Adámek 1974) builds the least fixed point of an endofunctor by iterating from the initial object. In our setting, this gives the chain
Theorem 3.1 (Adámek chain triviality). In any invariant lattice with , the Adámek chain is constant at : for all .
Proof. By induction. The base case is immediate. For the inductive step, if , then .
Lean name: adamek_chain_trivial (in InvariantSubspace).
The standard categorical construction for finding least fixed points gives only the trivial fixed point when applied to the ISP. This is not a failure of the construction—it is a structural feature. The orbit closure of is , so iterating from never leaves .
Corollary 3.2. No iterate of the Adámek chain from is nontrivial.
Lean name: adamek_insufficient_for_isp.
3.2 The dual obstruction from ⊤
The dual construction iterates downward from : the chain
Theorem 3.3 (Dual chain triviality). In any deep lattice with , the descending chain from is constant at : for all .
Proof. By induction, identical in structure to Theorem 3.1. If , then .
Lean name: dual_chain_trivial (in InvariantSubspaceDeep).
Corollary 3.4. No element of the descending chain from is nontrivial.
Lean name: dual_chain_insufficient.
3.3 The chain classification theorem
Theorem 3.5 (Chain classification). In a deep lattice, let be any chain satisfying for all . If , then for all .
Proof. By induction on . The base case holds by hypothesis. For the inductive step, if , then ; if , then . In either case .
Lean name: chain_from_extreme_trivial.
Corollary 3.6. No iterative -chain starting from or produces a nontrivial element.
Lean name: no_nontrivial_from_extremes.
This theorem classifies all possible chain-based proof strategies for the ISP into three types:
(a) Bottom-up (Adámek): . Killed by . (b) Top-down (dual Adámek): . Killed by . (c) Intermediate orbit chains: with . The only viable type.
The difficulty of the ISP is not in the chain method itself—it is in choosing the starting point.
4 Orbit Chains and the Reduction to Two Conditions
4.1 Orbit chains from intermediate starting points
Given with , define the orbit chain from :
Lean name: orbitChain.
The join ensures the chain is non-decreasing: for all (since ). This is stronger than pure -iteration, which need not be monotone without the join. In the concrete Hilbert space setting where is extensive ( for all , since the orbit closure contains itself), the join is redundant: . The two constructions coincide for the orbit-closure map.
Proposition 4.1. The orbit chain is non-decreasing, and for all .
Lean names: orbitChain_mono, le_orbitChain.
The orbit closure is the -sup of the chain: .
Proposition 4.2. In any orbit lattice, the orbit closure is -invariant: .
Proof. By Scott continuity, . Each , so .
Lean name: orbit_closure_invariant.
4.2 The two-condition reduction
Theorem 4.3 (Orbit chain nontriviality). In an orbit lattice, let with . Suppose:
(i) Stabilization: there exists with . (ii) Properness: for all .
Then there exists a nontrivial -invariant element with , , and .
Proof. Let be the stabilization index. Then , which implies (since the join did not grow). The element is nonzero because and . It is proper by hypothesis (ii).
Lean name: orbit_nontrivial_if_bounded.
The ISP thus reduces to: for every bounded operator on separable Hilbert space, does there exist an intermediate starting point whose orbit chain satisfies both stabilization and properness?
Theorem 4.4 (Orbit failure dichotomy). Assume excluded middle. If the ISP fails (no nontrivial -invariant element exists), then for every , the orbit chain from either never stabilizes or reaches .
Lean name: orbit_failure_modes.
The converse direction is immediate: any nontrivial invariant subspace is recovered by the orbit chain from itself, which stabilizes at step 0 (since when ).
Lean name: invariant_is_orbit_fixed.
4.3 The operator-lattice bridge
The operator-lattice bridge (ISPOperatorBridge) formalizes the translation
from operator-theoretic hypotheses to lattice conditions. Each classical
operator class maps to a specific lattice path:
-
Compact operators provide starting points through eigenspaces: if a nonzero compact operator commuting with has a nonzero eigenvalue (guaranteed by Riesz theory when is not quasinilpotent), the eigenspace is finite-dimensional, -invariant, and proper. Since -invariance makes this eigenspace already a fixed point of , the deflation chain is trivially constant. The DCC theorem (Theorem 6.3) applies (finite-dimensional subspaces satisfy DCC); non-collapse is a separate hypothesis in the formalization. The quasinilpotent case (spectrum , e.g., the Volterra operator) falls outside this eigenspace template; Lomonosov’s proof handles it via Schauder’s theorem rather than eigenspaces. (Lean:
compact_yields_deflation_setup,compact_isp) -
Normal operators provide invariant spectral subspaces directly through spectral projections—these are fixed points of by construction, not by the deflation mechanism. The spectral theorem gives simultaneous pre-fixed and post-fixed data, which trivializes the lattice IVT to the degenerate interval for a fixed point . (Lean:
normal_isp,normal_gives_ivt_data) -
Polynomially compact operators (where is compact for some nonzero polynomial ) follow the same lattice path as compact operators: the eigenspaces of refine to -invariant subspaces, giving proper pre-fixed points with DCC. (Lean:
polycompact_isp) -
General operators (no algebraic hypothesis) admit only the orbit chain path: both stabilization and properness must be supplied as hypotheses, neither following from general monotonicity. (Lean:
general_isp)
Three non-example models demonstrate that each hypothesis is necessary:
- Two-element lattice (, ): no
intermediate elements exist, so all lattice paths fail.
(Lean:
two_no_isp) - Four-element lattice (,
, ): a proper
pre-fixed point exists () but the deflation chain collapses
to , showing non-collapse is essential.
(Lean:
four_deflation_collapses,four_no_nontrivial_fixed) - ThreeB lattice (,
): a post-fixed point exists but no proper pre-fixed
point, showing the lattice IVT requires both sides.
(Lean:
postfixed_insufficient_for_isp)
The classification is exhaustive (Lean: classification_exhaustive) and the
non-examples are jointly independent (Lean: nonexamples_independent). The
point of the bridge is not to reprove the analytic theorems but to isolate the
order-theoretic slot where each analytic argument enters.
5 The Deflation Theorem
5.1 Pre-fixed points as starting candidates
A proper pre-fixed point satisfies with . Such a is “too big” for : the map contracts it. Define the deflation chain from :
Lean name: deflationChain.
Proposition 5.1. If is pre-fixed, the deflation chain is non-increasing: for all .
Proof. By induction. The base step: by the pre-fixed hypothesis. The inductive step: if , then by monotonicity of .
Lean name: deflationChain_decreasing.
The deflation infimum is . By co-continuity:
The last equality holds because shifting a non-increasing chain by one does not change its infimum: since is non-increasing, any lower bound of is also a lower bound of , giving .
Proposition 5.2. If is pre-fixed, the deflation infimum is a fixed point of .
Lean name: deflationInf_is_fixed.
5.2 The deflation theorem
Theorem 5.3 (Deflation theorem). In a deep lattice, let be a pre-fixed point with , and let be the deflation infimum. If , then is a nontrivial fixed point: , , and .
Proof. The element is a fixed point by the preceding proposition. The hypothesis gives . For : since (as the infimum of a chain starting at ) and , if then , giving by antisymmetry with , a contradiction.
Lean name: deflation_theorem.
The key condition is that the deflation chain must not converge all the way down to . If it stops above , the limit is a nontrivial invariant subspace. If it reaches , the theorem gives no information.
The unconditional form packages this:
Corollary 5.4. If there exists a proper pre-fixed point with , the ISP holds.
Lean name: deflation_gives_isp.
5.3 Novelty of the deflation theorem
Prior sufficient conditions for the ISP—compactness (Aronszajn and Smith 1954), normality, spectral decomposition—are analytic: they use properties of the operator specific to Hilbert space. The deflation theorem is purely order-theoretic. It works in any complete lattice with a monotone, co-continuous endomorphism satisfying and . No inner product, no topology, no compactness. The deflation infimum being a fixed point is a consequence of Knaster–Tarski applied to ; the novelty is identifying deflation non-collapse as a sufficient condition for the ISP and demonstrating its connection to Lomonosov’s theorem, not the underlying lattice mechanism.
The analytic content enters only when verifying the hypotheses: does a specific operator have a proper pre-fixed point whose deflation chain avoids ? The deflation theorem separates the ISP into two questions:
(i) Existence: Does a proper pre-fixed point exist? (Is there a proper closed subspace with ?) (ii) Non-collapse: Does the deflation chain avoid ? (Does the sequence fail to converge to ?)
Question (i) is often easy—many operators have proper invariant subspaces for routine reasons (kernels of for eigenvalues , for instance). Question (ii) is the hard part: it requires some form of “non-nilpotency” of the restriction of to .
5.4 Connection to Lomonosov’s theorem
Lomonosov’s theorem (Lomonosov 1973) states: if commutes with a nonzero compact operator , then has a nontrivial invariant subspace. The original proof uses Schauder’s fixed-point theorem to find a fixed point of a map on a compact convex set.
The order-theoretic connection is as follows. When is not quasinilpotent,
the compact-operator hypothesis provides a starting point: has a nonzero
eigenvalue (by Riesz theory), and is a
finite-dimensional invariant subspace of . Since commutes with ,
the subspace is -invariant—hence already a fixed
point of , not merely a pre-fixed point. It is proper because is compact
on an infinite-dimensional space (so its eigenspaces are finite-dimensional,
hence ). Since the starting point is already a fixed point, the
deflation chain is trivially constant, so the DCC theorem is vacuously applicable but adds nothing. Non-collapse is taken as a separate hypothesis in the
formalization (Lean: compact_isp), not derived from compactness. The
formalization separates non-collapse as an explicit hypothesis from the
compact-operator data, maintaining this distinction at the type level.
When is quasinilpotent (spectrum ), this eigenspace route is
unavailable. Lomonosov’s original proof handles this case via Schauder’s
fixed-point theorem on a compact convex set, which does not pass through the
eigenspace-to-lattice translation. The formalization takes the eigenspace data
as axiomatic input (CompactOperatorData), so it correctly restricts to the
non-quasinilpotent case.
The point of the connection is not that deflation discovers the subspace but that the order-theoretic template—proper pre-fixed point with non-collapsing deflation—is exactly what the compact-operator hypothesis provides. The analytic content of Lomonosov’s theorem—that commutation with a compact operator supplies this starting point—is not replaced but contextualized: the deflation theorem identifies what that analytic hypothesis is doing in order-theoretic terms.
We emphasize the precise scope of this connection. The deflation theorem is more general in the lattice setting: it applies to any proper pre-fixed point with non-collapsing deflation, regardless of the source. But Lomonosov’s theorem includes the analytic step of constructing the pre-fixed point from the compact operator, which the lattice framework does not address. This does not reprove Lomonosov’s theorem. It isolates the order-theoretic endpoint of the argument: once analytic input supplies a proper pre-fixed point with non-collapsing deflation, the lattice conclusion follows.
6 The Lattice IVT and DCC Theorem
6.1 Lattice intermediate value theorem
Theorem 6.1 (Lattice intermediate value theorem). In a deep lattice, let be post-fixed () and be pre-fixed () with . Then there exists a fixed point with .
Proof. Consider the deflation chain from : , . We claim for all . The base case is . For the inductive step, if , then using the post-fixed hypothesis and monotonicity. The deflation infimum is a fixed point (by Proposition 5.2), and (since is a lower bound for the chain) and (as the infimum of a chain starting at ).
Lean name: lattice_ivt.
Corollary 6.2 (Nontrivial IVT). If additionally and , then the fixed point is nontrivial.
Proof. because and . because and .
Lean name: nontrivial_ivt.
This is a constructive localization of Tarski’s theorem to a specific interval. Tarski says fixed points exist; the lattice IVT says where to find one when you have both a post-fixed and a pre-fixed point. In ISP terms: if you can find both a “too small” subspace ( expands it) and a “too big” subspace ( contracts it) with the small one contained in the big one, there is an invariant subspace between them. This is the order-theoretic analogue of the intermediate value theorem: a monotone function that goes up and then comes down must cross the diagonal.
The IVT also interacts with orbit chains from Section 4. The orbit chain
builds up from a starting point; the deflation chain builds down. When
with pre-fixed, one can show by
induction (Lean: orbitClosure_below_prefixed). This gives the interval
: the orbit closure and
the deflation infimum squeeze toward the fixed points from opposite directions.
For the ISP, this means that finding a compatible post-fixed/pre-fixed pair not
only guarantees a fixed point exists in the interval—it also constrains where
the orbit chain must converge, narrowing the search.
6.2 The DCC theorem
Theorem 6.3 (DCC theorem). In a deep lattice satisfying the descending chain condition (every non-increasing chain stabilizes), let be a pre-fixed point with . If the deflation chain from stabilizes at a point different from , then the ISP holds.
Proof. By DCC, the deflation chain stabilizes at some index : , so is a fixed point. The non-collapse hypothesis gives . For : since and , if then , giving , a contradiction.
Lean name: dcc_deflation_isp.
The DCC holds automatically in the lattice of subspaces of a finite-dimensional space (all descending chains of subspaces are finite). In this setting, the deflation chain always stabilizes; the only question is whether it reaches —which is the non-nilpotency condition. The DCC theorem thus connects the deflation framework to finite-dimensional invariant subspace theory.
The precise dividing line is:
- DCC + non-nilpotent restriction: ISP holds. The deflation chain stabilizes above .
- DCC + nilpotent restriction: The deflation chain reaches . No information.
7 Independence Results
7.1 Nontrivial fixed points are independent of the deep-lattice axioms
Theorem 7.1 (Independence). The existence of nontrivial fixed points is independent of the abstract deep-lattice axiom system: both ISP success and ISP failure are consistent with the deep lattice axioms.
Proof. We exhibit two models.
Model 1 (ISP failure): The two-element lattice with . This satisfies all deep lattice axioms ( is monotone, , , is both Scott-continuous and co-continuous). Both elements are fixed points, but neither is nontrivial—there are no intermediate elements.
Model 2 (ISP success): The three-element lattice with and . This satisfies all deep lattice axioms, and is a nontrivial fixed point.
Lean name: isp_independent_deep.
The two-element lattice witnesses failure vacuously — no intermediate elements exist. A richer failure model (e.g., a four-element lattice where maps all intermediate elements to ) can also be constructed, but the two-element model suffices for formal independence.
This result appears at three levels of axiom strength, all compiling at
[propext] only (Layer 0):
InvariantLattice:isp_independent_of_lattice(inInvariantSubspace)OrbitLattice:orbit_isp_independent(inInvariantSubspaceOrbits)DeepLattice:isp_independent_deep(inInvariantSubspaceDeep)
(Earlier versions of these proofs required Classical.choice; the current
formalization eliminates this dependency via a typeclass refactoring
described in Section 9.2.)
Classical.choice was eliminated via an OrbitLattice typeclass split that
removed the choice dependency from the model constructions. The same two
models (two-element and three-element lattices) work at every level.
7.2 What the independence results show
The independence results demonstrate that the open status of the ISP is not an artifact of weak axioms. Even with the full deep lattice axiom system—monotonicity, Scott continuity, co-continuity, meets, joins, -sup, -inf, , —the existence of nontrivial fixed points remains underdetermined. Additional analytic hypotheses (compactness, spectral properties, the specific geometry of Hilbert space) are genuinely needed.
This is a model-theoretic underdetermination result for the abstract lattice framework, not a set-theoretic independence result for the Hilbert-space ISP itself.
7.3 What resolves ISP in each direction
The following additional hypotheses force ISP success:
- Compact operator hypothesis (Aronszajn–Smith (Aronszajn and Smith 1954)): eigenspace provides a starting point where compactness guarantees stabilization.
- Normal operator hypothesis: spectral decomposition provides invariant spectral subspaces directly.
- Proper pre-fixed point with deflation avoiding (Theorem 5.3).
- Post-fixed below pre-fixed in a nontrivial interval (Theorem 6.1).
- DCC + proper pre-fixed + non-nilpotent restriction (Theorem 6.3).
What would force ISP failure:
- Enflo-type constructions on Banach spaces (Enflo 1987) (not Hilbert space).
- No known construction on Hilbert space.
The open question is: does the specific geometry of separable infinite-dimensional Hilbert space guarantee one of the sufficient conditions above? The lattice framework identifies which conditions to check but cannot answer this question on its own.
8 Related Work
8.1 The ISP literature
Aronszajn and Smith (Aronszajn and Smith 1954) proved the ISP for compact operators using the fact that eigenspaces of compact operators on infinite-dimensional spaces are finite-dimensional. Bernstein and Robinson (Bernstein and Robinson 1966) extended this to polynomially compact operators using nonstandard analysis. Lomonosov (Lomonosov 1973) established the ISP for operators commuting with a nonzero compact operator, using Schauder’s fixed-point theorem. Brown, Chevreau, and Pearcy (Brown et al. 1979) proved the ISP for contractions whose spectrum contains the unit circle.
Enflo (Enflo 1987) constructed a counterexample to the ISP on a Banach space, and Read (Read 1985) gave a counterexample on . The Argyros–Haydon construction (Argyros and Haydon 2011) of hereditarily indecomposable spaces showed that on certain Banach spaces, every operator is a scalar plus a compact operator, so the ISP holds by Lomonosov’s theorem. Chalendar and Partington (Chalendar and Partington 2011) surveyed modern approaches.
The problem remains open for separable infinite-dimensional Hilbert spaces.
8.2 Lattice-theoretic fixed-point theory
Tarski’s fixed-point theorem (Tarski 1955) establishes that every monotone endomorphism on a complete lattice has a complete lattice of fixed points. Adámek’s initial algebra theorem (Adámek 1974) constructs the least fixed point via -chains from the initial object. Cousot and Cousot (Cousot and Cousot 1979) developed abstract interpretation, using ascending and descending chains of approximations to compute fixed points of monotone operators on lattices. The ascending and descending chain methods of abstract interpretation correspond to our bottom-up and top-down chains; the chain classification theorem (Theorem 3.5) explains why these methods produce only extremal fixed points in the ISP setting.
8.3 What this paper adds
Prior lattice-theoretic work on fixed points focuses on finding fixed points (Tarski, Adámek, Knaster). This paper focuses on locating fixed points between the extremes, which is what the ISP requires.
The chain classification theorem (Theorem 3.5) is new: to our knowledge, no prior work proves that extremal chains are structurally obstructed for ISP-type problems. The classification identifies orbit chains from intermediate starting points as the unique viable chain-based method.
The deflation theorem (Theorem 5.3) provides a new sufficient condition not present in the existing ISP literature. Prior sufficient conditions require analytic hypotheses (compactness, spectral structure); the deflation theorem requires only the existence of a proper pre-fixed point with non-collapsing deflation.
The lattice IVT (Theorem 6.1) localizes Tarski’s theorem to a specific interval, giving a constructive method for finding fixed points between a post-fixed point and a pre-fixed point. This localization appears implicit in Tarski’s proof but has not, to our knowledge, been stated as an explicit sufficient condition for the ISP.
The operator-lattice bridge (Section 4.3) provides a formal class-by-class translation from operator hypotheses to lattice conditions, with necessity countermodels for each path. This goes beyond abstract lattice theory: it identifies exactly which lattice theorem each classical ISP result uses, and proves that the hypotheses cannot be weakened.
9 Discussion
9.1 What the framework reveals about the ISP
The difficulty of the ISP is not in the existence of fixed points (Tarski guarantees those) but in their location. The chain classification (Theorem 3.5) shows that standard iterative methods are structurally insufficient—the starting point must be intermediate, which requires analytic input. The deflation theorem (Theorem 5.3) and the lattice IVT (Theorem 6.1) provide the structural conditions under which intermediate fixed points exist; the independence results (Theorem 7.1) show that these conditions cannot be derived from the lattice axioms alone.
The framework thus decomposes the ISP into a clean interface: the lattice theory provides the structural machinery (chain classification, deflation, interval localization), and the analytic theory must provide the input (an intermediate starting point, a proper pre-fixed point, or a post-fixed/pre-fixed pair).
9.2 The role of formalization
All results are formalized in Lean 4 with zero sorry, zero
Classical.choice, and zero custom axioms. The ISP independence results,
formerly dependent on Classical.choice, now compile at [propext] following
a typeclass refactoring that separated model-construction code from classical
infrastructure. The formalization forces precision about exactly which lattice
properties are used by each theorem. The independence results are genuine
independence—both models are constructively exhibited—not merely “we did not
find a proof.”
The four Lean files correspond to the axiom hierarchy and the operator bridge:
InvariantSubspace: base results on the invariant lattice. Adámek chain triviality, basic independence.InvariantSubspaceOrbits: orbit chains on the orbit lattice. Stabilization/properness reduction, failure mode dichotomy.InvariantSubspaceDeep: deflation, IVT, chain classification, DCC theorem, strengthened independence on the deep lattice.ISPOperatorBridge: operator class axiomatizations, translation theorems, classification, and three necessity countermodels.
All files are self-contained (no imports) and use no axioms beyond those
declared in their respective typeclasses. The independence theorems
(isp_independent_of_lattice, orbit_isp_independent, isp_independent_deep,
nonexamples_independent) all compile at [propext] only—Classical.choice
was eliminated via an OrbitLattice typeclass split. The orbit_failure_modes
theorem explicitly passes excluded middle as a hypothesis rather than invoking
it globally. All core lattice theorems—chain classification, deflation, IVT,
DCC—compile at [] (no axioms beyond the kernel), while only the
independence and model-construction results require [propext]. This makes the
stratification visible: the mathematical machinery is constructive; the
independence witnesses use extensional equality of propositions.
9.3 Open questions
-
Does every bounded operator on separable Hilbert space have a proper pre-fixed point whose deflation chain avoids ? An affirmative answer would solve the ISP via the deflation theorem.
-
Can the DCC theorem (Theorem 6.3) be extended to infinite-dimensional settings by replacing DCC with a weaker chain condition?
-
Is there an operator on Hilbert space with no proper pre-fixed points? Such an operator would satisfy for every nontrivial —a significant structural constraint. This is perhaps the sharpest new question the framework raises: if no such operator exists, the deflation theorem applies universally and the ISP reduces entirely to the non-collapse condition. An operator with no proper pre-fixed points would itself be a counterexample to the ISP, since every nontrivial invariant subspace is a proper fixed point, hence a proper pre-fixed point. The value of Question 3 is that it isolates the deflation non-collapse condition as the remaining degree of freedom once the pre-fixed point is granted, sharpening the search for operators that violate the non-collapse condition, which is the remaining open parameter in the deflation framework.
-
Can the lattice IVT (Theorem 6.1) be applied in general: do compatible post-fixed and pre-fixed points always exist for arbitrary operators?
10 Conclusion
The chain classification theorem identifies the structural landscape of the ISP: chains from the extremes are doomed, and the only viable chain-based approach starts from an intermediate element. The deflation theorem, lattice IVT, and DCC theorem provide three new sufficient conditions for the existence of nontrivial invariant subspaces, all purely order-theoretic. The independence results show that these conditions cannot be derived from the lattice structure alone—analytic input is genuinely required.
The framework identifies where the analytic content of the ISP enters: not in the chain method itself, but in the choice of starting point. The invariant subspace problem is hard not because fixed points are hard to find, but because the right starting points are hard to choose. The lattice fixed-point framework developed here is part of a broader program (Close 2026a) analyzing the fold/unfold asymmetry of reflexive objects across mathematical domains; applications to computability theory and complexity are developed in companion papers (Close 2026b, 2026c). The orbit-closure map’s pre-fixed/post-fixed structure is an instance of the fold/unfold asymmetry developed in Close (2026c); the deflation theorem corresponds to the fold-dominant regime where contraction overcomes expansion.
Appendix A: Axiom Profiles
The following table lists the axiom profile of each formalized theorem as
reported by Lean’s #print axioms command. A profile of [] means the theorem
uses no axioms beyond the Lean kernel; [propext] means only propositional
extensionality is used. No theorem in the formalization uses Classical.choice
or any custom axiom.
File abbreviations: IS = InvariantSubspace,
ISO = InvariantSubspaceOrbits,
ISD = InvariantSubspaceDeep,
OB = ISPOperatorBridge.
| Theorem | Lean name | Profile | File |
|---|---|---|---|
| Adámek chain triviality | adamek_chain_trivial | [] | IS |
| Dual chain triviality | dual_chain_trivial | [] | ISD |
| Chain classification | chain_from_extreme_trivial | [] | ISD |
| Orbit nontriviality | orbit_nontrivial_if_bounded | [] | ISO |
| Orbit failure dichotomy | orbit_failure_modes (EM explicit) | [] | ISO |
| Deflation theorem | deflation_theorem | [] | ISD |
| Lattice IVT | lattice_ivt | [] | ISD |
| DCC theorem | dcc_deflation_isp | [] | ISD |
| Compact deflation setup | compact_yields_deflation_setup | [] | OB |
| Compact ISP | compact_isp | [] | OB |
| Normal ISP | normal_isp | [] | OB |
| Independence (base) | isp_independent_of_lattice | [propext] | IS |
| Independence (orbit) | orbit_isp_independent | [propext] | ISO |
| Independence (deep) | isp_independent_deep | [propext] | ISD |
| Non-example independence | nonexamples_independent | [propext] | OB |
All core lattice theorems (chain classification, deflation, IVT, DCC) and all
operator-bridge translations compile at []. Only the independence results and
model constructions require [propext], used for extensional equality of
propositions in the finite countermodels. Classical.choice was eliminated from
the independence proofs via an OrbitLattice typeclass split that separated
model-construction code from classical infrastructure.
References
- Adámek, Jiří. 1974. “Free Algebras and Automata Realizations in the Language of Categories and Functors.” Comment. Math. Univ. Carolin. 15: 589–602.
- Argyros, Spiros A., and Richard G. Haydon. 2011. “A Hereditarily Indecomposable -Space That Solves the Scalar-Plus-Compact Problem.” Acta Math. 206 (1): 1–54.
- Aronszajn, N., and K. T. Smith. 1954. “Invariant Subspaces of Completely Continuous Operators.” Ann. Of Math. (2) 60: 345–50.
- Bernstein, Allen R., and Abraham Robinson. 1966. “Solution of an Invariant Subspace Problem of K. T. Smith and P. R. Halmos.” Pacific J. Math. 16: 421–31.
- Brown, Scott W., Bernard Chevreau, and Carl Pearcy. 1979. “On the Structure of Contraction Operators. II.” J. Funct. Anal. 32 (3): 271–91.
- Chalendar, Isabelle, and Jonathan R. Partington. 2011. Modern Approaches to the Invariant-Subspace Problem. Vol. 188. Cambridge Tracts in Mathematics. Cambridge University Press.
- Close, Larsen James. 2026a. The Point. Lean 4 formalization, 42 files. https://doi.org/10.5281/zenodo.18878239.
- Close, Larsen James. 2026b. The Axiom Profile of Computation. Manuscript.
- Close, Larsen James. 2026c. Reflexive Compression Boundaries in Graded Categories. Manuscript.
- Close, Larsen James. 2026e. Witness Extraction Asymmetry Across Logic, Complexity, and Fixed-Point Mathematics. Multi-paper code archive, Lean 4 formalization, 93 files. https://doi.org/10.5281/zenodo.18915083.
- Cousot, Patrick, and Radhia Cousot. 1979. “Systematic Design of Program Analysis Frameworks.” Conference Record of the Sixth Annual ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages, 269–82.
- Enflo, Per. 1987. “On the Invariant Subspace Problem for Banach Spaces.” Acta Math. 158 (3–4): 213–313.
- Lomonosov, V. I. 1973. “Invariant Subspaces for the Family of Operators Which Commute with a Completely Continuous Operator.” Funktsional. Anal. I Prilozhen. 7 (3): 55–56.
- Read, C. J. 1985. “A Solution to the Invariant Subspace Problem on the Space .” Bull. London Math. Soc. 17 (4): 305–17.
- Tarski, Alfred. 1955. “A Lattice-Theoretical Fixpoint Theorem and Its Applications.” Pacific J. Math. 5 (2): 285–309.
Text of the version published 2026-03-09 (DOI: 10.5281/zenodo.18917059). The archival version of record is on Zenodo.