Skip to content

Commit 543fe35

Browse files
committed
feat(Analysis/CStarAlgebra/ApproximateUnit): pure 1 is an increasing approx unit (#40226)
1 parent c5e5b5f commit 543fe35

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Mathlib/Analysis/CStarAlgebra/ApproximateUnit.lean

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,12 @@ lemma eventually_star_eq {l : Filter A} (hl : l.IsIncreasingApproximateUnit) :
158158
∀ᶠ x in l, star x = x :=
159159
hl.eventually_isSelfAdjoint.mp <| .of_forall fun _ ↦ IsSelfAdjoint.star_eq
160160

161+
lemma pure_one (A : Type*) [CStarAlgebra A] [PartialOrder A] [StarOrderedRing A] :
162+
(pure 1 : Filter A).IsIncreasingApproximateUnit where
163+
toIsApproximateUnit := .pure_one A
164+
eventually_nonneg := by simp
165+
eventually_norm := by nontriviality A; simp
166+
161167
end Filter.IsIncreasingApproximateUnit
162168

163169
namespace CStarAlgebra

0 commit comments

Comments
 (0)