17 lines
736 B
Text
17 lines
736 B
Text
;Task:
|
|
Show how to use the following math constants and functions in your language (if not available, note it):
|
|
:* <big>''e''</big> (base of the natural logarithm)
|
|
:* <big><math>\pi</math></big>
|
|
:* square root
|
|
:* logarithm (any base allowed)
|
|
:* exponential (<big>''e''<sup>''x''</sup></big> )
|
|
:* absolute value (a.k.a. "magnitude")
|
|
:* floor (largest integer less than or equal to this number--not the same as truncate or int)
|
|
:* ceiling (smallest integer not less than this number--not the same as round up)
|
|
:* power (<big>''x''<sup>''y''</sup></big> )
|
|
|
|
|
|
;Related task:
|
|
* [[Trigonometric Functions]]
|
|
<br><br>
|
|
|