x² - y² = 0 (by y)

Inputs

  • y

Outputs

  • x1
  • x2

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
y: 5
x1: 5
x2: -5
2.
y: 24
x1: 24
x2: -24
3.
y: -9
x1: -9
x2: 9

Applicable neurons

  • Minus (x - y)
  • 0
  • Volume Of a Pyramid
  • character h
  • (a, b]
  • (-∞, x)
  • decimal part of a number
  • character z
  • word 11

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 y): 
 * 
 * @param x1 y
 * @return {Array}
 */
function neuron613(x1)
{
  var outputs = [];
  outputs[0] = x1;

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

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

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


Code made by AI:

Create your family tree for free