@@ -672,15 +672,15 @@ lemma _root_.IsStrictlyPositive.rpow {a : A} {y : ℝ} (ha : IsStrictlyPositive
672672 IsStrictlyPositive (a ^ y) := by grind
673673
674674/-- For an element `a` in a C⋆-algebra, TFAE:
675- * `a` is strictly positive,
676- * `sqrt a` is strictly positive and `a = sqrt a * sqrt a`,
677- * `sqrt a` is invertible and `a = sqrt a * sqrt a`,
678- * `a = b * b` for some strictly positive `b`,
679- * `a = b * b` for some self-adjoint and invertible `b`,
680- * `a = star b * b` for some invertible `b`,
681- * `a = b * star b` for some invertible `b`,
682- * `0 ≤ b ` and `a` is invertible,
683- * `a` is self-adjoint and has positive spectrum. -/
675+ 1. `a` is strictly positive,
676+ 2. `sqrt a` is strictly positive and `a = sqrt a * sqrt a`,
677+ 3. `sqrt a` is invertible and `a = sqrt a * sqrt a`,
678+ 4. `a = b * b` for some strictly positive `b`,
679+ 5. `a = b * b` for some self-adjoint and invertible `b`,
680+ 6. `a = star b * b` for some invertible `b`,
681+ 7. `a = b * star b` for some invertible `b`,
682+ 8. `0 ≤ a ` and `a` is invertible,
683+ 9. `a` is self-adjoint and has positive spectrum. -/
684684theorem _root_.CStarAlgebra.isStrictlyPositive_TFAE {a : A} :
685685 [IsStrictlyPositive a,
686686 IsStrictlyPositive (sqrt a) ∧ a = sqrt a * sqrt a,
@@ -710,10 +710,10 @@ theorem _root_.CStarAlgebra.isStrictlyPositive_iff_isStrictlyPositive_sqrt_and_e
710710theorem _root_.CStarAlgebra.isStrictlyPositive_iff_isUnit_sqrt_and_eq_sqrt_mul_sqrt
711711 {a : A} : IsStrictlyPositive a ↔ IsUnit (sqrt a) ∧ a = sqrt a * sqrt a :=
712712 CStarAlgebra.isStrictlyPositive_TFAE.out 0 2
713- theorem _root_.CStarAlgebra.isStrictlyPositive_iff_eq_isStrictlyPositive_mul_self
713+ theorem _root_.CStarAlgebra.isStrictlyPositive_iff_exists_isStrictlyPositive_and_eq_mul_self
714714 {a : A} : IsStrictlyPositive a ↔ ∃ b, IsStrictlyPositive b ∧ a = b * b :=
715715 CStarAlgebra.isStrictlyPositive_TFAE.out 0 3
716- theorem _root_.CStarAlgebra.isStrictlyPositive_iff_eq_isUnit_and_isSelfAdjoint_mul_self
716+ theorem _root_.CStarAlgebra.isStrictlyPositive_iff_exists_isUnit_and_isSelfAdjoint_and_eq_mul_self
717717 {a : A} : IsStrictlyPositive a ↔ ∃ b, IsUnit b ∧ IsSelfAdjoint b ∧ a = b * b :=
718718 CStarAlgebra.isStrictlyPositive_TFAE.out 0 4
719719theorem _root_.CStarAlgebra.isStrictlyPositive_iff_eq_star_mul_self
0 commit comments