For example:
$ 2^3 = 2 \cdot 2 \cdot2 $
But what about a fractional power such as:
$$ 2^{2/3} = ? $$
1) How would I explain this?
2) How would I find value?
3) How would computers calculate this number?
For example:
$ 2^3 = 2 \cdot 2 \cdot2 $
But what about a fractional power such as:
$$ 2^{2/3} = ? $$
1) How would I explain this?
2) How would I find value?
3) How would computers calculate this number?
Hint: $$2\times 2\times 2=2^{3}$$ and $$(2^{3})^{1/3}=2$$ and $$2^{2/3}=\sqrt[3]{4}=\sqrt[3]{\frac{8}{2}}=\frac{2}{\sqrt[3]{2}}$$
For question #3: In the past, when computers didn't have the vast amounts of memory they do now, finding a root often fell to such methods as bisection, Newton's method, regula falsi, the secant method, and others. Plus, you had to write the programs, put them on cards, and be restricted to a few decimal places. These days, there are programs that will calculate your root to whatever accuracy you wish - I don't know what algorithm they use, but often it's one that reduces the amount of time and the amount of error in finding the root.