Why is/was LISP good for AI programming?

  • Thread starter Thread starter Stephen Tashi
  • Start date Start date
  • Tags Tags
    Ai Programming
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
18 replies · 3K views
TL;DR
Why is/was LISP thought to be good for AI programming?
Why is/was the LISP programming language thought to be good for writing programs that implement artificial intelligence?

As I imagine it, early AI programs were oriented toward verbal (i.e. text) inputs and outputs. So perhaps a list processing language is/was well suited for that?
 
Physics news on Phys.org
I think the symbolic manipulation feature was why. You could write a lisp program that wrote and ran a lisp program ie you could dynamically change the programs processing steps.
 
  • Like
Likes   Reactions: Hornbein, Tom.G and FactChecker
Lisp is a very old language, contemporary to languages like FORTRAN. When AI started becoming popular there were few alternatives that could handle non-arithmetic problems. As @jedishrfu says, the ability to perform symbolic and non-arithmetic operations was considered important for AI. Also, as @jedishrfu says, the ability for the program to piece together code on the run and evaluate it was useful. That ability also made FORTH a language to consider.
 
  • Like
Likes   Reactions: jedishrfu
jedishrfu said:
Lisp was also known as ‘Lots of InSipid Parentheses’
And anyone who ever had to work with Lisp code in a regular, non-Lisp-oriented, text editor, has to agree.
 
  • Haha
Likes   Reactions: jedishrfu
  • Like
Likes   Reactions: FactChecker
I had a friend pull up a similar article years ago on Clojure aka lisp on JVM I tried it but felt my team would never consider it even though there were some great benefits. Sometimes procedural / OO folks are a hard crowd to please.
 
Stephen Tashi said:
Summary:: Why is/was LISP thought to be good for AI programming?

Why is/was the LISP programming language thought to be good for writing programs that implement artificial intelligence?

As I imagine it, early AI programs were oriented toward verbal (i.e. text) inputs and outputs. So perhaps a list processing language is/was well suited for that?
No. Recursion and meta-progamming and functional features were the pro's of LISP.
 
gleem said:
A reader of this thread suggests LISP is a dead language. However, it was developed for particular applications and as such is a better language than the popular C's, Java's, or Python.

Here is a good review of its utility. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5952920/
Considering that Perl was a significant programming language of the Human Genome Project, I can't help but notice that the referenced article is very vague on any advantage that Lisp has to Perl. As a Perl programmer, I came close (although overcome by events) to joining that effort.

See How Perl Saved the Human Genome Project and BioPerl for more details.
 
Last edited:
  • Like
Likes   Reactions: jedishrfu
I remember reading a Dummies book on Bioinformatics and it mentioned Perl a lot. It struck me as funny because Perl was on the outs and python was ascending for general programming use.

Often academic projects latch onto programming languages based on what the grad student or principal investigator was familiar with instead of what’s the best overall language to use. Bioinformatics was very text search intensive making Perl an ideal choice but later as other tools gain traction Perl loses to python or some other more performant language. Sometimes choices are made on the free tools and libraries the project latches onto.

I never understood why Clojure/Lisp was gaining adherents when it seemed easy to really get lost in the details of the implementation of an application. Small programs were elegant by scaling up presented developer issues for maintainability. The article my friend had provided said that this startup team had switched from Scala to Clojure and saw huge benefits in maintainability and performance but again I never fully understood why they just didn’t use Java or something similar.
 
  • Like
Likes   Reactions: FactChecker
I haven't touched LISP in years, so I will only make two comments:
  1. The fact that LISP ignores trailing parentheses is a mistake. That encourages the programmer to stick a zillion at the end, thus covering up a logic error.
  2. There is AI and there is AI. Modern AI is not so concerned with what LISP does well - what I would call machine deduction" - as 1980's AI was.