Share via

Finding the nth root of a number in EXCEL

Anonymous
2011-01-28T19:17:30+00:00

I wud like to know how does one find out nth root of a number in Excel. I can see on SQROOT which gives the square root. I need formula for the nth root. pl help

Shambhu

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

  1. Anonymous
    2011-01-28T19:32:58+00:00

    You can use the ^ operator to raise the number to power... you would just use the reciprocal of N (rather than N itself) for the Nth root. So...

    NthRoot = Number ^ (1 / N)

    where N is the root you want to take. For example, if you wanted the 5 root of 3125, you would do this...

    FifthRootOf3125 = 3125 ^ (1 / 5)


    NOTE: Please mark the message or messages (yes, you can mark more than one) that answer your question as the "Answer" so that others will know your question has been resolved.

    60+ people found this answer helpful.
    0 comments No comments

Answer accepted by question author

  1. Anonymous
    2011-01-28T19:28:30+00:00

    With

    A1: ...a number....eg 8

    this formula  returns the cube root of that number:

    B1: =A1^(1/3)

    In that example, the formula returns: 2

    (2x2x2=8)

    This formula returns the square root:

    B1: =A1^(1/2)

    for other roots:

    B1: =A1^(1/4)

    B1: =A1^(1/5)

    etc

    Does that help?


    Ron Coderre

    Microsoft MVP (2006 - 2010) - Excel

    P.S. If any post answers your question, please mark it as the Answer (so it won't keep showing as an open item.)

    1 person found this answer helpful.
    0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Anonymous
    2011-02-01T06:57:20+00:00

    Thanx a lot, it serves the purpose.

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2011-02-01T06:01:50+00:00

    Thanx a lot, it serves the purpose.

    Shambhu

    0 comments No comments