a and b are the solutions of: X^2 – nX + x = 0
d = n*n - 4*x
a = (- b - d**0.5)/2
b = (- b + d**0.5)/2
1
solved Solve a simultaneous equation with product of the 2 variables in Python?
a and b are the solutions of: X^2 – nX + x = 0
d = n*n - 4*x
a = (- b - d**0.5)/2
b = (- b + d**0.5)/2
1
solved Solve a simultaneous equation with product of the 2 variables in Python?