x / 2y

Inputs

  • x
  • y

Outputs

  • x / 2y

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
x: 4
y: 2
x / 2y: 1
2.
x: 8
y: 1
x / 2y: 4
3.
x: 16
y: 4
x / 2y: 2

Applicable neurons

  • Plus (x + y)
  • Division (x ÷ y)
  • Get html between tags (text)
  • before decimal point
  • character a
  • word largest
  • max (from 2 values)

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

/**
 * Division (x ÷ y): X / Y
 *
 * @param x1 first number
 * @param x2 second number
 * @return {Array}
 */
function neuron17(x1, x2)
{
math.config({number: 'BigNumber', precision: 64}); return [math.eval(Number(x1) + '/'+Number(x2)).toString()];
}

/**
 * x / 2y: 
 * 
 * @param x1 x
 * @param x2 y
 * @return {Array}
 */
function neuron715(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

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

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

  return[outputs[3]];
}


Code made by AI:

Rodokmen - poznejte své předky | TOPlist U.I., Umělá inteligence