tags:

views:

343

answers:

3

pow, ^, ** doesn't work, and Scheme seems to be too common a word to be able to effectively google it.

+1  A: 

The answer is expt and I am typing because StackOverflow doesn't like too short answers.

Claudiu
+7  A: 

expt

http://www.schemers.org/Documents/Standards/R5RS/HTML/r5rs-Z-H-9.html#%%5Fsec%5F6.2.5

z5h
finally a link to math stuff. ty!
Claudiu
+2  A: 

From R5RS Standard Pocedures:

(expt z1 z2) 

Returns z1 raised to the power z2. For z1 0

z1z2 = ez2 log z1

0z is 1 if z = 0 and 0 otherwise.

Searching for "scheme reference" turns up this document.

Laurence Gonsalves