Introduction to Coalgebra

Total Page:16

File Type:pdf, Size:1020Kb

Introduction to Coalgebra Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Introduction to Coalgebra Bart Jacobs Institute for Computing and Information Sciences { Digital Security Radboud University Nijmegen EWSCS 2011: 16th Estonian Winter School in Computer Science 28 feb. { 4 march, Estonia EWSCS'11 Bart Jacobs EWSCS'11 Coalgebra Intro 1 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Outline Basics Induction and coinduction Algebras and coalgebras Bisimilarity and finality Language example Coalgebras and quantum computing Introducing QBits Combining qubits Monads for computations Walks illustrating computation types Quantum walks, coalgebraically Reversibility of computation Bart Jacobs EWSCS'11 Coalgebra Intro 2 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing What are coalgebras, intuitively • Mathematical models for state-based computation • your computer has a complicated internal state • you as user can only modify it to some extend • also, you can observe only so much • Basically only two kinds of operations: • move to a next state, somehow (deterministically, non-deterministically, probabilistically, . ) • make an observation (\measurement") about the current state • These operations can be combined (\observation has side-effect”) • Describing such state-based systems and their dynamics requires a new kind of mathematics. • related to dynamical systems (and evolution via differential equations) Bart Jacobs EWSCS'11 Coalgebra Intro 4 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing (Co)algebras, pictorially Algebras with \carrier" X are maps into X , of the form: X ··· X construct / X Coalgebras with \state space" X are maps out of X , of the form: X / X ··· X modify/observe Think of a fields & methods in an object-oriented class • Formally, the boxes are functors, usually Sets ! Sets,... • . but at this stage you may think of them as types σ(X ) containing a single type variable X Bart Jacobs EWSCS'11 Coalgebra Intro 5 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Intermezzo: type constructors for \boxes" • Identity X , and constants A • including empty set ;, often written as 0 • singleton set 1 = {∗} • products X × Y = fhx; yi j x 2 X ; y 2 Y g, with projections: hf ;gi Z −−−! X × Y π1 π2 X o X × Y / Y =============== Z −! XZ −! Y f g Q • infinite version usually written as i2I Xi • coproducts X + Y = fhx; 0i j x 2 X g [ fhy; 1i j y 2 Y g, with coprojections [f ;g] X + Y −−−! Z κ1 κ2 X / X + Y o Y =============== X −! ZY −! Z f g ` • infinite version written as i2I Xi Bart Jacobs EWSCS'11 Coalgebra Intro 6 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Algebra examples F (X ) ! X • Natural numbers [zero;succ] zero: 1 −! N 1 + N / N i.e. succ: N −! N The functor/type here is F (X ) = 1 + X . • Groups 8 0: 1 −! G [0;+;−] < 1 + (G × G) + G / G i.e. +: G × G −! G : −: G −! G • Clearly this works for many algebraic structures: for each signature Σ there is a functor: ` arity(f ) X 7−! f 2Σ X (disjoint union over all operations) whose algebras are precisely the Σ-algebras. Note: this captures algebraic operations, not equations ¨¨ Bart Jacobs EWSCS'11 Coalgebra Intro ©© 7 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Coalgebra examples X ! F (X ) • Streams (infinite lists) AN of elements of a set A: hhead;taili AN / A × AN for the functor F (X ) = A × X , where: head(α) = α(0) 0 tail(α) = α = λn 2 N: α(n + 1) • Both finite and infinite lists A1 = A? + AN possible head 1 A1 / 1 + A × A for the functor F (X ) = 1 + A × X . Note: observation with side-effect Bart Jacobs EWSCS'11 Coalgebra Intro 8 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Automata-theoretic coalgebra examples • A deterministic automaton with input actions A is a coalgebra: hstep;final?i X / X A × 2 where 2 = f0; 1g. • A non-deterministic automaton, or transition system, with input actions A is a coalgebra: succs X / P(X )A • Other functors (actually \monads") than powerset P may be used: eg. partial automata via lift, or probabilistic automata via distribution. Bart Jacobs EWSCS'11 Coalgebra Intro 9 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Markov chains For a set X , define the set of discrete distributions on X P D(X ) = f': X ! [0; 1] support(') is finite, and x '(x) = 1g Such ' 2 D(X ) is a formal convex combination: 8 < support(') = fx1;:::; xng r1x1 + ··· + rnxn where ri = '(xi ) > 0 : r1 + ··· + rn = 1 Coalgebras X !D(X ) are Markov chains, giving probabilistic transitions: ri P x −! xi with i ri = 1: They can also be used in labeled form, as X −! D(X )A or as X −! D(A × X ) Bart Jacobs EWSCS'11 Coalgebra Intro 10 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Coalgebra essentials & Plan • Generic framework for describing state-based systems X • Coinductive definition and reasoning principles Lect. II, III • Bisimilarity, as indistinguishability of states Lect. III, IV • Modal logic, also generically • Coherence between operational & denotational semantics • General trace semantics • Current own interest: coagebra & quantum computing Lect. V • Quantum language has strong coalgebraic flavour: states, transitions, observations, indistinguishability, . • Can this be made mathematically precise? Bart Jacobs EWSCS'11 Coalgebra Intro 11 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Functors, part I • Before we can proceed we need to know a little bit more about functors, for the time being only on sets • In functional programming \functoriality" is often described by \map" properties, such as list map • A functor F maps sets X to sets F (X ), and also functions to functions, in an orderly manner: • if g : X ! Y , then F (g): F (X ) ! F (Y ) id id • F preserves identity maps: F X −! X = F (X ) −! F (X ) • F preserves composition: F (h ◦ g) = F (h) ◦ F (g), in: g F (g) F (h) F X −! Y −!h Z = F (X ) −! F (Y ) −! F (Z) • Often, when the action on functions is \obvious", it is omitted from the description of a functor Bart Jacobs EWSCS'11 Coalgebra Intro 13 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Functor example I • For a set X write P(X ) for the powerset: the set of all subsets of X • This P(−) forms a functor • For a function g : X ! Y there is a suitable function P(X ) !P(Y ) • this is new function is written P(g): P(X ) !P(Y ) • it is given by image: P(g) U ⊆ X = fg(x) j x 2 Ug ⊆ Y = fy 2 Y j 9x 2 U: y = g(x)g = g(U) as it is sometimes written = g[U] also possible ` = g (U) for categorical logicians Bart Jacobs EWSCS'11 Coalgebra Intro 14 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Functor example I We check explicitly: P(id)(U) = fid(x) j x 2 Ug = U Hence P(id) = id. Similarly, P preserves composition: P(h) ◦ P(g) (U) = P(h) P(g)(U) = P(h) fy 2 Y j 9x 2 U: y = g(x)g = fz 2 Z j 9y 2 Y : 9x 2 U: y = g(x) and z = h(y)g = fz 2 Z j 9x 2 U: z = h(g(x))g = P(h ◦ g)(U) Bart Jacobs EWSCS'11 Coalgebra Intro 15 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Functor example II • For a set X write X ? for the associated set of finite lists: ? X = fhx1; x2;:::; xni j xi 2 X g • The mapping X 7−! X ? is a functor • For g : X ! Y we have g ? : X ? ! Y ? given by: ? g hx1; x2;:::; xni = hg(x1); g(x2);:::; g(xn)i • It is not hard to check the functoriality properties: id? = id and (h ◦ g)? = h? ◦ g ? Bart Jacobs EWSCS'11 Coalgebra Intro 16 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Functor examples II • Infinite lists: X 7! X N with: g N : X N ! Y N, given by: N g hx0; x1; x2;:::; i = hg(x0); g(x1); g(x2);:::i • Product with a constant X 7! X × A, with: g × A: X × A −! Y × A given by (g × A)(x; a) = (g(x); a) • Coproduct with a constant X 7! X + A, with (g + A)(κ x) = κ g(x) (g+A): X +A −! Y +A given by 1 1 (g + A)(κ2a) = κ2a Bart Jacobs EWSCS'11 Coalgebra Intro 17 / 98 Basics Induction and coinduction Bisimilarity and finality Radboud University Nijmegen Coalgebras and quantum computing Definition Let F be a functor • An algebra for F is a map F (X ) ! X • A coalgebra for F is a map X ! F (X ) Definition a b • An algebra homomorphism from F (X ) ! X to F (Y ) ! Y is a map f : X ! Y for which the rectangle on the left commutes. F (f ) F (g) F (X ) / F (Y ) F (X ) / F (Y ) O O a b c d f g X / Y X / Y c d • A coalgebra homomorphism from X ! F (X ) to Y ! F (Y ) is a map g : X ! Y for which the diagram on the right commutes.
Recommended publications
  • Arxiv:1906.03655V2 [Math.AT] 1 Jul 2020
    RATIONAL HOMOTOPY EQUIVALENCES AND SINGULAR CHAINS MANUEL RIVERA, FELIX WIERSTRA, MAHMOUD ZEINALIAN Abstract. Bousfield and Kan’s Q-completion and fiberwise Q-completion of spaces lead to two different approaches to the rational homotopy theory of non-simply connected spaces. In the first approach, a map is a weak equivalence if it induces an isomorphism on rational homology. In the second, a map of path-connected pointed spaces is a weak equivalence if it induces an isomorphism between fun- damental groups and higher rationalized homotopy groups; we call these maps π1-rational homotopy equivalences. In this paper, we compare these two notions and show that π1-rational homotopy equivalences correspond to maps that induce Ω-quasi-isomorphisms on the rational singular chains, i.e. maps that induce a quasi-isomorphism after applying the cobar functor to the dg coassociative coalge- bra of rational singular chains. This implies that both notions of rational homotopy equivalence can be deduced from the rational singular chains by using different alge- braic notions of weak equivalences: quasi-isomorphism and Ω-quasi-isomorphisms. We further show that, in the second approach, there are no dg coalgebra models of the chains that are both strictly cocommutative and coassociative. 1. Introduction One of the questions that gave birth to rational homotopy theory is the commuta- tive cochains problem which, given a commutative ring k, asks whether there exists a commutative differential graded (dg) associative k-algebra functorially associated to any topological space that is weakly equivalent to the dg associative algebra of singu- lar k-cochains on the space with the cup product [S77], [Q69].
    [Show full text]
  • The Continuum As a Final Coalgebra
    Theoretical Computer Science 280 (2002) 105–122 www.elsevier.com/locate/tcs The continuum as a ÿnal coalgebra D. PavloviÃca, V. Prattb; ∗ aKestrel Institute, Palo Alto, CA, USA bDepartment of Computer Science, Stanford University, Stanford, CA 94305-9045, USA Abstract We deÿne the continuum up to order isomorphism, and hence up to homeomorphism via the order topology, in terms of the ÿnal coalgebra of either the functor N ×X , product with the set of natural numbers, or the functor 1+N ×X . This makes an attractive analogy with the deÿnition of N itself as the initial algebra of the functor 1 + X , disjoint union with a singleton. We similarly specify Baire space and Cantor space in terms of these ÿnal coalgebras. We identify two variants of this approach, a coinductive deÿnition based on ÿnal coalgebraic structure in the category of sets, and a direct deÿnition as a ÿnal coalgebra in the category of posets. We conclude with some paradoxical discrepancies between continuity and constructiveness in this setting. c 2002 Elsevier Science B.V. All rights reserved. 1. Introduction The algebra (N; 0;s) of non-negative integers under successor s with constant 0, the basic number system of mathematics, occupies a distinguished position in the category of algebras having a unary operation and a constant, namely as its initial object. In this paper we show that the continuum, the basic environment of physics, occu- pies an equally distinguished position in the category of coalgebras having one “dual operation” of arity N, namely as its ÿnal object. Here a dual operation is understood as a function X → X + X + ··· dual to an operation as a function X × X ×···X , with arity being the number of copies of X in each case.
    [Show full text]
  • Arxiv:1907.08255V2 [Math.RA] 26 Aug 2020 Olers Eso Htte R Pitn of Splitting Are They That Show We Coalgebras
    COHOMOLOGY AND DEFORMATIONS OF DENDRIFORM COALGEBRAS APURBA DAS Abstract. Dendriform coalgebras are the dual notion of dendriform algebras and are splitting of as- sociative coalgebras. In this paper, we define a cohomology theory for dendriform coalgebras based on some combinatorial maps. We show that the cohomology with self coefficients governs the formal defor- mation of the structure. We also relate this cohomology with the cohomology of dendriform algebras, coHochschild (Cartier) cohomology of associative coalgebras and cohomology of Rota-Baxter coalgebras which we introduce in this paper. Finally, using those combinatorial maps, we introduce homotopy analogue of dendriform coalgebras and study some of their properties. 1. Introduction Dendriform algebras were first introduced by Jean-Louis Loday in his study on periodicity phe- nomenons in algebraic K-theory [13]. These algebras are Koszul dual to diassociative algebras (also called associative dialgebras). More precisely, a dendriform algebra is a vector space equipped with two binary operations satisfying three new identities. The sum of the two operations turns out to be associa- tive. Thus, a dendriform algebra can be thought of like a splitting of associative algebras. Dendriform algebras are closely related to Rota-Baxter algebras [1,8]. Recently, the present author defines a coho- mology and deformation theory for dendriform algebras [3]. See [6–8,17] and references therein for more literature about dendriform algebras. The dual picture of dendriform algebras is given by dendriform coalgebras. It is given by two coproducts on a vector space satisfying three identities (dual to dendriform algebra identities), and the sum of the two coproducts makes the underlying vector space into an associative coalgebra.
    [Show full text]
  • The Method of Coalgebra: Exercises in Coinduction
    The Method of Coalgebra: exercises in coinduction Jan Rutten CWI & RU [email protected] Draft d.d. 8 July 2018 (comments are welcome) 2 Draft d.d. 8 July 2018 Contents 1 Introduction 7 1.1 The method of coalgebra . .7 1.2 History, roughly and briefly . .7 1.3 Exercises in coinduction . .8 1.4 Enhanced coinduction: algebra and coalgebra combined . .8 1.5 Universal coalgebra . .8 1.6 How to read this book . .8 1.7 Acknowledgements . .9 2 Categories { where coalgebra comes from 11 2.1 The basic definitions . 11 2.2 Category theory in slogans . 12 2.3 Discussion . 16 3 Algebras and coalgebras 19 3.1 Algebras . 19 3.2 Coalgebras . 21 3.3 Discussion . 23 4 Induction and coinduction 25 4.1 Inductive and coinductive definitions . 25 4.2 Proofs by induction and coinduction . 28 4.3 Discussion . 32 5 The method of coalgebra 33 5.1 Basic types of coalgebras . 34 5.2 Coalgebras, systems, automata ::: ....................... 34 6 Dynamical systems 37 6.1 Homomorphisms of dynamical systems . 38 6.2 On the behaviour of dynamical systems . 41 6.3 Discussion . 44 3 4 Draft d.d. 8 July 2018 7 Stream systems 45 7.1 Homomorphisms and bisimulations of stream systems . 46 7.2 The final system of streams . 52 7.3 Defining streams by coinduction . 54 7.4 Coinduction: the bisimulation proof method . 59 7.5 Moessner's Theorem . 66 7.6 The heart of the matter: circularity . 72 7.7 Discussion . 76 8 Deterministic automata 77 8.1 Basic definitions . 78 8.2 Homomorphisms and bisimulations of automata .
    [Show full text]
  • Coalgebras from Formulas
    Coalgebras from Formulas Serban Raianu California State University Dominguez Hills Department of Mathematics 1000 E Victoria St Carson, CA 90747 e-mail:[email protected] Abstract Nichols and Sweedler showed in [5] that generic formulas for sums may be used for producing examples of coalgebras. We adopt a slightly different point of view, and show that the reason why all these constructions work is the presence of certain representative functions on some (semi)group. In particular, the indeterminate in a polynomial ring is a primitive element because the identity function is representative. Introduction The title of this note is borrowed from the title of the second section of [5]. There it is explained how each generic addition formula naturally gives a formula for the action of the comultiplication in a coalgebra. Among the examples chosen in [5], this situation is probably best illus- trated by the following two: Let C be a k-space with basis {s, c}. We define ∆ : C −→ C ⊗ C and ε : C −→ k by ∆(s) = s ⊗ c + c ⊗ s ∆(c) = c ⊗ c − s ⊗ s ε(s) = 0 ε(c) = 1. 1 Then (C, ∆, ε) is a coalgebra called the trigonometric coalgebra. Now let H be a k-vector space with basis {cm | m ∈ N}. Then H is a coalgebra with comultiplication ∆ and counit ε defined by X ∆(cm) = ci ⊗ cm−i, ε(cm) = δ0,m. i=0,m This coalgebra is called the divided power coalgebra. Identifying the “formulas” in the above examples is not hard: the for- mulas for sin and cos applied to a sum in the first example, and the binomial formula in the second one.
    [Show full text]
  • Some Remarks on the Structure of Hopf Algebras
    SOME REMARKS ON THE STRUCTURE OF HOPF ALGEBRAS J. PETER MAY The purpose of this note is to give a new proof and generalization of Borel's theorem describing the algebra structure of connected com- mutative Hopf algebras and to discuss a certain functor V that arises ubiquitously in algebraic topology. Using this functor, we shall con- struct another functor W that accurately describes a large variety of not necessarily primitively generated Hopf algebras which occur in topology. K will denote a field of characteristic p > 0. For any (nonnegatively) graded if-module M, we let M+={x|x£M, degree x even} and M~= {x\xEM, degree x odd} if p>2; if p = 2, we let M+ = M and M~ = 0. We recall that an Abelian restricted Lie algebra is a -fT-module L together with a restriction (pth power operation) £: L„—>Lpn, for pn even, such that£(£x) =&"£(x) and£(x+y) =£(x)+i;(y) for x, y£L+ and kEK. Define V(L) =A(L)/I, where A(L) is the free commuta- tive algebra generated by L and I is the ideal generated by |xp—£(x)|x£L+}. V(L) is a primitively generated commutative Hopf algebra with PV(L) =L. It has the universal property that if i:L-+V(L) is the natural inclusion and if f'.L—>P is a morphism of Abelian restricted Lie algebras into a commutative algebra B (with restriction the pth power), then there exists a unique morphism of algebras/: V(L)—>-B such that fi=f. Of course, V(L) is the universal (restricted) enveloping algebra of L and is also defined for non-Abelian L, but it is the present case that is most frequently encountered in topology.
    [Show full text]
  • Lie Coalgebras*
    ADVANCES IN MATHEMATICS 38, 1-54 (1980) Lie Coalgebras* WALTER MICHAELIS Department of Mathematics, The Univmity of Montana, Missoula, Montana 59812 DEDICATED TO SAUNDERS MAC LANE ON THE OCCASION OF HIS RECENT 70TH BIRTHDAY A Lie coalgebra is a coalgebra whose comultiplication d : M -, M @ M satisfies the Lie conditions. Just as any algebra A whose multiplication ‘p : A @ A + A is associative gives rise to an associated Lie algebra e(A), so any coalgebra C whose comultiplication A : C + C 0 C is associative gives rise to an associated Lie coalgcbra f?(C). The assignment C H O’(C) is func- torial. A universal coenveloping coalgebra UC(M) is defined for any Lie coalgebra M by asking for a right adjoint UC to Bc. This is analogous to defining a universal enveloping algebra U(L) for any Lie algebra L by asking for a left adjoint U to the functor f?. In the case of Lie algebras, the unit (i.e., front adjunction) 1 + 5? 0 U of the adjoint functor pair U + B is always injective. This follows from the PoincarC-Birkhoff-Witt theorem, and is equivalent to it in characteristic zero (x = 0). It is, therefore, natural to inquire about the counit (i.e., back adjunction) f!” 0 UC + 1 of the adjoint functor pair B” + UC. THEOREM. For any Lie coalgebra M, the natural map Be(UCM) + M is surjective if and only if M is locally finite, (i.e., each element of M lies in a finite dimensional sub Lie coalgebra of M). An example is given of a non locally finite Lie coalgebra.
    [Show full text]
  • Cofree Coalgebras Over Operads and Representative Functions
    Cofree coalgebras over operads and representative functions M. Anel September 16, 2014 Abstract We give a recursive formula to compute the cofree coalgebra P _(C) over any colored operad P in V = Set; CGHaus; (dg)Vect. The construction is closed to that of [Smith] but different. We use a more conceptual approach to simplify the proofs that P _ is the cofree P -coalgebra functor and also the comonad generating P -coalgebras. In a second part, when V = (dg)Vect is the category of vector spaces or chain com- plexes over a field, we generalize to operads the notion of representative functions of [Block-Leroux] and prove that P _(C) is simply the subobject of representative elements in the "completed P -algebra" P ^(C). This says that our recursion (as well as that of [Smith]) stops at the first step. Contents 1 Introduction 2 2 The cofree coalgebra 4 2.1 Analytic functors . .4 2.2 Einstein convention . .5 2.3 Operads and associated functors . .7 2.4 Coalgebras over an operad . 10 2.5 The comonad of coendomorphisms . 12 2.6 Lax comonads and their coalgebras . 13 2.7 The coreflection theorem . 16 3 Operadic representative functions 21 3.1 Representative functions . 23 3.2 Translations and recursive functions . 25 3.3 Cofree coalgebras and representative functions . 27 1 1 Introduction This work has two parts. In a first part we prove that coalgebras over a (colored) operad P are coalgebras over a certain comonad P _ by giving a recursive construction of P _. In a second part we prove that the recursion is unnecessary in the case where the operad is enriched over vector spaces or chain complexes.
    [Show full text]
  • Operads and the Tree of Life
    Operads and the Tree of Life John Baez and Nina Otter We have entered a new geological epoch, the Anthropocene, in which the biosphere is rapidly changing due to human activities. Last week two teams of scientists claimed the Western Antarctic Ice Sheet has been irreversibly destabilized, and will melt causing ∼ 3 meters of sea level rise in the centuries to come. So, we can expect that mathematicians will be increasingly focused on biology, ecology and complex systems | just as last century's mathematics was dominated by fundamental physics. Luckily, these new topics are full of fascinating mathematical structures|and while mathematics takes time to have an effect, it can do truly amazing things. Think of Church and Turing's work on computability, and computers today! Trees are important, not only in mathematics, but also biology. The most important is the `tree of life'. Darwin thought about it: In the 1860s, the German naturalist Haeckel drew it: Now we know that the `tree of life' is not really a tree, due to endosymbiosis and horizontal gene transfer: But a tree is often a good approximation. Biologists who try to infer phylogenetic trees from present-day genetic data often use simple models where: I the genotype of each species follows a random walk, but I species branch in two at various times. These are called Markov models. The simplest Markov model for DNA evolution is the Jukes{Cantor model. Consider a genome of fixed length: that is, one or more pieces of DNA having a total of N base pairs, each taken from the set fA,T,C,Gg: ··· ATCGATTGAGCTCTAGCG ··· As time passes, the Jukes{Cantor model says the genome changes randomly, with each base pair having the same constant rate of randomly flipping to any other.
    [Show full text]
  • Arxiv:1812.10159V1 [Math.QA] 25 Dec 2018 Sthe Is Maps: C Hoe [4]
    THE COALGEBRA EXTENSION PROBLEM FOR Z/p AARON BROOKNER Abstract. For a coalgebra Ck over field k, we define the “coalgebra extension problem” as the question: what multiplication laws can we define on Ck to make it a bialgebra over k? This paper answers this existence-uniqueness question for certain special coalgebras. We begin with the trigonometric coalgebra, comparing and contrasting it with the group- (bi)algebra k[Z/2]. This leads to a generalization, the coalgebra dual to the group-algebra k[Z/p], which we then investigate. We show the connections with other problems, and see that the answer to the coalgebra extension problem for these families depends interestingly on the base field k. 1. Introduction and motivation By definition as a representative coalgebra, the trigonometric coalgebra is merely the dual of an algebra, as defined below; it does not naturally, nor conceptually, come equipped with an algebra structure itself. It was thus not obvious, a priori, whether it possessed any bialgebra structures. The answer to this question, while again elementary in nature, was surprising (see Theorem 1 below) that it should depend on the base field, and on the dimension of the trigonometric coalgebra, i.e. 2, in such a natural way. It was in attempt to replicate these numerical coindicences for higher numbers which led to the proceeding sections of this paper. We may hence summarize the following sections as such: section 2 solves the coalgebra extension problem for the trigonometric coalgebra over arbitrary base field (or base ring, more generally); section 3 reveals an elegant, yet not entirely surprising, connection with the group of units of a specific group algebra, and a natural connection thereupon to the finite Fourier transform.
    [Show full text]
  • Pointed Irreducible Bialgebras”
    JOURNAL OF ALGEBRA 57, 64-76 (1979) Pointed Irreducible Bialgebras” WARREN D. NICHOLS The Pennsylvania State University, University Pavk, Pennsylvania 16802 Communicated by I. N. Herstein Received June 20, 1977 INTRODUCTION It is well-known [5, p. 274, Theorem 13.0.11 that a pointed irreducible co- commutative bialgebra B over a field of characteristic zero is isomorphic as a bialgebra to U(P(B)), the universal enveloping algebra of the Lie algebra P(B) of primitives of B. One method of proof is first to show that B and U@‘(B)) are each coalgebra-isomorphic to the cofree pointed irreducible cocommutative coalgebra on the vector space P(B), and then to use these coalgebra isomorphisms to induce a bialgebra isomorphism. In this paper we prove a dual version of the above. Let B be a pointed irre- ducible commutative bialgebra over a field of characteristic zero. Write I for its augmentation ideal, and Q(B) = l/r2. Then B is isomorphic as a bialgebra to the appropriate universal object UIC(Q(B)). We first show that each is isomorphic as an algebra to Sym(Q(B)), and then use these algebra isomorphisms to induce a bialgebra isomorphism. The algebra isomorphism B q Sym(Q(B)) that we obtain is well-known, at least in the atline case. When B is affine, B represents a unipotent algebraic group scheme G. The Lie algebra L of G defines an atie scheme L, , which is represented by Sym(L*). There is a natural scheme isomorphism exp: L, % G [2, IV, Sect. 2, no.
    [Show full text]
  • Indecomposable Coalgebras, Simple Comodules, And
    proceedings of the american mathematical society Volume 123, Number 8, August 1995 INDECOMPOSABLE COALGEBRAS,SIMPLE COMODULES, AND POINTED HOPF ALGEBRAS SUSAN MONTGOMERY (Communicated by Lance W. Small) Abstract. We prove that every coalgebra C is a direct sum of coalgebras in such a way that the summands correspond to the connected components of the Ext quiver of the simple comodules of C . This result is used to prove that every pointed Hopf algebra is a crossed product of a group over the indecomposable component of the identity element. Introduction A basic structure theorem for cocommutative coalgebras asserts that any such coalgebra C is a direct sum of its irreducible components; as a consequence, it can be shown that any pointed cocommutative Hopf algebra is a skew group ring of the group G of group-like elements of H over the irreducible component of the identity element. These results were proved independently by Cartier and Gabriel and by Kostant in the early 1960's; see [Di, SI]. This paper is concerned with versions of these results for arbitrary coalgebras and for arbitrary (pointed) Hopf algebras. In fact much is already known about the coalgebra problem. In 1975 Ka- plansky [K] showed that any coalgebra C is (uniquely) a direct sum of inde- composable ones; moreover when C is cocommutative, the indecomposable components are irreducible. In 1978 Shudo and Miyamoto [ShM] defined an equivalence relation on the set of simple subcoalgebras of C and showed that the equivalence classes correspond to the indecomposable summands. A weaker version of this equivalence relation was studied recently in [XF].
    [Show full text]