Readit News logoReadit News
llm_trw · 6 months ago
>The logical calculus is easier to execute than any of the techniques of mathematics itself, yet only in 1934 did Gerhard Gentzen set it out in a natural way. Even now, mathematics students are expected to learn complicated (epsilon, delta)-proois in analysis with no help in understanding the logical structure of the arguments. Examiners fully deserve the garbage that they get in return.

With an opening like that how can I not read the rest of the book?

This actually touches on some work I've been doing the past week - arbitrary term rewriting to test how reliable a given LLM is when it needs to reason about symbolic manipulation. Everything is dynamically generated to avoid the usual problem of memorising every validation set every llm seems to suffer from.

memhole · 6 months ago
Anything public you can share yet? I’ve been interested in how much LLMs “understand” symbolism.
llm_trw · 6 months ago
You can email me if you're interested.

This was paid work until recently but the start up pivoted to something else and now I'm wondering what to do with code that takes a few thousand dollars to run every time and is of questionable copyright ownership.

bwfan123 · 6 months ago
I am interested in this problem as well. Please share any notes.

I am attempting to create parameterized "logic" problems (similar to the zebra puzzle) which cannot be solved by LLMs even when they are trained on it, or even when they "reason" on it.

Meanwhile this approach is even simpler, where it is demonstrated that LLMs cannot recognize 3 state DFAs. https://arxiv.org/pdf/2501.02825

noelwelsh · 6 months ago
A someone interested in programming language theory, this book looks very interesting. Unfortunately the HTML is incomplete and very hard to read, and the book itself is quite expensive.
shpongled · 6 months ago
Have you read TAPL? I bought the physical copy and found it 100% worth it. Really easy to work through, even with a layperson's understanding of math

[1] https://www.cis.upenn.edu/~bcpierce/tapl/

whitten · 6 months ago
I noticed this. When reding about denotations the cent sign appears. What do you suppose it actually should be ?
dorian-graph · 6 months ago
https://www.artima.com/shop/modern_mathematics may be of interest to people too.
jaykru · 6 months ago
This is up there with The Art of Computer Programming for me as a text that has clearly been painstakingly crafted by its author. It shares as well with TAOCP that it is simultaneously so many things: an introduction to programming language semantics, an introduction to category theory, (in later chapters) a reference on pretty sophisticated programming language semantics, and an exploration of the rich connections between all of these topics. I owe huge chunks of my bachelor's thesis [1] to Paul and I eagerly look forward to returning to his text after my retirement from software engineering :)

This book is for you if:

  - You have some exposure to PL semantics (lambda calculus, functional programming) in the operational tradition.
  - You have some background in abstract algebra and/or category theory.
  - You have neither but you're interested and willing to grind.
A word on the title: the contents are practical for doing mathematics; if you're interested in studying lambda calculi and want fancy techniques for writing light, elegant proofs about their properties, this is a great resource. If you're into building systems it may not be as useful to you.

[1] https://github.com/jaykru/thesis/blob/trunk/thesis.pdf

bwfan123 · 6 months ago
With llms and theorem provers doing the formalism, what is left is intuition - love the intuitionist focus in this book, also tying into what Bessis said in [1] I intend to read this book in depth.

Author: please fix the html rendering.

[1] https://www.amazon.com/Mathematica-Secret-World-Intuition-Cu...

aerioux · 6 months ago
For folks looking - The pdf you can find/buy has the math correctly rendered

https://www.amazon.com/Practical-Foundations-Mathematics-Cam...

dunefox · 6 months ago
200$ for correct latex
jebarker · 6 months ago
Looking at the table of contents, this seems like a really odd title. In what sense is this practical and a foundation for mathematics?
ysofunny · 6 months ago
> In what sense is this practical and a foundation for mathematics?

in a strong computational sense

jebarker · 6 months ago
Ah, now it makes sense, thanks! I was misinterpreting "of" as "for".
zero-sharp · 6 months ago
It's "practical" for the academic. Everyone else should just get a discrete math book and work through the first few chapters.
revskill · 6 months ago
I think the author assumes u know how to apply a practical foundation. We need another book here.
noelwelsh · 6 months ago
The practical application of these foundations is the field of programming language theory. At least that is the application I know of.

Whether programming language theory is practical or not depends, I think, on your attitude to programming languages. For example, if you think C is a masterpiece of clean and elegant design I suspect you won't have much time for programming language theory. If you think C is riddled with mistakes, then you will find solutions in programming language theory.

rramadass · 6 months ago
You do understand how a mathematical Theory (a set of true propositions made by relating operations i.e. from axioms and inference rules) and a Model (a set of elements with all the operations defined and where all the propositions are true) are related, i presume?

PLT is not one theory but a set of theories from which you are free to pick and choose any subset you would like to model in your language's abstract machine and syntax/semantics.

C simply chose a "minimal theory" and there is nothing wrong with that.

WildRyc · 6 months ago