Eight to the one-third — only if the parentheses are there
Linear text has no raised slot, so the grouping must be spelled out: 8^1/3 parses as 381=38, not 2 — the caret binds tighter than the slash. CasesSame rule in spreadsheets and code (8**(1/3)). Languages with integer division add a second layer: 1/3 evaluating to 0 turns the whole expression into 80=1. Also written8^(0.333…) — the decimal dodge; exact only when the decimal is exact.
Do not confuseThe typeset form, where the raised fraction *is* the grouping. On paper the notation protects you; in a formula bar nothing does.