GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Conversation

Notices

  1. Embed this notice
    (NekoSock) Miya Ironami (iro_miya@mk.absturztau.be)'s status on Friday, 12-Jul-2024 01:24:47 JST (NekoSock) Miya Ironami (NekoSock) Miya Ironami

    WHAT

    In conversation Friday, 12-Jul-2024 01:24:47 JST from mk.absturztau.be permalink

    Attachments


    1. https://misskey-taube.s3.eu-central-1.wasabisys.com/files/a5d3d9f8-7d4b-4603-9836-b2336983948a.webp
    • kaia and narcolepsy and alcoholism :flag: like this.
    • Embed this notice
      翠星石 (suiseiseki@freesoftwareextremist.com)'s status on Friday, 12-Jul-2024 01:24:46 JST 翠星石 翠星石
      in reply to
      @iro_miya The post has it backwards - for loops are a functional abstraction of the scary math symbols.
      In conversation Friday, 12-Jul-2024 01:24:46 JST permalink
    • Embed this notice
      nina (q66@blahaj.social)'s status on Friday, 12-Jul-2024 03:58:16 JST nina nina
      in reply to

      @iro_miya i've been entirely convinced for years that the whole reason i cannot math is that math notation is just "every variable name is a single letter" times 1000

      In conversation Friday, 12-Jul-2024 03:58:16 JST permalink
      Haelwenn /элвэн/ :triskell: and :blobancap: :blobcattrans: :blobancap: :blobcattrans: :blobancap: :blobcattrans: like this.
    • Embed this notice
      Haelwenn /элвэн/ :triskell: (lanodan@queer.hacktivis.me)'s status on Friday, 12-Jul-2024 04:01:01 JST Haelwenn /элвэн/ :triskell: Haelwenn /элвэн/ :triskell:
      in reply to
      • nina
      @q66 @iro_miya In a way Math is like obfuscated APL and also more toward functional than imperative.
      In conversation Friday, 12-Jul-2024 04:01:01 JST permalink
    • Embed this notice
      翠星石 (suiseiseki@freesoftwareextremist.com)'s status on Friday, 12-Jul-2024 04:02:25 JST 翠星石 翠星石
      in reply to
      • Haelwenn /элвэн/ :triskell:
      • nina
      @lanodan @q66 @iro_miya APL mentioned.

      https://www.gnu.org/software/apl/
      In conversation Friday, 12-Jul-2024 04:02:25 JST permalink

      Attachments

      1. Domain not in remote thumbnail source whitelist: www.gnu.org
        GNU APL
        Welcome to GNU APL
    • Embed this notice
      karna :flipflop: :buffsuki: (karna@poa.st)'s status on Friday, 12-Jul-2024 04:08:10 JST karna :flipflop: :buffsuki: karna :flipflop: :buffsuki:
      in reply to
      • 翠星石
      • Haelwenn /элвэн/ :triskell:
      • nina
      @Suiseiseki @lanodan @q66 @iro_miya
      In conversation Friday, 12-Jul-2024 04:08:10 JST permalink

      Attachments


      1. https://i.poastcdn.org/c83fd2038138da31f7a1b57d765245f27e29555579700ee3afffb5151bd26395.png
      翠星石 likes this.
    • Embed this notice
      翠星石 (suiseiseki@freesoftwareextremist.com)'s status on Friday, 12-Jul-2024 04:10:12 JST 翠星石 翠星石
      in reply to
      • karna :flipflop: :buffsuki:
      @karna Yes, he had indeed been crafting the perfect memes even prior to 1969.
      In conversation Friday, 12-Jul-2024 04:10:12 JST permalink
    • Embed this notice
      Gnarley Boot (gnarley_boot@norwoodzero.net)'s status on Friday, 12-Jul-2024 19:12:39 JST Gnarley Boot Gnarley Boot
      in reply to
      • 【Ξnigmatico】:misskey:
      • T man :sex: :puffgiga: :puffpowerroll:
      • MathIIIX
      • Iska
      • Gnarley Boot
      @iska @enigmatico @iro_miya

      Yeah hit them up with real math they will know what yer talking about cc @theorytoe @3T
      In conversation Friday, 12-Jul-2024 19:12:39 JST permalink
      ✙ dcc :pedomustdie: :phear_slackware: likes this.
    • Embed this notice
      Gnarley Boot (gnarley_boot@norwoodzero.net)'s status on Friday, 12-Jul-2024 19:12:40 JST Gnarley Boot Gnarley Boot
      in reply to
      • 【Ξnigmatico】:misskey:
      • Iska
      @iska @enigmatico @iro_miya

      AFAIK toe and 3T are math brains.
      In conversation Friday, 12-Jul-2024 19:12:40 JST permalink
    • Embed this notice
      Iska (iska@catposter.club)'s status on Friday, 12-Jul-2024 19:12:41 JST Iska Iska
      in reply to
      • 【Ξnigmatico】:misskey:

      @enigmatico@mk.absturztau.be @iro_miya@mk.absturztau.be do you actually think fedi users can comprehend math above elementary school

      In conversation Friday, 12-Jul-2024 19:12:41 JST permalink
    • Embed this notice
      【Ξnigmatico】:misskey: (enigmatico@mk.absturztau.be)'s status on Friday, 12-Jul-2024 19:12:43 JST 【Ξnigmatico】:misskey: 【Ξnigmatico】:misskey:
      in reply to

      @iro_miya While it's true that you can implement sums using a for loop, it can be optimized using basic summation identities. More specifically

      \displaystyle{\sum^k_{n=0}3n = 3\sum^k_{n=0}n = 3\left(\sum^{k-1}_{n=0}n + k\right) = 3\left(\frac{k(k-1)}{2}+k\right)}

      Where k \in \mathbb{Z}⁺, k > 0. So you can simply use this generic formula and save yourself a for loop.

      The same can be applied to the multiplication as well, although in this case how much computational cost you save will depend on how the machine calculates the factorial.

      \displaystyle{\prod^k_{n=1}2n = 2\prod^k_{n=1}n = 2(k!)}

      In conversation Friday, 12-Jul-2024 19:12:43 JST permalink
    • Embed this notice
      Alex M. Dunne (he/him) :ally: (alex@masto.digittante.com)'s status on Saturday, 13-Jul-2024 04:29:38 JST Alex M. Dunne (he/him) :ally: Alex M. Dunne (he/him) :ally:
      in reply to
      • Haelwenn /элвэн/ :triskell:
      • nina

      @lanodan @q66 @iro_miya

      I co-sign this. Recovering (still) #APL user here....

      In conversation Saturday, 13-Jul-2024 04:29:38 JST permalink
      Haelwenn /элвэн/ :triskell: likes this.
    • Embed this notice
      Ryan Castellucci (they/them) :nonbinary_flag: (ryanc@infosec.exchange)'s status on Wednesday, 04-Dec-2024 17:44:16 JST Ryan Castellucci (they/them) :nonbinary_flag: Ryan Castellucci (they/them) :nonbinary_flag:
      in reply to
      • Freya Holmér

      @iro_miya @acegikmo being able to read math notation in academic papers is a superpower

      In conversation Wednesday, 04-Dec-2024 17:44:16 JST permalink

Feeds

  • Activity Streams
  • RSS 2.0
  • Atom
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.