Solving x to the n

Simplest solution:

If y=x^n then x=y^(1/n)

Or, if you have log tables:

If y=x^n then

  • log y = n log x
  • log x = (log y) / n
  • x = e((log y) / n)

Leave a Reply