Why in 2020 should I learn Prolog?

First of all Good Night!!!

Please consider answer, this is not a criticism nor a provocation, but just a question of a young person how want find a truly and good answer

With all respect I was insanely searching on the web, why in 2020 should I learn Prolog?

I’m going to give you my personal characteristics believing that this matters in the context of the question.

I’m 20 years old, I’m Brazilian, I’m graduating in mathematics for one public university here, I’m new in computer science and I have learned major part of what I know, alone and first of all I like programming in Prolog.

I had a little experience in the language, I had worked with pengines for a web application but in a personal project. But here is my point of view, if you could help me, sometimes I feel that learn prolog can be a waste of time, I don’t see jobs around here or out there using Prolog programming Language, I would like to see someone trying to convince me that it isn’t a waste of and technically showing the reasons.

I had just made this question because as I said I was insanely searching in the web, but all I had found was negative perspective of the language, you guys are my last hope.

Now I had start to learn Python and i don’t know but a lot of features appear to come from prolog is this right?

2 Likes

You should learn it as a part of your personal quest to become a better programmer.

From where I stand, I see two major problems with learning a programming language like Prolog for purely pragmatic reasons:

  1. It will not help you find a job, in the general case. This is not universally true, however, if you can claim that you can program in Javascript/Python/Java/C++, you already cover some 90% of programming jobs that are out there (those languages and the 90% is totally pulled out of thin air, I do not have data to back it up).
  2. Learning any language in enough depth will take time away from learning something else. So you need to figure out your priorities first.

The question of “Prolog jobs” have been asked a few times over the years on this list, and I never got the feeling that a “Prolog job” is a real thing. I would be very happy if someone tells me I am wrong. My very personal experience has taught me that in job interviews, knowing something that the interviewer doesn’t think they know better than you is a problem for you. Why it is like that I don’t know.


I can give you one very practical reason to learn Prolog in good faith: you can write working programs in a fraction of the time that it would take to do it in most other languages. This argument can be always countered with “but this is because you know it well”, and again, I don’t have solid data to counter this counter-argument.

6 Likes

I doubt that will hold. In my understanding (but I might be wrong) this has been disproved for natural languages, i.e., (most) children learning more natural languages do not perform worse on their mother tongue except for a brief period were they tend to mix languages.

Likewise, learning Prolog provides you with a different perspective on programming that, once understood, can be applied to other languages as well. For example, I tend to put a lot of “knowledge” in data structures and use a small program using this data to do the job rather than using endless if-then-else, also when programming in C or JavaScript (my main imperative languages).

10 Likes

A thing that got me into logic programming was trying to explain the rules of games like chess to a computer, and that I think is the killer app for Prolog.

A starting point for me was a MooC I did a couple of years ago given by Stanford University which sadly no longer seems to be given, though it still has a website at http://ggp.stanford.edu/

Stanford’s General Game Playing movement seems to have fizzled out – I tried to subscribe to its mailing list a while back, and it seems to be dead – which I blame on it using a weird Lisp dialect instead of plain-vanilla Prolog.

An example of chess rules written in what Stanford termed the Prefix (ie Lisp) versions of its Game Description Language is at http://games.ggp.org/base/games/chess/chess.kif

Whereas the accompanying online textbook taught Infix Game Description Language (GDL) which is pretty much Prolog, all the hundreds of strategy games developed for a competition to promote interest in AI at http://games.ggp.org/ were written in the Lisp dialect whose supporting software consisted of one, now unmaintained. Java program.

I’m not a teacher, so have no idea if Stanford thought creating this confusion between infix and prefix GDL would be educational. My view is it just killed what could have been a great AI teaching tool.

I initially thought translating the Lisp dialect into Prolog would be easy, and ended up with a chess player riddled with bugs (which I’m busy fixing, since we have a very draconian Covid-19 lockdown where I live in South Africa, so I have plenty of time on my hands at the moment).

But the basic point is that pattern matching languages such as Prolog are ideal for Game Description Languages, making them a lot easier to read and write than in traditional C-family languages.

I personally am convinced that learning different programming languages teaches “transferrable” skills, just as you describe it.

I can’t disagree about this, but there are some considerations that could taint the analogy. Here is a short and definitely not exhaustive list (and I can make counter-arguments to everything I am about to write, but won’t, just to keep it short):

  • Natural languages evolve naturally (hehe) and co-evolved with the human brain. Programming languages have been engineered.
  • Small children don’t learn in the same way as grown-ups, or to put it differently, as we get older, learning just gets difficult.
  • Natural language is usually used for informal communication between humans. We (humans) tolerate a lot of variation, which is one of the reasons why natural languages evolve and change as fast as they do.
  • Mastering a language (natural or programming) is a very long process; this is why I would say that priorities and time are still important.

