I need to know how can I draw a search tree for a specific query and how can I trace a code in prolog, and here is an example:
mystery([], []).
mystery([b,a|XS], [z,z|YS]) :- mystery(XS, YS).
mystery([X|XS], [X|YS]) :- mystery(XS, YS).
a) Draw the search tree for the following query:
?- mystery([b,a,b,a,b], Z).
I'm going to tell you how we have learnt to draw the search tree for the query
which is similar to yours so that you can understand the way search trees are drawn and be able to make one for your exercise.
All steps are occured while facts and rules are executed. If you cannot understand how your program is working I suggest you use trace mode while you execute it.