I am a bit confused about this function definition in Prolog:
sample(X,[X|Tail]) :- member(X,Tail).
this function checks if X is at the first position of the given list and if X is also found in the tail of the list.
sample(1,[1,2,3]).
false.
% because 1 is not found in the tail
sample(1,[1,2,1]).
true.
But how does it work? X is the parameter given by the user but it seems to be overwriten by the head|tail extraction from the list. So it seems X new value is the first element in the list.