x² - y² = 0 (by x)

Inputs

  • x

Outputs

  • y1
  • y2

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
x: 2
y1: -2
y2: 2
2.
x: 0
y1: 0
y2: 0
3.
x: -8
y1: 8
y2: -8

Applicable neurons

  • Minus (x - y)
  • 0
  • Destroyed building (windows, walls)
  • equivalent rate of interest per payment period
  • character (

Algorithm

Test

Code made by AI:
/**
 * 0: 
 *
 * @return {Array}
 */
function neuron500()
{
return [0];
}

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

/**
 * x² - y² = 0 (by x): 
 * 
 * @param x1 x
 * @return {Array}
 */
function neuron614(x1)
{
  var outputs = [];
  outputs[0] = x1;

  arr = neuron500();
  outputs[1] = arr[0];

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

  return[outputs[2], outputs[0]];
}


Code made by AI:

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