Logic Programming uses facts and rules for solving the problem. That is why they are called the building blocks of Logic Programming. A goal needs to be specified for every program in logic programming.
To understand how a problem can be solved in logic programming, we need to know about the building blocks – Facts and Rules:
Actually, every logic program needs facts to work with so that it can achieve the given goal. Facts basically are true statements about the program and data. For example, Delhi is the capital of India.
Rules
Actually, rules are the constraints which allow us to make conclusions about the problem domain. Rules basically written as logical clauses to express various facts. For example, if we are building any game then all the rules must be defined.
Rules are very important to solve any problem in Logic Programming. Rules are basically logical conclusion which can express the facts. Following is the syntax of rule:
𝐴∶− 𝐵1,𝐵2,...,𝐵𝑛.
Here, A is the head and B1, B2, ... Bn is the body.
For example: ancestor(X,Y) :- father(X,Y).
ancestor(X,Z) :- father(X,Y), ancestor(Y,Z).
This can be read as, for every X and Y, if X is the father of Y and Y is an ancestor of Z, X is the ancestor of Z. For every X and Y, X is the ancestor of Z, if X is the father of Y and Y is an ancestor of Z.
For starting logic programming in Python, we need to install the following two packages:
Kanren
It provides us a way to simplify the way we made code for business logic. It lets us express the logic in terms of rules and facts. The following command will help you install kanren:
pip install kanren
SymPy
SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. The following command will help you install SymPy:
pip install sympy
Followings are some examples which can be solved by logic programming:
Matching mathematical expressions
Actually we can find the unknown values by using logic programming in a very effective way. The following Python code will help you match a mathematical expression:
Consider importing the following packages first:
from kanren import run, var, fact
from kanren.assoccomm import eq_assoccomm as eq
from kanren.assoccomm import commutative, associative
from kanren.assoccomm import eq_assoccomm as eq
from kanren.assoccomm import commutative, associative
We need to define the mathematical operations which we are going to use:
add = 'add'
mul = 'mul'
mul = 'mul'
Both addition and multiplication are communicative processes. Hence, we need to specify it and this can be done as follows:
fact(commutative, mul)
fact(commutative, add)
fact(associative, mul)
fact(associative, add)
fact(commutative, add)
fact(associative, mul)
fact(associative, add)
It is compulsory to define variables; this can be done as follows:
a, b = var('a'), var('b')
We need to match the expression with the original pattern. We have the following original pattern, which is basically (5+a)*b:
Original_pattern = (mul, (add, 5, a), b)
We have the following two expressions to match with the original pattern:
exp1 = (mul, 2, (add, 3, 1))
exp2 = (add,5,(mul,8,1))
exp2 = (add,5,(mul,8,1))
Output can be printed with the following command:
print(run(0, (a,b), eq(original_pattern, exp1)))
print(run(0, (a,b), eq(original_pattern, exp2)))
print(run(0, (a,b), eq(original_pattern, exp2)))
After running this code, we will get the following output:
((3,2))
()
((3,2))
()
The first output represents the values for a and b. The first expression matched the original pattern and returned the values for a and b but the second expression did not match the original pattern hence nothing has been returned.
With the help of logic programming, we can find the prime numbers from a list of numbers and can also generate prime numbers. The Python code given below will find the prime number from a list of numbers and will also generate the first 10 prime numbers.
Let us first consider importing the following packages:
from kanren import isvar, run, membero
from kanren.core import success, fail, goaleval, condeseq, eq, var
from sympy.ntheory.generate import prime, isprime
import itertools as it
from kanren.core import success, fail, goaleval, condeseq, eq, var
from sympy.ntheory.generate import prime, isprime
import itertools as it
Now, we will define a function called prime_check which will check the prime numbers based on the given numbers as data.
def prime_check(x):
if isvar(x):
if isvar(x):
return condeseq([(eq,x,p)] for p in map(prime, it.count(1)))
else:
return success if isprime(x) else fail
else:
return success if isprime(x) else fail
Now, we need to declare a variable which will be used:
x = var()
print((set(run(0,x,(membero,x,(12,14,15,19,20,21,22,23,29,30,41,44,52,62,65,85)),(prime_check,x)))))
print((run(10,x,prime_check(x))))
print((set(run(0,x,(membero,x,(12,14,15,19,20,21,22,23,29,30,41,44,52,62,65,85)),(prime_check,x)))))
print((run(10,x,prime_check(x))))
The output of the above code will be as follows:
{19, 23, 29, 41}
(2, 3, 5, 7, 11, 13, 17, 19, 23, 29)
(2, 3, 5, 7, 11, 13, 17, 19, 23, 29)
0 comments:
Post a Comment