Programming with Math | The Lambda Calculus

Поделиться
HTML-код
  • Опубликовано: 21 дек 2024

Комментарии • 672

  • @eth3792
    @eth3792 6 месяцев назад +1010

    The phrase "we know it's correct because it type checks" has blown my mind. I must learn more about Curry-Howard correspondence now

    • @tylerfusco7495
      @tylerfusco7495 6 месяцев назад +107

      if you want to go really far into it, look into languages with this taken to the logical extreme, like Lean4. people have written a huge amount of math as code, and *the fact that it type checks* means that all of those proofs are correct.

    • @warmooze
      @warmooze 6 месяцев назад +13

      Absolutely insane

    • @MrSamwise25
      @MrSamwise25 6 месяцев назад +43

      Just a warning: the treatments I've seen of the CH correspondence (e.g. Girard's Proofs and Types) have either been frustrating in key technical points or too vague to get a deep understanding. This isn't to dissuade you, but to reassure you that it isn't you, it's the text.

    • @MrSamwise25
      @MrSamwise25 6 месяцев назад +4

      What's your favorite first-order logic system? Mine is Fitch-style proofs, and I found it easier to just go through the correspondence myself with that system.

    • @jawad9757
      @jawad9757 6 месяцев назад +20

      wait until you hear about dependently typed programming languages

  • @vivada2667
    @vivada2667 6 месяцев назад +400

    This video is super good. Multiple times throughout the video, I was like "ok this does not make any sense" and then immediately after saying that, you said "That seems confusing. Let's look at an example."

    • @Eyesomorphic
      @Eyesomorphic  6 месяцев назад +79

      That's very reassuring, I'm glad you enjoyed it :)

  • @AnOldGreyDog
    @AnOldGreyDog 6 месяцев назад +335

    One of the things I took away from reading _Gödel, Escher, Bach_ (mumble, mumble) years ago was that computer languages don't differ in their _ability_ only in their _expressiveness_ . In other words, any language (of at least λ-calculus complexity) can do what any other language can. It's just easier to express in some.

    • @anywallsocket
      @anywallsocket 6 месяцев назад +38

      Yeah cuz λ calc is Turing complete, so it’s complexity is sufficient to simulate any normal computation, including the simulation of any other computer.

    • @writerightmathnation9481
      @writerightmathnation9481 6 месяцев назад +13

      Complexity is not the same as effectiveness.
      Some languages are faster because of their expressiveness, and others are slower because of the design of their use of their expressive power.

    • @anywallsocket
      @anywallsocket 6 месяцев назад +33

      @@writerightmathnation9481 i believe that was OP's point, you just said it differently. no one is saying complexity == effectiveness

    • @SL3DApps
      @SL3DApps 6 месяцев назад +2

      This isn’t true. A language ability is highly different when used for certain areas in computing. However, If you’re only interested in making simple programs then you won’t ever have to worry.

    • @cinderwolf32
      @cinderwolf32 6 месяцев назад +44

      ​@@SL3DApps things like I/O, direct memory access, network access, etc don't count here. This video, and the comment you're replying to, are about computation, not making programs and apps. Computation does not care about these things, and studying it takes place in an imaginary world with infinite memory and infinite time. In that case, Scratch and C are equivalent. If you're seriously unconvinced, consider that someone has successfully emulated a RISC machine in Scratch and used it to boot Linux all within the project.

  • @darqed
    @darqed 6 месяцев назад +391

    as someone who loves both maths and programming, this is probably my favourite math video I've ever seen

    • @sadsongs7731
      @sadsongs7731 6 месяцев назад +5

      I mean, to claim that Lambda calculus can replace any programming language is like saying assembly can replace any programming language. True in theory but GOOD LUCK trying to get anywhere.

    • @tylerfusco7495
      @tylerfusco7495 6 месяцев назад +22

      @@sadsongs7731 i mean, thats literally what functional programming languages are. Lisp, Haskell, OCaML, Lean, Clojure, etc. Are all pretty widely used, and are literally built on top of nothing but lambda calculus (but in practice are optimized or compiled to speed up evaluation).

    • @sadsongs7731
      @sadsongs7731 6 месяцев назад +4

      @@tylerfusco7495 Those languages offer far more conveniences than what lambda calculus notation provides. They may be "built on top of" but they are not just lambda calculus.
      That was my point with assembly. You technically don't need anything else, but it's a pain in the behind to write compared to a higher level programming language.
      These languages offer abstractions that take time to learn and, sure, would be better if you didn't have to learn them but they are there because raw lambda, like raw assembly, is not user friendly.

    • @tylerfusco7495
      @tylerfusco7495 6 месяцев назад +15

      @@sadsongs7731 well yeah, nobody is advocating for lambda calculus being the actual thing you program in. that's like thinking a video outlining how assembly language works is advocating for assembly language to replace higher level languages. that's not the point, the point is that the higher level abstractions can all be built on top of and formalized using the lower level ones.

    • @Darkon10199
      @Darkon10199 6 месяцев назад +3

      if you love both math and cs i really recommend type theory. it's the math field that studies this stuff, lambda calculus is the starting point, but it's some of the most beautiful and groundbraking math i've ever studied

  • @yaksher
    @yaksher 6 месяцев назад +37

    @2:30 I like how this presented as some sort of obvious improvement over writing an arrow even though it's more visual noise and more characters.

    • @Anonymous-df8it
      @Anonymous-df8it 5 месяцев назад +3

      I wonder what the programming language would look like if the arrow was preserved

    • @yaksher
      @yaksher 5 месяцев назад +1

      @@Anonymous-df8it This is what languages like Ocaml do.

    • @ScottHess
      @ScottHess 2 месяца назад +8

      In a regular computer system, using . is a lot easier than using an arrow. Of course, the notation also added lambda at that point, so no gains had…

    • @yaksher
      @yaksher 2 месяца назад

      @@ScottHess Yeah, I mean, you can do that, but somehow virtually no language does, probably because it's much worse for legibility. Even haskell which does use a \ or lambda then uses an arrow, though you're right that it's less convenient to type than a dot. I think in practice, Rust's solution of using |args| is one of the better ones in terms of typing ergonomics

    • @0LoneTech
      @0LoneTech 27 дней назад

      @@yaksher Fun fact; Emacs VHDL mode binds ,, and .. to arrows left and right () to make them easier to type. Programming editors tend to have such capabilities. As for typing ergonomics, you might be horrified at the contortions programmers in countries where the leading language isn't English get to do. []{}\|@$ˆˋ are distinctly not easy to type e.g. with a standard Swedish/Finnish layout.

  • @little-ork
    @little-ork 6 месяцев назад +376

    halfway through the video I suddenly understood Haskell

    • @ckpioo
      @ckpioo 5 месяцев назад +4

      💀💀

    • @ckpioo
      @ckpioo 5 месяцев назад

      haskell mentioned

    • @peacefulexistence_
      @peacefulexistence_ 5 месяцев назад +8

      LC does have that effect on people :) ML (the family of languages Haskell is a part of) derives from LC.

    • @rogergalindo7318
      @rogergalindo7318 5 месяцев назад +7

      now you have to follow the prophecy and become a haskell wizard!

    • @pascalcharbonneau9019
      @pascalcharbonneau9019 3 месяца назад +1

      I have been trying really hard to learn functional programming without learning Haskell and this video gave me hope haha.

  • @AndresFirte
    @AndresFirte 6 месяцев назад +80

    This video is amazing! I encourage everyone to watch the video, and then grab a pen and paper and rewatch the video, trying to get ahead of what is being shown.
    I tried that and realized that I hadn’t actually understood many of the things in the video, like the notation. Videos like these are so well explained that you often feel like you understood everything. But then when you grab pen and paper you realize that there’s many details that you missed. And by the end of it, you feel like you truly understood 90% of it

  • @AlLiberali
    @AlLiberali 6 месяцев назад +40

    Years of fp propaganda from my friends; And it is this video that finally convinces me it is in fact worth the effort

    • @Eyesomorphic
      @Eyesomorphic  6 месяцев назад +12

      That is quite the compliment, thank you!

    • @CTimmerman
      @CTimmerman 5 месяцев назад

      @@Eyesomorphic As a Python fan, I still prefer Python's readability to Lisp and math. AND and NOT gates are more intuitive to me than strange symbol transformations with formulas i never learned.

    • @voltydequa845
      @voltydequa845 3 месяца назад +3

      No way! This video, although valid, has nothing to do with the (added) value of FP. This video wouldn't have contributed to your appreciation of the FP if you didn't already knew about FP. It happens because too many FP zealots fail to explain it in a linear and axiomatic way. For example FP helps abstraction, but too many of them fail to abstract being obsessed by side-effects, purity, etc etc. Kinda fundamentalists that get lost in their talking the functional talk.

  • @codeguru5024
    @codeguru5024 6 месяцев назад +178

    7:30 "This method...is named currying after the magician Haskell Curry." I'm sure advanced mathematics seems to be magic to some people.

    • @houstonbova3136
      @houstonbova3136 6 месяцев назад +27

      I thought he said Logician.

    • @maximumhamster
      @maximumhamster 6 месяцев назад +18

      I heard the same thing, but it was due to listening on 2x speed. When I put it back to the 1x speed I could hear Logician.

    • @BonktYT
      @BonktYT 6 месяцев назад +2

      get off your high horse

    • @angeldude101
      @angeldude101 6 месяцев назад +18

      I heard "magician" and I was playing at 1x speed _and_ had captions turned on that said "logician."

    • @lemoneer7474
      @lemoneer7474 6 месяцев назад +9

      What’s funny is that this isn’t even the first time I’ve misheard logician as magician.

  • @vivekkaushik9508
    @vivekkaushik9508 Месяц назад +4

    Beautiful. I wish all subjects were taught like this in school. Soothing piano background music. Slow yet consistent pacing. Small breaks between individual sub topics. Thanks man. ❤

    • @Eyesomorphic
      @Eyesomorphic  Месяц назад

      Thank you very much for the kind words :D

  • @blaz2892
    @blaz2892 6 месяцев назад +300

    Lambda Calculus seems like the Functional version of a Turing Machine. Very interesting.

    • @Eyesomorphic
      @Eyesomorphic  6 месяцев назад +196

      They are computationally equivalent, so you can actually encode a Turing Machine in the lambda calculus, and vice versa! This also means that there is a lambda calculus equivalent of a Universal Turing Machine, so you can build terms in the lambda calculus that act as an interpreter to run terms in the lambda calculus!

    • @anywallsocket
      @anywallsocket 6 месяцев назад +30

      Bro watched the video 😂

    • @scottcarothers837
      @scottcarothers837 6 месяцев назад +16

      @@Eyesomorphicwell, yeah, of course they’re equivalent. lamba calculus is turing complete.

    • @zTJq40sl
      @zTJq40sl 6 месяцев назад +25

      ​@@Eyesomorphic It's even relatively simple: If we encode
      the variable x as λ a b c . a x
      the application M N as λ a b c . b [encoding of term M] [encoding of term N]
      the lambda abstraction λ x . M as λ a b c . c (λ x . [encoding of M])
      then an interpreter for the such-encoded lambda terms is "just"
      E = Y λ e m . m (λ x . x) (λ m n . (e m) (e n)) (λm v . e (m v))
      where (as seen at 12:28)
      Y = λ f . (λ x . f (x x)) (λ x . f (x x))
      (I'm using here "λ x y z . M" as a shorthand for "λ x . λ y . λ z . M", as usual once we've seen that we can emulate multi-argument functions by currying.)
      So yeah, if just looking at these lambda terms, they might seem rather unwieldy. But considering that they implement a fully self-hosting interpreter for a turing-complete language, they are rather tame. (And all the a b c-dot-something stuff is just for marking the encoded terms as (a) variable, (b) application or (c) abstraction, so that the interpreter can handle them accordingly.)

    • @BC2300-NewStart
      @BC2300-NewStart 6 месяцев назад +13

      Yeah, there's this thing called the church Turing thesis thay was only found cuz church and Turing realized that their attempts at defining computability were basically equal fr

  • @gerocastano8
    @gerocastano8 6 месяцев назад +18

    As a computer science student that studied functional programming and mathematics, I absolutely love this video. Please keep going!

  • @tessimago9625
    @tessimago9625 6 месяцев назад +309

    that's nice, now print "hello world"

    • @angeldude101
      @angeldude101 6 месяцев назад +40

      Hmm... that might be challenging... Would you accept just returning a string containing the characters for "hello world".
      In typed lambda calculus: "hello world"
      In untyped lambda calculus: (would need to define cons cells to form a linked list and store in that list the Church-encoded Peano numbers corresponding to the ASCII/Unicode codepoints of each character)

    • @AnarchoAmericium
      @AnarchoAmericium 6 месяцев назад

      (λx:String.x)("hello world")

    • @gregoryfenn1462
      @gregoryfenn1462 6 месяцев назад +19

      No, returning a string or data object isn't what the OP wants, they want the program to literally write to our stdout console. It's the most basic task in any new programming language, so how is that done in lamda calculus?

    • @angeldude101
      @angeldude101 6 месяцев назад +93

      @@gregoryfenn1462 For a more serious answer, one possibility would be to evaluate to a function whose argument is a hypothetical print "function", and then call that "function" with "hello world".
      Lambda Calculus can perform any _pure_ computation, but it doesn't inherently have any access to any host environment. Technically, if you stripped C of external libraries (including libc) and inline assembly, you would be just as incapable of "printing" to a "screen" as you would be in pure Lambda Calculus. Same as if you tried to write Brainfuck without the . and , commands.

    • @ngkksr6_ayy
      @ngkksr6_ayy 6 месяцев назад

      consider a "standard library" - your program must be a function, not an application, and it accepts a pair list of all input. it can also emit a pair list itself, to represent the output.
      funnily, pairs can be used as sort-of-iterators, given that cons = \x. \y. \f. f x y; car = \p. p (\x.\y. x) ; cdr = \p. p (\x.\y. y), then we can have a lazyCons = \x.\f.\g. g x (lazyCons (f x) f) [google y combinator recursion], meaning that lazyCons 1 (\x. x + 1) gives us a list of all natural numbers, i.e. enumFrom 1 in haskell. with this, we can theoretically process any input stream, do computation with it, and emit output partially while the computation is going on much the same way a regular turing machine can. lambda calculus was not intended as proof math can be a programming language, but that machines can do math
      or something, idk im not a computer scientist

  • @alicagank
    @alicagank 6 месяцев назад +25

    I’m a linguist, not particularly mathematically inclined, and honestly, I can’t believe I understood half of it. Incredibly simple yet intuitive. I love the visuals too! Please keep up the good work! :))

    • @kikivoorburg
      @kikivoorburg 4 месяца назад +3

      Some linguists have rigorously encoded linguistics using type theory! It’s well beyond my level of understanding, but some information can be found on Wikipedia

    • @voltydequa845
      @voltydequa845 3 месяца назад

      @@kikivoorburg If it was so we would have today real (symbolic logic) AI instead of the hyped trickstery that is presenting the gpt/llm stochastic parrot, or, better, the technique of "pattern matching on steroids"(© Torvalds), as AI.
      Language understanding (understanding implies inferences, so no llm) is all about domain, context and cognitive representation. Though types (domain & context) can help, encoding the cognitive representation is prohibitive seen the complexity (if we were that intelligent, we would have implemented the industrial revolution as soon as we got down from the trees).

    • @cube2fox
      @cube2fox 2 месяца назад +2

      Simply typed lambda calculus is actually used in formal semantics, which is a branch of linguistics.

    • @carmensavu5122
      @carmensavu5122 2 месяца назад

      @@cube2fox Yea, but I don't think it works.

    • @emilmullerv3519
      @emilmullerv3519 Месяц назад

      To think that just because we can enconde certains part of language into math theories, then it would follow that we would be able to use that encoding directly in real life applicatios is absurd.
      LLM and tyoe theoretical analysis of language have wildly different onjectives, people who work iin the latter have interest in analysing the language itself, not in building applications that can chat with people or whatever ​@@voltydequa845

  • @chrisray9653
    @chrisray9653 6 месяцев назад +26

    This reminds me of that MIT video from '86 talking about the eval / apply loop at the core of Lisp. "MIT Structure and Interpretation of Computer Programs" "Scheme / Lisp"

    • @dw3yn693
      @dw3yn693 6 месяцев назад +1

      you've got a link?

    • @jackren295
      @jackren295 6 месяцев назад

      @@dw3yn693 I think it's this series, which is a classic: ruclips.net/video/-J_xL4IGhJA/видео.html

    • @chrisray9653
      @chrisray9653 6 месяцев назад

      @@dw3yn693 It's called Structure and Interpretation of Computer Programs (SICP MIT by Abelson and Sussman)

    • @nythrox3047
      @nythrox3047 6 месяцев назад

      What's the name

    • @mikemilner8080
      @mikemilner8080 2 месяца назад

      @@dw3yn693 Try a Google search of the MIT OpenCourseWare web site. The Wizzard book (Structure and Interpretation of Computer Programs) gets its name from the MIT course 6.001's title.
      I took 6.001 way back in 1969 - at that time the course used PAL (Pedagogical Algorithmic Language), a syntacically sugared version of Curried Lamba Calculus. Having only be previously exposed to procedural languages, the power of functional languages was a revelation.

  • @tjperkins2323
    @tjperkins2323 6 месяцев назад +44

    Great timing! I've always wanted to share this with my friends but I find it extremely hard to explain. It's nice that you made it accessible to others without much experience in math.

    • @Eyesomorphic
      @Eyesomorphic  6 месяцев назад +7

      Glad it was helpful!

    • @scroipt
      @scroipt 6 месяцев назад +3

      Though this really is more of a "hey this seems to work out" kind of proof than a particularly rigorous one.

  • @hitoshiyamauchi
    @hitoshiyamauchi 6 месяцев назад +4

    I thank you for this excellent introduction to lambda-calculus. Thanks for the video. 😀

    • @Eyesomorphic
      @Eyesomorphic  6 месяцев назад +3

      That means a lot, thank you :D

  • @himanshutripathi7441
    @himanshutripathi7441 6 месяцев назад +16

    This is why i pay for internet.
    Thank you very much. I did not pay much attention in class , but if the class was explained like this it would have been awesome.

  • @rumble1925
    @rumble1925 6 месяцев назад +5

    I recommend the talk "Lambda Calculus - Fundamentals of Lambda calculus & functional programming in Javascript" and follow along in the code examples - for anyone that wants to try this in practice and encode your own functions

  • @Ploofles
    @Ploofles 6 месяцев назад +96

    so what your saying is i can write every single python program in one line

    • @neutillius
      @neutillius 6 месяцев назад +8

      But It ld be a very long one. Like classical literature sentences for pages.

    • @natebrown2805
      @natebrown2805 6 месяцев назад +15

      exec("print('hello')
      print('world')")

    • @TrusePkay
      @TrusePkay 6 месяцев назад +6

      Try languages like F# and Scala. You will see how 3 lines of Scala will dwarf 15 lines of Java

    • @AkivaB
      @AkivaB 5 месяцев назад +1

      You can already do many of them anyways
      Comprehensions are weird

    • @M-F-H
      @M-F-H 5 месяцев назад

      even without "def" : just a single lambda expression! :)

  • @andrew_ray
    @andrew_ray 6 месяцев назад +35

    And if you've ever had the privilege of writing Haskell code, it uses the same kind of type checker using an algorithm developed by Milner and Hindley to prove that your program is 100% type-safe, which actually means that if your code compiles, there's a decent chance it's correct. And if it's not, then your toe definitions aren't robust enough.

    • @Zeero3846
      @Zeero3846 3 месяца назад +1

      A compiled program is going to be correct, but whether you actually described the problem you intended to solve is an exercise left entirely to you.

    • @andrew_ray
      @andrew_ray 3 месяца назад

      @@Zeero3846 But by making liberal use of newtypes, the compiler can forbid many mistakes. For example, if you define newtypes for Seconds, Minutes, and Hours, the compiler will not let you make the mistake of assigning a number of minutes to a variable that expects to be denominated in hours. Or inches. Or hectopascals.
      You can avoid forgetting to sanitize inputs by requiring that all rendered strings be wrapped in a SafeString newtype. With the OverloadedStrings directive, string literals within the code don't need to be made safe, but any strings that come from user land do. And if the only way to convert a user land String to a SafeString is through the sanitizer... then you've proven you haven't forgotten to sanitize any user input because your program literally wouldn't typecheck if you had.

    • @voltydequa845
      @voltydequa845 3 месяца назад

      @@Zeero3846 Suggestion: the next time ask the gpt-style commenter to define better, by quantifying, what his «decent chance it's correct» means. He got 32 likes for serving hot-air - a dynamics similar to that of popular tv shows where more simplistic and vague one is, more the public appreciates.

  • @neoplumes
    @neoplumes 6 месяцев назад +16

    Wait, this was released 10 days ago? I swear I come back to watch this every 6 months

  • @danielli3288
    @danielli3288 2 месяца назад +3

    this video is very good, it doesn't assume what you know and explains everything in a clear and concise way

  • @Dhiren_
    @Dhiren_ 3 месяца назад +6

    This is the best video I've seen on understanding how lambda calculus relates to logic, at the low-level! Thank you!

  • @shadamethyst1258
    @shadamethyst1258 6 месяцев назад +48

    11:00 - "there aren't any y in M"
    If only Coq would accept this as a proof every time this one detail comes up...

    • @СергейМакеев-ж2н
      @СергейМакеев-ж2н 6 месяцев назад +4

      Are you using de Brujin indices? If so, when substituting M into x, the last thing you do to M is increase all indices by 1, which means there aren't any zeroes there, right?

    • @shadamethyst1258
      @shadamethyst1258 6 месяцев назад

      @@СергейМакеев-ж2н That's the solution that the class I followed quickly led us to, yeah. But for a bit, we would work with call by value without de bruijn indices, and propagating substitutions across lambdas was a pain

  • @fredericmazoit1441
    @fredericmazoit1441 6 месяцев назад +47

    Very nice video. I would have added a hint as to why java is not more powerful than lambda calculus: we can write a java interpreter in lambda calculus. Thus any computation of a java program can be be performed by a lambda term.

    • @56independent
      @56independent 6 месяцев назад +5

      How does one then interact with the OS like most programming languages allow? How does one do the less abstract and more pragmatic "get me onto the internet" stuff?
      Whilst programming and lambda are equally powerful when considering closed systems where all the data is spoon-fed, in the real world of hardware and connections, one needs the interface with the real world.

    • @Matthew-by2xx
      @Matthew-by2xx 6 месяцев назад +11

      @@56independentThere are functional languages like Haskell, you still very much so can.

    • @fredericmazoit1441
      @fredericmazoit1441 6 месяцев назад

      @@56independent As with a processor, there are 2 kind of conputation: inputs/outputs and "real" computation.
      The structure of most programs can be reduced to
      while not finished:
      inputdata=input()
      data=computation(data)
      output(data)
      When we say that lambda calculus is as powerful as, say, java, we do not consider inputs/outputs.

    • @aioia3885
      @aioia3885 6 месяцев назад +2

      you could also make a java interpreter in the lambda calculus. In fact, someone made a compiler from c to the lambda calculus

    • @56independent
      @56independent 6 месяцев назад

      @@Matthew-by2xx ah, i forgot i even tried to learn it once

  • @PantheraLeo04
    @PantheraLeo04 Месяц назад +3

    I tried evaluating that "if 1 then false else true" example you gave to see if it could still be interpreted even though when using the abstracted names it looks like nonsense. When I expanded it out and worked through all the beta reductions, I got the identity function "λb.b". It's really cool that even when things seem like they should nonsense with no reasonable interpretation, you can still break it down and try to make something from it anyway.

  • @mohamedfarouk9654
    @mohamedfarouk9654 6 месяцев назад +38

    Alice is so obsessed with Java.

  • @GlortMusic
    @GlortMusic 6 месяцев назад +11

    You summed up most of the Theory of Computation, Complexity and Logic course that I attended at university. Kudos to you Eyesomorphic! 👏🏼

  • @LethalChicken77
    @LethalChicken77 6 месяцев назад +65

    The problem with functional programming is it's not how humans think and it's not how computers work.

    • @mushykitten
      @mushykitten 5 месяцев назад +13

      nontheless it's an extremely useful tool for computer science. sometimes computer science or math is about exploring these unique systems and seeing what is there to learn about them.

    • @rogergalindo7318
      @rogergalindo7318 5 месяцев назад +12

      the thing is, it’s not that simple. Compiler optimizations can do wonders. Haskell can get at 3x C. Which really is on the camp of go, java, etc, o only beaten by cpp c or rust
      on the other hand, once you “get” how to think “functionally”, it’s really not that hard. It’s just a matter of usage or habit

    • @klermaud314
      @klermaud314 4 месяца назад +19

      It is definitely how many people think. It just depends on how you learned programming. And basically no programming language that people write their programs in is how computers work. The whole point of programming languages is to abstract away from the underlying machine.

    • @klembokable
      @klembokable 4 месяца назад +7

      I disagree with everything you just said. As someone who has built a garbage register computer in a simulation, and wrote a bit of haskell, I see as little connection between haskell and assembly as I do between python and assembly...

    • @klembokable
      @klembokable 4 месяца назад +5

      As far as humans thinking is concerned, I think seeing the world in terms of the inputs and outputs of actions makes about as much sense as seeing things in terms of the individual attributes of the objects acted on

  • @throstlewanion
    @throstlewanion 5 месяцев назад +3

    Absolutely fascinating premise. At first I was a bit confused about the purpose of this language, but now you have opened my eyes to the existence of an entire field dedicated to the study of the theory of programming. Wonderful video!

    • @Eyesomorphic
      @Eyesomorphic  5 месяцев назад

      I'm glad that the video had it's intended effect! Thanks :)

  • @amritawasthi7030
    @amritawasthi7030 6 месяцев назад +7

    I knew about your channel since I watched the videos about category theory. I don't know how i didnt subscribe this channel. This video popped up and i was amazed by it. It's so wonderful in all sense. I watched this and saw that I hadn't subscribed to this channel.

  • @liobello3141
    @liobello3141 2 месяца назад

    You have made me very happy today.

    • @Eyesomorphic
      @Eyesomorphic  2 месяца назад

      Likewise! Thanks very much :)

  • @amroelkhodrai3048
    @amroelkhodrai3048 25 дней назад +1

    That’s the quality content I want to see more in my feed! Keep up the good work!

  • @ai_outline
    @ai_outline 6 месяцев назад +6

    We need more channels like this. Great Computer Science content mate!! Instant subscribe 🙏🏼

  • @setheisenberger247
    @setheisenberger247 3 месяца назад +1

    Incredible video. I was learning Lean4 a few months ago and found it difficult to wrap my head around the syntax. This video gives excellent motivation for the way Lean is!

  • @ruanvermeulen7594
    @ruanvermeulen7594 5 месяцев назад +1

    I came back to this video. I wanted to tell someone else about the concept, but no reading material explains it this beautifully. Of course I just gave them the link to the video.

    • @Eyesomorphic
      @Eyesomorphic  5 месяцев назад

      That's extremely kind, thanks!

  • @JoseOrtiz-df7oq
    @JoseOrtiz-df7oq 4 дня назад +1

    Fascinating. I am an old computer programmer doing C++ and found this video fascinating

  • @iisthphir
    @iisthphir 6 месяцев назад +31

    Good concept, shame about the masochist who came up with the notations.

  • @ryanbartlett672
    @ryanbartlett672 5 месяцев назад +1

    Great animations, pacing, and no assumption that we know this logic

  • @swankitydankity297
    @swankitydankity297 3 месяца назад +1

    fantastic video! you paced it so well and animated it so clearly that I was able to follow closely and never felt lost.

  • @bennyboiii1196
    @bennyboiii1196 5 месяцев назад +1

    There's a lambda interpreter called Interaction Combinators which uses graph theory to do lambda calculations in parallel without any race conditions or collisions. This actually makes parallel computing a lot easier for functional programmers, because historically, it was extremely difficult for FP do be done in parallel. It's also easier than doing it with procedural programming languages, because you don't need mutexes and locks.

    • @samuelmayna
      @samuelmayna 3 месяца назад

      Where did you read this?😂😂😂The opposite is what is true. FP was actually invented to enhance multiprocessing since no state is shared.

  • @wol2403
    @wol2403 Месяц назад +1

    You know a video is really good when it takes you 2 hours to watch it even though its only 20 minutes long

  • @Italanon
    @Italanon 6 месяцев назад +3

    I was introduced to Alonzo Church’s lambda calculus paper when carrying out my a MSc. Course back in 1978. I don’t know how this popped up in my feed :)

  • @Oscar-vs5yw
    @Oscar-vs5yw 6 месяцев назад +3

    10/10, clear explanation, good examples, awesome balance of rigor and simplicity. And a conclusion that very much so made me wonder about lambda calculus! I was always too afraid to approach lambda calculus, but your video showed it to just be python! Thanks so much

    • @Eyesomorphic
      @Eyesomorphic  6 месяцев назад +2

      That's very encouraging, thanks for the kind words

  • @backhdlp
    @backhdlp 6 месяцев назад +4

    this is actually really easy to understand if your first programming language was functional

  • @kenevanchik4478
    @kenevanchik4478 2 месяца назад +1

    I had to take a course in this subject for my CS major long ago when I was a young man. It reminds me why I personally think I had so much problems with it, and certain kinds of math in particular. The concepts being presented to me are straightforward. What isn't however, is keeping all the symbols and characters clear in their meaning. I find these kinds of subjects tend to write things in ways which maximize brevity at the expense of understanding. Maybe that's just needed if you're an expert in the field, but honestly there just isn't enough mental separation for me from the visual presentation of the syntax. Variables are lower case letters, but applications are upper case. That beta-reduction example of M[N/x] is masking a lot going on. The example is simple in the video for comprehension, but that can get really complicated in a hurry. As a developer in the real world you can see lambda expressions in languages such as Kotlin, and frankly I don't know how much I like it. A lambda expression for a common or well known function is easier to type. If however, the function isn't well known, or complicated, then a lambda expression can make the function cryptic to the developer and difficult to grasp.

  • @ChecedRodgers
    @ChecedRodgers 5 месяцев назад +1

    What a lovely video. This nicely clarified a few concepts I'd encountered in passing but had not unpacked yet. Thanks for this.

  • @underfilho
    @underfilho 6 месяцев назад +6

    I was expecting some haskell propaganda, but its actually for proof-assistants, great to hear about that!

  • @Ridaha
    @Ridaha 6 месяцев назад +4

    Awesome video :-) Formalized mathematics is the future! A proof of Fermat's Last Theorem in LEAN is being currently worked on by professor Kevin Buzzard and the lean community!

  • @funktorial
    @funktorial 5 месяцев назад +1

    really good animations dude. also did a really good job of picking what not to include (eta reduction, Church-Rosser, etc)

  • @kevon217
    @kevon217 6 месяцев назад +5

    Wow, this was so intuitively explained. Excellent!

  • @julianvillaquira4127
    @julianvillaquira4127 5 месяцев назад +3

    First video I watch and immediately subscribed. PS: Eyesomorphic is a damn good name 🤯

  • @st04713
    @st04713 5 месяцев назад +1

    Awesome ! please and please upload more contents. This video saves a lot of my time trying to understand functional programing.

  • @danielpark9033
    @danielpark9033 3 месяца назад +1

    Thank you so much! I can now understand how lambda calculus works more than ever!

  • @shathamaayouf6048
    @shathamaayouf6048 3 месяца назад +1

    This was therapeutic and educational at the same time. Wow.

  • @cindrmon
    @cindrmon 5 месяцев назад +1

    thanks for igniting my interest for computer science just because of lambda calculus! didn't know this was indirectly taught to us through LISP, since it does seem resemble a lot of similarities to LISP's functional programming approach

  • @ChumitoMC
    @ChumitoMC 6 месяцев назад +1

    Can't believe it took me this video to understand Python's lambda function 😭 thx for this video! ☺️☺️☺️💖

  • @com0oan
    @com0oan 5 месяцев назад +1

    Tried to understand lambda calculus for years. First video that made the concept click in my mind. thanks!

  • @familiagavassafavoretti4805
    @familiagavassafavoretti4805 6 месяцев назад +1

    Those pauses you make are key. Great job!!!

  • @alonamaloh
    @alonamaloh 6 месяцев назад +12

    "Makes ANYTHING a comptuter can do", except for spell checking, apparently. :)

    • @Eyesomorphic
      @Eyesomorphic  6 месяцев назад +8

      That does seem to be the case 😭

  • @blankboy-ww7jt
    @blankboy-ww7jt 6 месяцев назад +1

    Very good introductory content, from lambda calculus to types and the CH correspondence

  • @nerida3347
    @nerida3347 2 месяца назад +1

    Man, i would've paid attention in math class if my teachers took their time like this and explain it clearly lol

  • @Phostings1
    @Phostings1 6 месяцев назад

    I was always curious about what a lamda function did. I did some digging around and eventually understood how it works on the programming side of things. So watching this verified my understanding to some extent and made me feel a little better knowing i'm not quite strong in math,lol.

  • @cmilkau
    @cmilkau 2 месяца назад

    Not only do you only need 3 rules of syntax, in fact you only need 3 objects: a "const" function (λx.λy.x), a "symbolic evaluation" function (λf.λg.λx.[f(x)][g(x)]) [you can interpret this as taking a family f_x of functions and a family g_x of function arguments and return a family f_x(g_x) of function values), and function application. There is a mechanistic algorithm that turns any lambda expression into an expression tree containing just these two functions as leaves and function composition as inner nodes.
    Some important derivations:
    const = λx.λy.x
    symb = λf.λg.λx.(fx)(gx)
    chain = λf.λg.λx. f(gx) = λf.λg.λx.(const f x)(gx) =(**)= λf.λg. symb (const f) g =(***)= λf. symb (const f) = λf. (const symb f)(const f) = symb (const symb) const
    swap_args = λf.λx.λy. f y x = λf.λx.λy. (f y)(const x y) = λf.λx. symb f (const x) =(*)= λf. chain (symb f) const = λf. (chain (symb f)) (const const f) = symb (chain chain symb) (const const)
    swap_args = λf.λx.λy. f y x = λf.λx.λy. (f y)(const x y) = λf.λx. symb f (const x) = λf.λx. (const (symb f) x)(const x) = λf. symb (const (symb f)) const = λf. symb (const (symb f)) (const const f) = symb (λf. symb(const(symb f))) (const const) = symb (symb (const symb) (λf.const(symb f))) (const const) = symb (symb (const symb) (symb (const const) symb)) (const const)
    const_id = λy.λx.x = swap_args const =(*)= chain (symb const) const =(**)= symb (const (symb const)) const
    id = λx.x = (λy.λx.x)(const) = const_id const =(*)= chain (symb const) const const = symb const (const const)
    There is a simpler derivation of const_id and id, but it doesn't yield the correct type on typical (a bit too naive) type systems:
    const_id = λg.λx.x = λg.λx. const x (gx) = λg. symb const g = symb const,
    id = λx.x = (λy.λx.x)(const) = const_id const = symb const const
    This is because typical type systems would expect g to accept a value x, even though it is never "called" like that, because the value gx is completely ignored.
    Other interesting equations:
    chain =(***)= λf. symb (const f) = chain symb const
    const_id = chain const_id const

  • @pianocoder
    @pianocoder 6 месяцев назад +3

    Thanks for the nice video again!
    It's very unfortunate that Coq wasn't mentioned here. :)
    For anyone interested in proof assistants, I recommend Software Foundations volume 1 for Coq, and mathematics in lean tutorial for Lean!

  • @FranoGames
    @FranoGames 6 месяцев назад +6

    finally haskell syntax makes sense

  • @kotylka90
    @kotylka90 6 месяцев назад +2

    this channel is so underrated!

  • @adrianfd7440
    @adrianfd7440 3 месяца назад +2

    I completely enjoyed this video. Thank you so much

  • @Double-Negative
    @Double-Negative 6 месяцев назад +3

    since regular lambda calculus is untyped, you can give functions inputs that shouldn't work. for example, if you add 2 instances of church + using church +, you get another binary function
    f(x,y) = 2x + y

    • @CTimmerman
      @CTimmerman 5 месяцев назад

      Sounds significant somehow, but dangerous like Perl.

  • @dylanjayatilaka8533
    @dylanjayatilaka8533 6 месяцев назад +3

    Bravo! I didn't think that the notion of higher order was special, but it was astounding that you could encode True and False. And "3", which seems to be three applications of any old function f. And recursion. And it seemed to me that the Curry-Howard correspondence could also itself be expressed in terms of the lambda calculus, as a proposition. Is there an end to this madness? It occured to me that, I myself might correspond to a kind of imperfect lambda machine, which begs the question, what machine? Where did the lambda notion of this representation of True and False come from? Is it possible to define a lamba expression/machine that comes up with hypotheses such as True and False, and is able to make and name things like Bool and "numbers"? I feel the answer to this imperfectly phrased question is False. But bravo again on this episode, I finally "get it", at the expense of going slightly mad. I just mention that I had to pause at several points, whereas on most other videos, I go at twice normal speed. Bravo!

  • @ValidatingUsername
    @ValidatingUsername 6 месяцев назад +4

    1:45 Do not confuse this with multivariable equations that you can find the inverse of or isolate for a variable and determine properties given that alpha equivalence and alpha conversion capacity.
    If y = x^2 that doesn’t mean x = x^2 unless the “programming language” overwrites the interpretation to make them isomorphic.
    Because that’s what different glyphs holding the same value is doing.

  • @cerulity32k
    @cerulity32k 5 месяцев назад +9

    SO THAT'S WHY ANONYMOUS FUNCTIONS ARE CALLED LAMBDAS

  • @germanassasin1046
    @germanassasin1046 2 месяца назад +1

    16:02 very generous of you to use c as an example for statically typed language

  • @sundae6610
    @sundae6610 5 месяцев назад +1

    This give me motivation. Making a language might be a good side project after i finished my current one haha

  • @DanDart
    @DanDart 6 месяцев назад +3

    I seriously thought you said "magician" instead of "logician" there - that's hilarious and probably also true.

  • @tricky2014
    @tricky2014 5 месяцев назад +3

    I find lambda calculus so much more elegant than turing machines.

  • @logician1234
    @logician1234 6 месяцев назад +3

    Please do a video on Calculus of Constructions and encoding logic in it

  • @RAyLV17
    @RAyLV17 6 месяцев назад +6

    I have always been kind of comfortable with programming, but found it difficult to go into proofs and higher mathematics. But learning about this and LEAN is giving me hope. I am surely gonna check it out!

    • @Eyesomorphic
      @Eyesomorphic  6 месяцев назад +4

      That's great to hear, proof assistants can be daunting but I find them very rewarding!

  • @NostraDavid2
    @NostraDavid2 6 месяцев назад +2

    If you want to do another video about math that's the foundation for a lot of code I recommend the Relational Model by E. F. Codd.
    I'll admit that the first paper was not as rigorous as the Lambda Calculus, but it is Super fundamental to any relational database.

    • @NostraDavid2
      @NostraDavid2 6 месяцев назад

      Oh, and use both 1969 (nice!) and 1970 papers!

  • @lexkoal8657
    @lexkoal8657 6 месяцев назад +1

    Thanks for the video. A few questions/clarifications: what does Applications M M means at 4:10, and it would have been helpful to explain how multiple inputs work: the most left input goes first and works on the most left lambda abstraction and so on. Because input goes where the variable is kinda obvious but other semantics of lambda calculus are not that clear

    • @vibaj16
      @vibaj16 3 месяца назад

      it means applying M to M. When lambda terms are next to each other, you apply from left to right, unless parentheses change the order: a b c means apply a to b, then apply that to c. On the other hand, a (b c) means apply b to c, then apply a to that.

  • @uliveulearnandregret
    @uliveulearnandregret 4 месяца назад +3

    Two big figures inventing programming concepts before programming was technically a thing

  • @qcolive
    @qcolive 6 месяцев назад +3

    close enough welcome back haskell

  • @taylormanning2709
    @taylormanning2709 5 месяцев назад +1

    "Named after the magician Haskell Curry" (7:37)
    Can't believe I had to look that up. For a second... I believed you

    • @Eyesomorphic
      @Eyesomorphic  5 месяцев назад +4

      Sorry, a few people seem to have misheard 'Logician' as 'Magician'. Though there is an argument to be had that Curry's work was profound enough to classify it as magic!

  • @JJ-tp2lc
    @JJ-tp2lc 4 месяца назад +2

    I hope you do another video on lambda calculus, especially on the Y combinator, because I still dont quite understand it

  • @TymexComputing
    @TymexComputing 6 месяцев назад +2

    20:45 - well there are some long elaborate proofs that could be found using LEAN but still you need to pass some time for it as many many of conjectures simply live over the basic axioms - as Turing proved himself.

  • @hazyfish1215
    @hazyfish1215 5 месяцев назад +1

    Only 7K upvotes? I would expect it to be 700K!!!

  • @the_actual_lauren
    @the_actual_lauren 6 месяцев назад +6

    Why don't we just use function notation as established early on in math education such as f(x) = x + 1 instead of lamda x . x + 1 which is harder to read?

    • @M_1024
      @M_1024 5 месяцев назад +3

      "^x.x + 1" is directly the function itself.
      "f(x) = x + 1" creates a function and gives it a name.
      Its like a difference between "5" (value) and "x := 5" (assigment).
      In fact "f(x) = x + 1" is equivalent to "f := (^x.x + 1)".

    • @the_actual_lauren
      @the_actual_lauren 5 месяцев назад

      @@M_1024 Thanks

  • @Andy17385
    @Andy17385 5 месяцев назад +2

    bro, where was this during my autumn semester :D

  • @linusandersen5608
    @linusandersen5608 6 месяцев назад +3

    any book recommendations on lambda calculus / computation theory?

  • @Dent42
    @Dent42 6 месяцев назад +2

    I'd be interested to learn how the encodings would change if incorporating ternary/paraconsistent logic

  • @snoopy1alpha
    @snoopy1alpha 5 месяцев назад

    I remember learning that at university. I also remember us covering the Y-function and recursion in the lambda calculus. I wish you hat covered that in more detail. My lambda calculus skills have been crippled over the years. However, I remember that I used to be good at it 😀Maybe I should challenge myself again in Haskell.

  • @kwi5331
    @kwi5331 3 месяца назад

    Thanks!

  • @TrusePkay
    @TrusePkay 6 месяцев назад +1

    This video reminds me of my F# days.
    The real fundamental property of functional languages that separate them from mainstream imperative languages is that functional code has an immutable state. You cannot reassign values on the fly. And there are no nulls, although these are compensated with Option type systems. This makes functional languages not suitable for applications where states are important.
    Because the definition is clear, functional languages are short and free of bugs most of the time. They read code left to right.
    I was talking to a friend. He asked me how can a programming language be practically acceptable if it does not have procedures like if statements, loop statements, nulls, return keywords.
    I showed him how pattern matching, function composition, partial applications, generative sequences, and list comprehension, pattern work in F# and Scala, and you don't need to write verbose repetitive loops and branches. Just go straight to the point, and the program is ready.
    It's sad that functional programming is not mainstream or not even computing with the mainstream.

  • @gregoryfenn1462
    @gregoryfenn1462 6 месяцев назад +2

    When you introduced the syntax for Lambda calculus at 4:30, there are no symbols for + or 1, so when you used those to define the function mapping x to x+1, how is that possible? Your example at 6:03 uses the + symbol, but this symbol itself is not even part of the Lambda calculus language, so you can not use it.

    • @chezbgone0
      @chezbgone0 6 месяцев назад +3

      We're using the symbols + and 1 for pedagogic purposes, but as noted later you can define numbers (and operations on them like addition) like we defined booleans, and there would be lambda terms that represent the symbols you mentioned.

  • @CjqNslXUcM
    @CjqNslXUcM 5 месяцев назад +1

    I'm eagerly awaiting the next video.

  • @bachirlachguel9218
    @bachirlachguel9218 6 месяцев назад +2

    This looks great and is very well explained, which software do you use for the slides ?

    • @Eyesomorphic
      @Eyesomorphic  6 месяцев назад +4

      I use Manim for the animated mathematics and pivot for the animated figures. Then I use da Vinci resolve to splice them all together :)

  • @GabriTell
    @GabriTell 6 месяцев назад +2

    I don't know if I'm the only one who appreciates how fascinating this is. ✨
    It's very cool not only because it allows you to give shape to the most abstract mathematical concepts, but also because it literally allows you to create new maths (since this is such a very high level of language abstraction, we haven't even defined things such as what means two "things" to be "equal"), we could even construct a realm of maths where there are three truth values (or as many as we want). The only limit is our imagination. 🔥✨
    This video inspired me to define maths as: "The language of creativity"

  • @GabriTell
    @GabriTell 2 месяца назад +1

    This is so great...
    Will you ever make a video about Type Theory? 👀

  • @PhilippSLSchäfer
    @PhilippSLSchäfer 4 месяца назад +1

    Lean is so cool! Not coming from a formal mathematical background Lean helped me to learn what mathematical proofs are all about. But since most analysis textbooks are based on ZF(C) and Lean is based on dependent type theory I couldn't use it to solve all my exercises :/