So I came across a situation where a calculator only had square root, but I needed the cubic root. So I used the old $n^\frac13$ trick, and sure enough, the cubic root of n. So this got me thinking. As far as I have been tought there is no formula to calculate a root (only alorithms), but still $n^\frac1m = \sqrt[m]n$. Why is this not a way to calculate cubic roots without using an algorithm?
2026-04-17 17:59:59.1776448799
Why is n^(1/m) no valid way to calculate a root
116 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Calculating a power means calculating $\exp$ and $\ln$, as in $x^{\frac1n} = \exp(\frac1n \ln x)$. This is more expensive than for example using the Newton iteration to find the root.
You still need algorithms to compute $\exp$ and $\ln$.