hi, I use prolog as a programming language since I first experienced it at the university in 1990.

at that time there was only Turbo pascal, Basic, an C for Ms dos.

I use still use prolog compiler and interpreters for various things.

Prolog and also swi-prolog has connections with python with C and with java, so there it cant be a danger to use it

the reason for not using prolog yet in companies could be that still 90 procent of the companies is still only building so called user-applications or web applications where they only implement user interactions with data connections.

I mean to say that almost nobody is building knowledge intensive systems yet,
and that time still has to come

In my case i would prefer to write a prolog program which generates python code instead of writing the python code myself. Also java code is very well suited to be generated from prolog, i would prefer that as well instead of writing the java code myself.

In my own life I use prolog for example if I need to convert and read for example Csv data files.

with prolog you can experience some sort of Magic, which is less the case in procedural languages, where you are endlessly coding forwards.

If for example you need to analyse images and generate movies on Ubuntu?
, I would then use swi-prolog in combination image magick.

Swi prolog is very good for web-applications, it can do the same as PHP with mysql and apache server and more, and the code is a lot easier to write and read than php.

1 Like

Yes, we are building such systems. There are relational databases that cover to some degree. Developing is a real pain though.

There are real problems in this space, Oracle is not going away in a hurry, the most useful features of relational databases are proprietory, and again, writing SQL is such a pain that people have been coming up with all kinds of programming acrobatics to avoid it. But “momentum” is a real thing and I really can’t see a language like Prolog taking the place it deserves soon enough :frowning:

I wasn’t planning on chiming in but some awesome features of Prolog that I see worthy of note are using Prolog for it’s prototyping ability (term rewriting) and meta interpreters. These are not things beginners get into so many of the people who don’t have nice things to say about Prolog never get to this level and see how beautiful Prolog is at doing this.

While you may never use these concepts in a job, the things you will learn about programming while on the path to learning how to use these concepts will open your eyes to many vistas few programmers ever see. :slightly_smiling_face:

Blockquote

I tell myself that eventually everybody and all companies will use Prolog for many things.

Maybe indeed the question is wether that is soon enough as you say.

Currently we, me and my companion are building a webservice completely written in swi-prolog.

In this example we need to do a lot of data inferences on the server to display intelligent data to the web-end-user,
we use a lot of data-files which, at the moment, we completely load into memory, the data queries we perform in this case would almost be impossible in Mysql as a mysql Query, ( it would get to slow,
Or the query would become absolutely unreadable, and also impossible to extend further )

3 posts were split to a new topic: Discussion about web app

I’ve spent the last 15 years as a consultant in the embedded field and I use them on pretty much every contract, OK, not every contract but if I’m doing a biggish job that can justify some time spent building an executable specification then I will. An executable specification in these cases is just a Prolog program comprising some operator/3 calls to give me nice syntax, some rules using that syntax (usually > 30 rules so too many for ‘manual’ reasoning with my poor brain), and a demo predicate to give me answers I’m looking for.

In situations where you would see someone reaching for some formal modelling languages like Alloy, Promela, and the like, I’m knocking up a quick Prolog like interpreter. The logic programming research community wrote heaps of papers in the 80s and 90s showing us how to do this. Pretty much all of it is free to access on the web. All we have to do is want to use it!

4 Likes

What brought me back to LP after 15+ years in the increasingly and pointlessly complexifying Javaland was this article in IEEE Intelligent Systems from January 2014

https://www.researchgate.net/publication/261768463_Reasoning_and_Verification_State_of_the_Art_and_Current_Trends

In this article, the authors give an overview of tool-based verification of hardware and software systems and discuss the relation between verification and logical reasoning. Here, “verification”’ refers to reasoning-based methods to establish dependability. This isn’t restricted to proofs of functional correctness; it also includes other scenarios such as test generation and bug finding. The authors describe the main verification scenarios and methods that are in use today and the extent to which they depend on logical reasoning. From this discussion, they distill current trends and new opportunities for the interaction between verification and reasoning.

Prolog isn’t mentioned, instead systems like ACL2 or HOL are. These are meant to help in theorem modeling and proving rather than allow one to code “searchful programming” like Prolog does. But one has to get in on the ground floor…

writing SQL is such a pain that people have been coming up with all kinds of programming acrobatics to avoid it

