The more common name for mystery:
(define (mystery f l)
   (cond ((null? l) l)
         (else (cons (f (car l)) 
                     (mystery f (cdr l))))))