Cube - surface area

Inputs

  • Side

Outputs

  • Surface area

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
Side: 1
Surface area: 6
2.
Side: 2
Surface area: 24
3.
Side: 3
Surface area: 54

Applicable neurons

  • Plus (x + y)
  • Multiple (x × y)

Algorithm

Test

Code made by AI:
/**
 * Plus (x + y): The addition of two whole numbers is the total amount of those quantities combined.
 *
 * @param x1 first number
 * @param x2 second number
 * @return {Array}
 */
function neuron1(x1, x2)
{
math.config({number: 'BigNumber', precision: 64}); return [math.eval(Number(x1) + '+'+Number(x2)).toString()];
}

/**
 * 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()];
}

/**
 * Cube - surface area: 
 * 
 * @param x1 Side
 * @return {Array}
 */
function neuron21(x1)
{
  var outputs = [];
  outputs[0] = x1;

  arr = neuron1(outputs[0], outputs[0]);
  outputs[1] = arr[0];

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

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

  return[outputs[3]];
}


Code made by AI:

Create your family tree for free