Тёмный

"Propositions as Types" by Philip Wadler 

Strange Loop Conference
Подписаться 83 тыс.
Просмотров 129 тыс.
50% 1

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 46   
@JoshAdams
@JoshAdams 8 лет назад
This is one of the best talks I've ever watched. If I could just encourage relatively young but hungry programmers to watch one talk, it might be this one. It led to me firing off about 4 different emails just while watching it, all of which I hope have some small impact on people.
@GaryWarman
@GaryWarman Год назад
can confirm. at about 13:17 and just the peripheral profundity I've sorta wandered into surrounding the concepts he's explaining alone is of immense value. for some reason his delivery is just particularly effective for me, although I must admit that my mind was somewhat primed for that sort of thing. all that being said, i hope that your experience is of comparable depth and relevance, and also yes hello I am on the internet pushing buttons on the computer rapidly to do things
@GaryWarman
@GaryWarman Год назад
also I genuinely look forward to the next ~30 minutes left of the video. (not un)fortunately youtibe mobile halts the video while posting comments. must be that halting problem I keep hearing about
@OttoNascarella
@OttoNascarella 7 лет назад
Wadler, Philip - "you don't put science in your name if you're real science"
@mahmedaa
@mahmedaa 7 лет назад
This is a great talk. And the best part of it is the Q&A at the end. Very informative presentation and even more thoughtful and great questions. I'll certainly come back and watch it again. Thanks Dr. Wadler!
@RobertBerger
@RobertBerger 9 лет назад
Mind expanding, plus he has a cape too.
@DumblyDorr
@DumblyDorr Год назад
This is perhaps my favorite talk about the Curry-Howard part of the Curry-Howard-Lambek correspondence. Phil also has talks about the other part (category theory), but there's so much to dive into here - Kleisli and Eilenberg-Moore categories, Lawvere theories etc., but most of all the general idea that things can be fully described by the relational structure they exhibit to the rest of the "universe". Fortunately, category theory has by now fully arrived in the FP world (~25 years from the discovery of Monads in FP?) - and there are many great talks on the subject. Dependent Types are still a fringe phenomenon in actual programming (path-dependent types in Scala and Typescript are probably the closest we've gotten in languages that are at least somewhat widely used in the the industry). Linear Logic and linear types have gotten some traction in certain semgents of the programming world, but to my knowledge, nothing concrete has manifested in productive programming languges. (Though please feel to correct me).
@metachirality
@metachirality 10 месяцев назад
Not linear types, but affine types have found use in Rust
@aion2177
@aion2177 7 лет назад
Last question is the best. Definitely my new favorite talk.
@scitwi9164
@scitwi9164 7 лет назад
33:55 For a moment I thought he will say "Thank you very much, and I will now take off" :)
@SzczesliwyCzlowiek
@SzczesliwyCzlowiek 9 лет назад
Worth the time, definitely.
@paryoticu
@paryoticu 9 лет назад
"[The core of Functional Languages] is not arbitrary. Their core is something that was written down once by a logician, and once by a computer scientist. That is, it was not invented, but discovered. Most of you use programming languages that are invented, and you can tell, can't you. So this is my invitation to you to use programming languages that are discovered."
@AshishNegi1618
@AshishNegi1618 8 лет назад
like which languages ?
@AshishNegi1618
@AshishNegi1618 8 лет назад
oh.. got it after watching the video..
@no_more_spamplease5121
@no_more_spamplease5121 Год назад
My interpretation is that he adopts the word "invented" for things that have an ad hoc nature, rather than something that later proves to be fundamental.
@julianfogel5635
@julianfogel5635 4 года назад
Wadler leaves out one critical consideration with his superficial criticism of the computer industry for not programming in languages built from lambda calculus. Cost, both in terms of computational complexity and in programmer's time. He brings up the example of garbage collection to prove his point that industry is too slow (stupid?) at adopting good ideas. The reason it wasn't adopted earlier is because it comes with a rather high cost in computing time and space that older machines couldn't handle. The reason it's adopted now is because the machines are faster and so capable of performing garbage collection in a reasonable amount of time, and since it saves programmers the from the work of coding release of memory by hand in all their work, it's now very cost-effective.
@davidnmfarrell
@davidnmfarrell 3 года назад
It's more nuanced than that. Lisp has had garbage collection and high performance for at least 40 years. Gabriel's "Worse is Better" is one explanation of why things are the way they are.
@lepidoptera9337
@lepidoptera9337 3 года назад
Garbage collection is simply a technique to get around lazy programmers by wasting endless machine cycles. I have never needed a gc in my entire life. My local variables are local, my global ones are global and if I have a few global ones too many, then simply because it doesn't matter.
@lepidoptera9337
@lepidoptera9337 3 года назад
@@davidnmfarrell Lisp had garbage collection because it needed it. Rational languages like C don't have it because they don't need it.
@no_more_spamplease5121
@no_more_spamplease5121 Год назад
@@lepidoptera9337 C does not "need" it - in fact, it would harm it - because one of its most important use cases is the fine control of memory by the programmer, which is very important for low-level systems programming. For instance, the "pointer arithmetic" feature only makes sense in a language without automatic garbage collection, where you can arbitrarily access any memory address you want. This huge power comes at the price of dangling pointers, buffer overflows and specific security issues. Yes, it is tremendously powerful, even to accidentally shoot yourself in the foot. But it is a power that is a basic requirement for low-level systems programming. For most scenarios of application programming, a "managed memory" language, with managed references rather than pointers, is more programmer-friendly, as it frees the programmer from having to think about low-level memory issues and eliminates an important class of defects/"bugs" that could arise by subtle programming errors.
@alexandersobolev5284
@alexandersobolev5284 5 лет назад
One of the best talks on anything.
@Magnetohydrodynamics
@Magnetohydrodynamics 8 лет назад
Regarding the name "Computer Science," Peter Naur (The 'N' in BNF syntax specification) called it "Datalogy" - the study of data.
@cupajoesir
@cupajoesir 6 лет назад
propositions as types, proofs as programs, simplification of proofs as evaluation of programs. very cool stuff.
@nmarcel
@nmarcel 7 лет назад
A possible solution to the "Independence Day" computer virus plot device: The scientists at Area-51 had 50 years to learn and play with the computer of the crashed aliens spaceship, so they developed a framework to interact with it. So, the code that we see in the movie is a DSL executed against that framework, which in turn translates the intended semantics to the alien computing system.
@krzysiek03121989
@krzysiek03121989 2 года назад
What a great talk!
@someonesomebody2807
@someonesomebody2807 6 лет назад
I am.looking forward to understanding verbal and real.propositions in logic
@raymondrogers3797
@raymondrogers3797 9 лет назад
Prepare to think; it's not "dumbed" down and the "motivation" is only done in passing.
@8Seboo
@8Seboo 3 года назад
33:30 moment of the talk
@Dystisis
@Dystisis Год назад
"3 things were proven at the same time, that's powerful evidence that mathematics is discovered, not invented" -- We have separate simultaneous/concurrent inventions all the time. It is very common that e.g. two or multiple instrument manufacturers arrive at similar designs or solutions to technical problems. It is no wonder that this occurs. The level of development depends at least in large part on the development of society more broadly. It is the same in mathematics -- it is always linked to technical, social, economic, etc. circumstances.
@andrewvoron4490
@andrewvoron4490 9 лет назад
WOW
@willemesterhuyse2547
@willemesterhuyse2547 3 месяца назад
You must assume A and B = 1 and this assumption does not discharge so you have proved nothing if A and/or B = 0
@Evan2718281828
@Evan2718281828 5 лет назад
Is it basically: the proposition "A is true" is equivalent to a world of type A being real or something? And "x is of type A" is equivalent to the proposition "A is true for some x"?
@yandrosyoutube
@yandrosyoutube 4 года назад
It's more like `x: A` is a proof of A, i.e., a witness of the truthness of `A`. So, for instance, with such a witness `x` for `A`, and `y` for `B`, you can prove `A AND B` by putting these two witnesses together: `(x, y)`
@lepidoptera9337
@lepidoptera9337 3 года назад
Proposition A is true either because it is an axiom (a choice we make) or because it derives from axioms trough a finite number of logical operations. In general one can prove that one can't prove if a proposition is true, or not. That's Goedel in a single sentence (or two).
@estebanmarin002
@estebanmarin002 3 года назад
What a great conference. It's nice to walk that anthropologic path of the people and the context things were discovered. This gives better insights on how the problem evolved and the abstractions need it. Thanks for this!!
@EmadGohari
@EmadGohari 6 лет назад
That was an amazing lecture. very insightful!
@AlexMost1989
@AlexMost1989 9 лет назад
epic !!!
@valentinussofa4135
@valentinussofa4135 2 года назад
Amazing talk. Very informative. Thanks for who discovered all this beatiful things in CS.
@robhp1
@robhp1 Месяц назад
Amazing lecture! So many important ideas and discoveries shared in less than a hour! Thank you Philip!
@natarajsubramanian121
@natarajsubramanian121 4 года назад
Brilliant!
@mohammadrezamohammadifar3867
@mohammadrezamohammadifar3867 2 месяца назад
The best explanations of proof, type, and history of algorithms! Seems a category? Yes I guess. Thanks a million man.
@nekomakhea9440
@nekomakhea9440 Год назад
"Informatics" is a way cooler sounding name than "Computer Science", I've also heard it called "Experimental Epistemology" lol
@lkuty
@lkuty 11 месяцев назад
In French, "computer science" is translated to "informatique" (informatics)
@DustinRodriguez1_0
@DustinRodriguez1_0 7 лет назад
I'm not sure how the lambda calculus would model some features of reality like the fact multiverses are causally disconnected from one another, or the fundamental limits to reductionist models implied by chaos theory. I'd love to see anything addressing those topics, though! Also, does anyone know if the 'linear logic' he mentions is related to the Pi calculus?
@ifcoltransg2
@ifcoltransg2 4 года назад
I've gone back and forth in my mind about whether pi-calculus and linear types are related. I think there is a relationship, but not an exact equivalence. Pi-calculus says that you send your resources away and can't use them again until you get them back, but linear types can also encode that you *have* to have used up a resource at some point in the program. As far as I can tell, that has no analogue in pi-calculus. We can simulate chaotic phenomena using computers (if inaccurately) so we can do the same thing with lambda calculus. Causal separation is also easy to model: simply construct a list or set of universes and map pure functions over them, to describe applying physics without side effects in other universes.
Далее
"Categories for the Working Hacker" by Philip Wadler
41:40
"Когти льва" Анатолий МАЛЕЦ
53:01
Avaz Oxun - Yangisidan bor
14:29
Просмотров 430 тыс.
Kenji's Sushi Shop Showdown - Brawl Stars Animation
01:55
"The Mess We're In" by Joe Armstrong
45:50
Просмотров 380 тыс.
Type Theory for Busy Engineers - Niko Matsakis
51:01
Propositions as Types (7)
28:50
Просмотров 1,2 тыс.
"Когти льва" Анатолий МАЛЕЦ
53:01