... parameter-name ...in the function skeleton with an expression involving the parameter-name and whose value will produce the correct answer to the function.
For example, in the cube example, the skeleton
(define (cube number) ... number ... )becomes
(define (cube number) (* number number number) )because the cube of a number is computed by multiplying together three copies of that number.