diff options
Diffstat (limited to 'src/algebra/trigcat.spad.pamphlet')
-rw-r--r-- | src/algebra/trigcat.spad.pamphlet | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/algebra/trigcat.spad.pamphlet b/src/algebra/trigcat.spad.pamphlet index e3d7bb32..e4c4f1d9 100644 --- a/src/algebra/trigcat.spad.pamphlet +++ b/src/algebra/trigcat.spad.pamphlet @@ -20,7 +20,7 @@ ElementaryFunctionCategory(): Category == with log : $ -> $ ++ log(x) returns the natural logarithm of x. exp : $ -> $ ++ exp(x) returns %e to the power x. - "**": ($, $) -> $ ++ x**y returns x to the power y. + **: ($, $) -> $ ++ x**y returns x to the power y. add if $ has Monoid then x ** y == exp(y * log x) |