How do I get the nth root of a number?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Using Office XP. I need to get the 9th root of a number. If I go the route of:-
(log())/9 how do I get the antilog of the result?
 
A few ways. Using the Log, you'd just raise 10 to that power. That is the
9th root of x is 10^(log(x)/9)

However, what may be easier is just doing it directly with x^(1/9).
Also if x can be negative you'll have an easier time with x^(1/9), although
you'll have trouble with even roots.

Art
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top