diff -r f6e595e4f608 -r 261cd8722677 src/HOL/Series.thy --- a/src/HOL/Series.thy Mon Sep 23 12:59:10 2024 +0200 +++ b/src/HOL/Series.thy Mon Sep 23 13:32:38 2024 +0200 @@ -16,14 +16,14 @@ subsection \Definition of infinite summability\ definition sums :: "(nat \ 'a::{topological_space, comm_monoid_add}) \ 'a \ bool" - (infixr "sums" 80) + (infixr \sums\ 80) where "f sums s \ (\n. \i s" definition summable :: "(nat \ 'a::{topological_space, comm_monoid_add}) \ bool" where "summable f \ (\s. f sums s)" definition suminf :: "(nat \ 'a::{topological_space, comm_monoid_add}) \ 'a" - (binder "\" 10) + (binder \\\ 10) where "suminf f = (THE s. f sums s)" text\Variants of the definition\