SQL is ugly as a language, but the principles are very sound and rather straightforward. It’s just that coders try to avoid it for all the wrong reasons (reluctance to learn something new & declarative and a misguided idea that everything must be the same language, I went through the same mindstate). Therein likes waste & failure.

  • You have a problem: You need to write SQL queries but you don’t want to get into SQL
  • You use a framework to isolate yourself from having to learn SQL.
  • Now you have two problems:
    1. A complex, illogical framework, that injects bugs, especially in concurrent applications
    2. And its attendant pseudo-SQL language meant to recover the flexibility lost by 1

Seriously, EJB3/JPA over Hibernate? Utter madness!

But things like Jooq are a real improvement. Embrace SQL!

Btw, I noticed that SWI-Prolog offers this library:

Constraint Query Language A high level interface to SQL databases

1 Like

Hi Eduardo:

I will be starting for your description :point_up: :point_up: :point_up:… I am from Brazil also and had my first contact with Prolog in 1987 (surely you are not born yet). In addition of many comments done, I would try to resume in:

Prolog brings a rich heritage from the logical world, with concepts embedded and other no. Anyway, these math concepts are taught in a course of logic. As I know a little of our reality in the universities, probably if you have some contact with the first order logic (FOL), probably, which the concepts and definitions are applied in the Prolog. However, in a regular course of logic, here in Brazil, normally the theoretical approach is taught dissociated from a practical use. This dissociation happens for the several reasons. Surely, as your background is in math, you will enjoy a lot of the Prolog.

Finally, if you must learn, the answer is YES:

  • The learning curve of Prolog is fast for the beginners
  • To verify all the math foundations in logic
  • To expand you thought of programming
  • To solve some problems where the logic paradigm “wears such a glove”

Many years ago, I did some videos on Prolog for my students. These videos are in PORTUGESE (you are native), so, you can start by there, check my channel in Youtube,
Start from this video for instance: Prolog e seus elementos

Well, I hope to help you in this discussion, very well posted by Paulo, Jan, Eric et all

My best regards

Claudio

5 Likes

@eduardo

I would say Prolog is -the way- to create the new programming languages and tools and frameworks of the future…that’s -EXACTLY- why I am re-coding my computer language in it, from scratch. It’s been a long and hard road but definitely worth it as I have increased my knowledge and understanding of not only “logic programming” but the embodiment of a lot of it in the language we call Prolog.

Like Lisp, it will change the way you think about problems and can only help to make you a better prospect to be hired?!

So, if you want to learn something that will, ultimately, make you very very productive once you “get it”, and the learning curve is long and steep in places (like anything worthwhile I guess) then go for it!

:smiley:

Yes. The idea was every new problem would spawn a language. Well, designer logics they called it in logic programming circles but it was the same thing. This style of thinking was the knee-jerk reaction of old school lisp and prolog programmers working in AI. Here’s some words to live by:

A programming methodology often used in AI, as well as in other fields, is stratified or layered design. When faced with a problem, rather than implementing a solution directly in some base language, a new, more appropriate, higher level language is designed in which to express a solution, and this is implemented in the base language. This methodology can have several iterations yielding as a final solution a hierarchy of different languages each more appropriate to expressing the solution than the language below. — Bowles and Wilks in Tracing Requirements for Multi-layered Meta-programming, in Meta-Programming in Logic Programming by Abramson and Rogers.

Hi Jan,

Could you give an example of this style of programming, say, in C.

Dan

Its good to hear … this is where I hope to focus my work …

Companies working with ontologies for data integration are trailblazing in this area, but i think the future holds use cases that go beyond data analytics to take on additional responsibilities …

Dan

@bwat I take your point althought that’s not what I meant in my comment. Having been a software engineer for 35 years and used everything from assembler, Smalltalk, Lisp, Erlang, countless years of C/C++, Java etc etc yadda yadda…and having used yacc, bison, antlr, PEG toolkits until I feel sick, I realise that what I really needed all along was DCG-s and Prolog and nothing more!

There is “something” about Prolog I can’t pur my finger on but just lately, in the last few weeks of intense effort on my language project, things are clicking especially regarding the full enormity of unification and back tracking that make me wonder (a) why’d it take so long to “understand” and (b) why couldn’t I have learned Prolog 35 years ago!

4 Likes

People with roughly 3x my experience in software development in the large have been completely unaware of Prolog’s actual strengths, despite having “learned” it in university. This seems to be common. Actually, it is so common that I am certain that I am still missing a lot of important things about Prolog in particular and programming and software development in general.

As is, experience shows that the only road to that kind of understanding is just working on it with your own hands and head (whatever “it” really is…)