# Nth Root

This Function returns a *\<numeric>*, which is the the Nth root of the specified **Value**.

Function available for the following operating systems:

![](https://3821468174-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LrTlA1suFa5N48x_83N%2F-MAlPVpH3WRwBy16c7JY%2F-MAlQBZuuTnc6hyzKSVQ%2Fimage.png?alt=media\&token=5c9534b7-ca05-4ac4-b408-2207cd5a5295)

### Parameters

* **Value** *\<numeric> -* Value to get the Nth root from.
* **Degree** *\<numeric> -* Degree of the root of **Value**.

### **Examples**

* *Example 1*

NRoot(27, 3)\
**Result** = 3

* *Example 2*

NRoot(8, 3)\
**Result** = 2

* *Example 3*

NRoot(-27, 3)\
**Result** = -3

* *Example 4*

NRoot(-16, 4)\
**Result** = 2

* *Example 5*

NRoot(16, 2)\
**Result** = 4

{% hint style="info" %}
To calculate a square root, set **Degree** to 2.
{% endhint %}
