Back to Symbolic Math (SymEngine)
sym.cbrt
Computes the cube root of a symbolic expression.
Syntax
sym.cbrt(x)
Description
Computes the cube root of a symbolic expression. Returns the real cube root of x. Unlike square root, the cube root of a negative number is a negative real number. Equivalent to pow(x, 1/3).
Parameters
| Name | Description |
|---|---|
| x | - The radicand (as a symbolic expression). |
Returns
Expr