微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Monoid图和“身份态素是唯一的”

如何解决Monoid图和“身份态素是唯一的”

在类别理论:Monoid主题中,我经常观察到这样的解释:

enter image description here

enter image description here

http://yogsototh.github.io/Category-Theory-Presentation/categories.html#slide-28

enter image description here

http://bitterharvest.hatenablog.com/entry/2019/04/18/133250

但是,我了解身份形态是唯一的

https://proofwiki.org/wiki/Identity_Morphism_is_Unique

所以,我想在同一物体上提供图像多个身份同构是不合适的。

如果我错了,我想念什么?谢谢。

使用JavaScript代码进行编辑:

  // a is a singleton (any category with a single object)
  const identity = a => a;
  // identity morphism is unique on the cateogory
  console.log(
    identity("")  // "" is identity of Strings
      + identity("H")
      + identity("e")
      + identity("l")
      + identity("l")
      + identity("o")
  );

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。