Syntax and Structure of Prolog Programming Language

14 Jun 2023 Balmiki Mandal 0 Prolog Programming language

Prolog programming language

Prolog is a logic programming language that is based on the idea of using logic to solve problems. It is a declarative language, which means that the programmer tells the Prolog system what they want to achieve, but not how to achieve it. The Prolog system then uses its own knowledge and reasoning to find a solution.

Prolog programs are made up of facts and rules. Facts are statements about the world that are always true. Rules are statements about how to infer new facts from existing facts.

Facts and rules are written in the form of clauses. A clause is a logical expression that consists of a head and a body. The head is a single term, and the body is a sequence of one or more terms.

Syntax and Structure of Prolog programming language

Syntax

The syntax of Prolog is based on first-order predicate logic. A Prolog program consists of a set of clauses, each of which is a logical implication of the form:

head :- body.

The head of the clause is a single predicate, and the body is a list of one or more predicates. The colon (:) is read as "if".

 

Structure of prolog

A Prolog program is typically structured as a knowledge base, which consists of a set of facts and rules. Facts are simple statements that are assumed to be true, while rules are more complex statements that define relationships between predicates.

Facts

Facts are written as simple predicate expressions, followed by a period (.). For example:

parent(mary, john).
male(john).

These facts state that Mary is a parent of John, and that John is male.

Rules

Rules are written as logical implications, with the head on the left-hand side of the implication and the body on the right-hand side. For example:

grandparent(X, Z) :- parent(X, Y), parent(Y, Z).

This rule states that X is a grandparent of Z if X is a parent of Y and Y is a parent of Z.

Queries

A Prolog query is simply a goal that the Prolog system is asked to prove. Queries are written in the same way as facts, but without the period at the end. For example:

grandparent(mary, Z).

This query asks the Prolog system to find all values for Z such that Mary is a grandparent of Z.

Execution

When a Prolog program is executed, the Prolog system starts by trying to prove the query. The system does this by recursively matching the query against the facts and rules in the knowledge base. If the system finds a match, it succeeds and returns the answer(s). If the system cannot find a match, it fails and backtracks to try a different alternative.

Example

Here is a simple Prolog program that defines the relationship of ancestor to descendant:

ancestor(X, Y) :- parent(X, Y).
ancestor(X, Y) :- parent(X, Z), ancestor(Z, Y).

This program defines two rules. The first rule states that X is an ancestor of Y if X is a parent of Y. The second rule states that X is an ancestor of Y if X is a parent of Z and Z is an ancestor of Y.

We can use this program to answer queries about ancestor relationships. For example, the following query asks the Prolog system to find all ancestors of Mary:

ancestor(mary, X).

The Prolog system will succeed and return the following answers:

X = mary
X = john
X = elizabeth
X = william

Conclusion

Prolog is a powerful and versatile programming language that is well-suited for a wide range of applications, including artificial intelligence, natural language processing, and expert systems. The syntax and structure of Prolog are based on first-order predicate logic, which makes it easy to express complex relationships between entities.

Enroll Now: 

Prolog Programming language Scratch to advance 2023 - 2024] "Start Supercharging Your Productivity!"

Contact Us:

  • For any inquiries, please email us at [[email protected]].
  • Follow us on insta  [ electro4u_offical_ ] for updates and tips.

 

 

 

Note: If you encounter any issues or specific errors when running this program, please let me know and I'll be happy to help debug them!

BY: Balmiki Mandal

Related Blogs

Post Comments.

Login to Post a Comment

No comments yet, Be the first to comment.