equilateral polygon - Perimeter

Inputs

  • the number of sides (n)
  • the length of one of the sides (a)

Outputs

  • Perimeter

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
the number of sides (n): 2
the length of one of the sides (a): 3
Perimeter: 6
2.
the number of sides (n): 1
the length of one of the sides (a): 24
Perimeter: 24
3.
the number of sides (n): 5
the length of one of the sides (a): 5
Perimeter: 25

Applicable neurons

  • Multiple (x × y)

Algorithm

Test

Code made by AI:
/**
 * Multiple (x × y): 
 *
 * @param x1 Number X
 * @param x2 Number Y
 * @return {Array}
 */
function neuron3(x1, x2)
{
math.config({number: 'BigNumber', precision: 64}); return [math.eval(Number(x1) + '*'+Number(x2)).toString()];
}

/**
 * equilateral polygon - Perimeter: 
 * 
 * @param x1 the number of sides (n)
 * @param x2 the length of one of the sides (a)
 * @return {Array}
 */
function neuron551(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

  arr = neuron3(outputs[0], outputs[1]);
  outputs[2] = arr[0];

  return[outputs[2]];
}


Code made by AI:

Create your family tree for free