up vote 2 down vote favorite
share [g+] share [fb]

I define a function in LISP, and it defines correctly. But whenever I try to call it, I get an error saying "The variable FACTORIAL is unbound."

I have tried this on both OS X and Windows 7, on LispWorks and Allegro. The function is -

(defun factorial (x)
   (if (= 1 x) 1
       (* x factorial (- 1 x))))

Any help is appreciated.

link|improve this question
can you show the code where you call it? – atk Aug 31 '10 at 1:31
feedback

4 Answers

In the third line of your code, you're multiplying x times factorial times 1-x.

The first thing to notice is factorial isn't a variable: it's a function. As Common-Lisp is a Lisp-2, factorial isn't bound as a variable at all–it's bound as a function.

You need to be calling the factorial function on one less than x, not x less than one.

So:

(defun factorial (x)
   (if (= 1 x) 1
       (* x (factorial (- x 1)))))

…should do it.

link|improve this answer
feedback

It looks like you're missing a set of parentheses:

(defun factorial (x) 
   (if (= 1 x) 1 
       (* x (factorial (- 1 x))))) 

Without the () around factorial, Lisp thinks you're referring to a variable instead of a function.

link|improve this answer
Almost–I almost missed the (- 1 x), too. Though I don't know CL, so I could be totally off! – Isaac Hodes Aug 31 '10 at 1:34
@Isaac Hodes: I saw that too but I thought I'd leave it as an exercise for the OP. :) – Greg Hewgill Aug 31 '10 at 1:38
Good call–I was half-unsure if I were wrong about it, hence the comment haha. And it makes sense to leave it like that, too! – Isaac Hodes Aug 31 '10 at 1:40
feedback

To complete the answer of @Isaac Hodes, this show you that there is clearly 2 namspace for function and variable in CL. You wouldn't have the same error if you were in scheme. You can read more here.

link|improve this answer
1  
It would still be wrong, since you still need the parentheses around the recursive call, but it would be wrong in a more interesting way. – John R. Strohm Aug 31 '10 at 16:44
1  
Yes that is way I said "You wouldn't have the same error" – mathk Sep 1 '10 at 17:56
feedback

You need to bind all variables and function calls you intend to use with brackets unless you want them to be symbols. About unbound errors, Paul Graham has a good example in his book: Ansi Common Lisp

One of the most common complaints you'll hear from Lisp is that a symbol has no value or is unbound. Several distinct problems show themselves in this way. Local variables, like those established by let and defun, are valid only within the body of the expression where they are created. So if we try to refer to such a variable outside the let that creates it:

> (progn (let ((x 10))
                    (format t "Here x = ~A.~%" x))
                  (format t "But now it's gone...~%") x)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.