mathCbrt

Returns the cube root of a number. Takes value (number). Returns the real cube root of the input value.

Mathematics

Parameters & Returns

Parameters

value Double

Returns

Double

Quick Summary

Returns the cube root of a number. Takes value (number). Returns the real cube root of the input value.

Technical Exegesis...

Returns the real cube root of the input value. Unlike square root, cube root can handle negative values.

Examples: mathCbrt(27.0) returns 3.0, mathCbrt(-8.0) returns -2.0

Useful for volume calculations and inverse cubic relationships.

Example

Example.bam
; No example implemented yet