Logic Programming
What
versus
How
 

Lessons References Epilog Sierra Forum


Week 10

Last week of the course. Time to finish up your projects and submit your project videos and project reports. See the Project Presentation and Project Report links on the course website for information on what to submit. See the Ed post for details on submission. Most important: Keep your videos and reports short. The ideal running time for videos is 5 minutes; and the maximum length is 10 minutes. You should aim for at most 2-3 pages for your project reports.

Note that you are also required to do Assignment 5. You need to view the submitted videos and provide your evaluation. See the text of Assignment 5 for details on how to evaluate project presentations. We will post details on Ed describing how to access the videos of other teams.

The deadline for submission of your videos is 11:59 pm this Tuesday, and the deadline for your project report and assignment 5 is 11:59 pm next Sunday. Once we have evaluated your submissions, we will upload your projects and reports to the Projects page on the course website (the same place as the reports from last year's class).

If, after completing your projects, you want to continue project work beyond the end of the quarter, please let us know. And, if you are interested in commercial opportunities for applications of Logic Programming, we can put you in touch with companies looking to hire students with Logic Programming skills.


Week 9

Heads up! Last week of class meetings! This week, we continue our look at extensions of Logic Programming; and we have a guest lecture from Tristan Krueger talking about his CS 151 project and his subsequent work applying Logic Programming in his start-up company Symbium.

Reminder that we will be giving triple attendance credit to any of you who attend this week's lectures. We want our guests to feel welcome, and having a room full of attentive students is a good way to accomplish that. Besides, listening to these presentations might improve your understanding of Logic Programming and shape your projects and presentations and get a better grade.

Although the class meetings will be done after this week, your work is not done. You still need to submit video summaries of your projects. And you need to review the submissions of others and provide evaluations. See details in the Ed Forum.


Week 8

At this point in the course, we have seen all of the basics of Logic Programming - datasets, queries, view definitions, and operation definitions. There is plenty more to learn, e.g. constraint satisfaction, planning, Disjunctive Logic Programming, Existential Logic Programming, Answer Set Programming, Inductive Logic Programming, Theorem Proving, and so forth. Arguably, we have just scratched the surface.


Week 7

This week, we will look at how Logic Programming can be used in creating interactive webpages, called worksheets. Worksheets combine many things that we have seen thus far, and they make for very nice demonstrations. We recommend (though do not require) that you consider showcasing your term projects using worksheets.

As this is the second week of this unit of the course, the associated assignments are due by the end of the week (Sunday at midnight). I think that you will find these much easier than the assignments for the previous unit.

You should also be finalizing your plans for your term projects. After this week, there will be three weeks left in the quarter, and in that time you will need to complete your project, create a brief video for the class, and submit a final report, all by the last week of class.


Week 6

This week, we begin our look at dynamic logic programming (DLP). As we shall see, DLP is an extension of traditional logic programing in which we define not just views of datasets but also operations that transform datasets into other datasets. The good news is that the semantics of operation definitions is much simpler than the semantics of view definitions.

Next week, we will look at the use of dynamic logic programming in creating interactive "worksheets" (which is a good application of DLP).

Since this is the first week of this unit, the assignments on this material are not due until the Sunday after next. That said, you might want to get started early on those assignments. Also, you will need to choose the topic for your term project by the end of next week, so that you will have plenty of time to do the work before the end of the quarter.


Week 5

Phew. Last week was not an easy week for some people. The concepts of stratification and unification are difficult to grasp when they are seen for the first time. The good news is that, with these complexities behind us, the rest of the course is relatively easy.

This coming week, we will spend all of our time looking at examples. In our first session, we will concentrate on simple examples - Kinship and Blocks World and so forth. In our second session, we will move on to more complicated examples - lists and trees and sets.

As this is the second week of this unit of the course, the associated assignments are due by the end of the week (at midnight this coming Sunday). If you have not already done so, you should get to work on the assignments. Most are easy, but not all. Many people find the zebra problem to be especially difficult. For those of you who are breezing through the assignments and yearning for something more challenging, we suggest you take a look at the Tournament example.


Week 4

By this point in the course, you should be adept at writing simple queries that are both correct and reasonably efficient. Ideally, in Logic Programming, your only concern should be correctness, and efficiency should be left to the interpreter and/or compiler. As it turns out, there are tools that can significantly enhance the efficiency of logic programs (in ways that cannot be done with traditional imperative programs). However, in many cases, it is still necessary for the programmer to take efficiency into account.

This coming week, we start our look at view definitions. View definitions are similar to queries, except that we can name the resulting relations, and we can use them in the definitions of other relations. This capability is convenient, and it increases the expressiveness of our logic programming language. It also increases the complexity of our semantics and our execution algorithms. The upshot is that we will spend the entire week on these topics. Then, next week, we will look at examples of view definitions, and we will begin to get a sense of the power and beauty of Logic Programming.

As with our treatment of queries, this unit of the course will take two weeks, and so the assignments on this material are not due until the Sunday after next. It is okay to take a glance at the assignments, but if you get stuck you might want to wait to finish the assignments until you have read the relevant chapters and/or listened to the corresponding lectures. As always, make use of the Forum if you have any questions.


Week 3

We have now begun our look at queries, but we have not yet finished. We have another week to go before moving on to more interesting topics.

In Lesson 3, we saw precise definitions for the syntax and semantics of queries. If you want to know the answers to a query or the results of executing an update, you just need to think about the instances of the constituent rules and apply the definitions given in the lessons.

Although these definitions are simple and precise mathematically, they are not satisfying from a computational point of view. The number of instances of query rules can be extremely large, even for finite Herbrand universes; and, of course, there are infinitely many instances for infinite Herbrand universes. The good news is that, in many cases, we can get by with much less work.

This week, we look at ways to do these computations without enumerating all instances. In Lesson 5, we introduce the algorithm used by the Epilog / Sierra interpreter in answering queries. The algorithm is guaranteed to produce the same answers as our instance-based semantics but operates much more efficiently. In Lesson 6, we talk about ways we can use knowledge of this algorithm to optimize queries and get answers even more efficiently.

The assignments for this unit are due by midnight this coming Sunday. (1) Note that you will likely have trouble doing Assignment 5 without using some of the optimization techniques discussed in Lesson 6. (2) You may also need to enlarge Sierra's "Unification Limit", as this problem has quite a large search space. (3) Finally, if you are having trouble, you should consider working on a simplified version of the problem before tackling the entire problem. For example, you might start with a two column cryptarithmetic puzzle.


Week 2

By this point, you should have mastered the material in Chapters 1 and 2. From Chapter 1, you should be familiar with the basic idea of Logic Programming - logic programs as runnable specifications. From Chapter 2, you should understand the concept of datasets and some of the issues involved in creating datasets to describe application areas. In fact, you should be more than familiar with this material - ideally, you should be saying to yourself (and others) that, when all is said and done, this stuff is pretty easy. In fact, it *is* easy. But it is also very important, as we use datasets not just for practical purposes but also in defining the semantics of more complex notions to come.

Judging by the discussion on the Forum, it appears that, for some of you, the toughest part of the first assignment set was figuring out how to use the meta-vocabulary of types and predicates and attributes to describe types and predicates and attributes. Most of our work will be closer to the second assignment of the week (describing real world things, like movies), but we wanted you to do assignments 3 and 4 to get you to think explicitly about those concepts.

Week 2 focusses on queries. We add variables and logical operators to our language and show how to use them in writing queries, and we give a formal semantics for queries written within this language. As we shall see, the semantics is simple and very precise. However, it is not very practical from a computational point of view. In Week 3, we will look at more practical algorithms for computing answers, and we will suggest some techniques for optimizing queries that take advantage of these algorithms.

A reminder that we would like you to take advantage of the Forum. If you are confused about something, you might be able to get insight from others. If you have mastered the material, you might be able to help others; and explaining things might help you to understand the material more deeply.


Week 1

Okay. We are on our way! The course begins now. On Tuesday, we will have an introductory presentation on the subject matter of the course and course logistics. On Thursday, we will have our first substantive class.

Your goal this week is to read through and understand the first two chapters of the notes. The first chapter is just an overview, and it is an easy read. That said, you should not shortchange the material. The chapter talks about the main ideas of Logic Programming and how they relate to each other. The second chapter introduces Datasets. Datasets are fundamental to the theory of Logic Programming, and they are important in practical implementation. The concept is simple, but there are some nuances; and we recommend you read the notes carefully and do the exercises.

You should also drop by the Forum to check out what others in the class are saying. There are some subtleties in Logic Programming that you can miss and that can lead to confusion. Engaging in discussion on the Forum is a good way to deal with these subtleties. And, even if you think you understand everything, you might consider using the Forum to help others and thus consolidate your understanding of the issues.

Note that this week's assignments are due by midnight next Sunday. After this, the assignments for each unit will be due every other week.


Course Overview

Logic Programming is a style of programming based on Symbolic Logic. In recent years, there has been increasing interest in Logic Programming due to applications in deductive databases, automated worksheets, Enterprise Management (business rules), Computational Law, and General Game Playing.

This course is an introduction to Logic Programming theory, current technology, and popular applications. Work in the course takes the form of lectures, readings, online exercises, programming assignments, and a term project.

There will be twenty in-person class sessions - on Tuesdays and Thursdays from 1:30 pm - 2:50 pm. See the table below for a summary of the topics of these sessions. Note that you should attend all sessions, as we will occasionally discuss things in class that are not in the notes.

DateTopicLocationTime
April 2 Introduction 370-370 1:30 - 2:50
April 4 Datasets 370-370 1:30 - 2:50

April 9 Queries 370-370 1:30 - 2:50
April 11 Query Examples 370-370 1:30 - 2:50
April 16 Query Evaluation 370-370 1:30 - 2:50
April 18 Query Optimization 370-370 1:30 - 2:50

April 23 Views 370-370 1:30 - 2:50
April 25 View Evaluation 370-370 1:30 - 2:50
April 30 Simple Examples 370-370 1:30 - 2:50
May 2 Lists, Sets, Trees 370-370 1:30 - 2:50

May 7 Operations 370-370 1:30 - 2:50
May 9 Model Management 370-370 1:30 - 2:50
May 14 Reactive Worksheets 370-370 1:30 - 2:50
May 16 Semantic Worksheets 370-370 1:30 - 2:50

May 21 Constraints 370-370 1:30 - 2:50
May 23 Program Synthesis 370-370 1:30 - 2:50
May 28 Advanced Logic Programming 370-370 1:30 - 2:50
May 30 Past Projects 370-370 1:30 - 2:50

June 4 Student Reports 370-370 1:30 - 2:50
June 6 Student Reports 370-370 1:30 - 2:50

All of the course materials are online here. There are links to lessons, additional readings, the Epilog language, the Sierra interactive development environment, and the Ed Forum. Click the tabs at the top of this page to access this content. The Lessons tab is your friend. Use it. And be sure to check this page frequently, as we will be posting periodic updates here.

Note that, as you proceed through the online materials, you may occasionally encounter minor errors or inconsistencies. Apologies in advance for this. We are still working on the course. You may get extra credit for reporting such problems (especially if your reports are not overly irate).


Teaching Staff

Mike Genesereth
Email: genesereth@stanford.edu
Office Hours: Wed 3:00 pm - 4:00 pm
Location: Gates 308
Janelle Cheung
Email: cheung23@stanford.edu
Office Hours: Thursday 6:30pm - 9:30pm
Location: Zoom
Melissa Lee
Email: mlee24@stanford.edu
Office Hours: Wednesday 4:00pm - 7:00pm
Location: Zoom
Sophia Ramsey
Email: sramsey9@stanford.edu
Office Hours: Thursday 3:30pm - 5:00pm
Location: Zoom


Feedback