scientific notation
scientific_notationConvert any number to scientific notation and engineering notation. Returns the coefficient, exponent, a formatted string with Unicode superscripts (e.g. '3.14 × 10²'), and engineering notation where the exponent is a multiple of 3. Useful for expressing very large or very small values compactly, common in physics, electronics (picofarads, gigahertz), and astronomy. Accepts output from sig_figs and log_calc for precision-aware formatting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | The number to convert to scientific notation |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| exponent | Yes | The power-of-10 exponent | |
| coefficient | Yes | The coefficient (mantissa) between 1 and 10 | |
| notation_string | Yes | Formatted scientific notation with Unicode superscripts (e.g. '3.14 × 10²') | |
| engineering_notation | Yes | Engineering notation with exponent divisible by 3 |