ax + b = 0

Inputs

  • a
  • b

Outputs

  • x

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
a: 3
b: 15
x: -5
2.
a: 2
b: -10
x: 5
3.
a: 1
b: 0
x: 0

Applicable neurons

  • Plus (x + y)
  • Minus (x - y)
  • Division (x ÷ y)
  • Pi (π) 3.14
  • 1 mile into kilometers
  • x² - y² = 0 (by x)
  • word world
  • a is not b
  • [x]
  • 0-9
  • select count (A, B, C)
  • hejneho matematika 2 - 1/1

Algorithm

Test

Code made by AI:
/**
 * 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()];
}

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

/**
 * ax + b = 0: 
 * 
 * @param x1 a
 * @param x2 b
 * @return {Array}
 */
function neuron578(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

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

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

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

  return[outputs[4]];
}


Code made by AI:

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