Evaluate
(((lambda(x y) (lambda (x) (* x y))) 5 6) 10)in Scheme.
I am not sure how to do this actually!
((lambda (x y) (+ x x y)) 3 5)
Is fairly simple. Here x=3, y=5.
But in this the body is: (lambda (x) (* x y))) 5 6) and the parameter is 10?
So we evaluate separately? As in (lambda (x) (* x y))) 5 6) = (* 5 y) And then (((lambda(x y) (lambda (x) (* x y))) 5 6) 10) = (((lambda (x y) (* 5 y) 10))
But how can that be evaluated?

