Question: Write the facts and rules using Prolog, that compute the sum of the first n numbers. For example, ?- sum(3, X). X=6 ?- sum(5,X). X=15
Write the facts and rules using Prolog, that compute the sum of the first n numbers.
For example,
?- sum(3, X). X=6
?- sum(5,X). X=15
?- sum(7,X). X=28
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
