Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Logic The following program says that two people are relatives if one is a predecessor of the other, or they have a common predecessor, o

Logic

The following program says that two people are relatives if

one is a predecessor of the other, or

they have a common predecessor, o r

they have a common successor.

relatives(X,Y) :- predecessor( X,Y).

relatives(X,Y) :- predecessor(Y,X).

relatives(X,Y) :- predecessor(Z,X), predecessor(Z,Y).

relatives(X,Y) :- predecessor(X,Z), predecessor(Y,Z).

Can you shorten this program by using the combination of coma and semicolon notation?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

9th Edition

B01JXPZ7AK, 9780805360479

More Books

Students also viewed these Databases questions