Fifth Root Calculator
{
"topic": "fifth-root",
"input_types": [
"float"
],
"input_labels": [
"x"
],
"input_values": [
32
],
"type": "Calculate",
"title": "Fifth Root",
"category": "Arithmetic",
"function": "function myFunc(arr) {\n let x = arr[0];\n return Math.pow(x, 0.2);\n }",
"op_label": "Fifth Root, \\( \\sqrt[5]{x} \\)",
"explanation": "This Fifth Root Calculator take a number, x, and finds the fifth root of the number i.e., \\( \\sqrt[5]{x} \\) = \\( x ^{\\frac{1}{5}} \\) = \\( x ^ {0.2}\\)"
}