RosettaCodeData/Task/Real-constants-and-functions/Maxima/real-constants-and-functions.maxima
2025-08-11 18:05:26 -07:00

10 lines
335 B
Text

%e$ /* e */
%pi$ /* pi */
sqrt(x)$ /* square root */
log(x)$ /* natural logarithm */
/* logarithms for all other bases are not built-in and have to be defined in terms of log(x) */
exp(x)$ /* exponential */
abs(x)$ /* magnitude */
floor(x)$ /* floor */
ceiling(x)$ /* ceiling */
x^y$ /* power */