n
Takes the nth root of x.
root NTHROOT value
Example
3 NTHROOT 8 returns 2
The symbols for differentiation and integration are
available directly form the
∂ | Differentiates expression with respect to the variable of |
| differentiation. From the command line, use a formal |
| name (S1, etc.) for a |
| |
| ∂ variable(expression) |
| Example |
| ∂ s1(s12+3*s1) returns 2*s1+3 |
∫ | Integrates expression from lower to upper limits with |
| respect to the variable of integration. To find the definite |
| integral, both limits must have numeric values (that is, be |
| numbers or real variables). To find the indefinite integral, |
| one of the limits must be a formal variable (s1, etc). |
| ∫ (lower, upper, expression, variable) |
| |
| further details. |
| Example |
| ∫ (0,s1,2*X+3,X) |
| finds the indefinite result 3*s1+2*(s1^2/2) |
| |
| variables” on page |
| finding indefinite integrals. |
Using mathematical functions |