Thanks guys.
I found this function on another thread and modified it a bit:

Quote:
function Root(var num, var expo)
{
return(exp(log(num)/expo));
}

root_number = Root(2,12);


So, if I plug any two numbers into the Root function it will give me the number that multiplies by itself "expo" times to make "num."

i.e. 1.05946309436 is the twelfth root of two. So if you multiply it by itself 12 times, you get 2. This equation can get this number if you plug in 2 as num and 12 as expo. You could do this with any two numbers.

Higher math is difficult for me, so this is a great forum to have! If anyone can use this equation for something, please go ahead.

Last edited by Dooley; 01/20/17 06:42.