Nth Root Calculator
{
"topic": "nth-root",
"input_types": [
"float",
"float"
],
"input_labels": [
"x",
"n"
],
"input_values": [
1024,
10
],
"type": "Calculate",
"title": "Nth Root",
"category": "Arithmetic",
"function": "function myFunc(arr) {\n let x = arr[0];\n let n = arr[1];\n return Math.pow(x, 1/n);\n }",
"op_label": "Nth Root, \\( \\sqrt[n]{x} \\)",
"explanation": "This Nth Root Calculator take a number, x, and finds the nth root of the number i.e., \\( \\sqrt[n]{x} \\) = \\( x ^{\\frac{1}{n}} \\)",
"schema_data": "\n <script type=\"application/ld+json\">\n {\n \"@context\": \"https://schema.org\",\n \"@type\": \"Article\",\n \"author\": {\n \"@type\": \"Person\",\n \"name\": \"Mallikarjuna M\",\n \"honorificSuffix\": \"B.Tech. (Electronics & Communication)\",\n \"url\": \"https://www.linkedin.com/in/mallikarjuna-mallisetty-7330314a/\"\n },\n \n \"dateModified\": \"2024-09-05T00:23:14.014Z\",\n \"datePublished\": \"2024-07-21T07:20:32.526Z\",\n \"description\": \"Calculate Nth Root - This Nth Root Calculator take a number, x, and finds the nth root of the number i.e., \\( \\sqrt[n]{x} \\) = \\( x ^{\\frac{1}{n}} \\)\",\n \"headline\": \"Nth Root Calculator\",\n \"mainEntityOfPage\": {\n \"@id\": \"https://convertonline.org\",\n \"@type\": \"WebPage\"\n },\n \"publisher\": {\n \"@type\": \"Organization\",\n \"name\": \"ConvertOnline.org\",\n \"logo\": {\n \"@type\": \"ImageObject\",\n \"url\": \"https://convertonline.org/images/icon.png\",\n \"width\": \"512px\",\n \"height\": \"512px\"\n }\n }\n }\n </script>\n "
}