complex quadratic id fix

This commit is contained in:
lukew3
2020-10-21 21:44:28 -04:00
parent b73c3ee15f
commit 7eb2f4bdf7
2 changed files with 2 additions and 2 deletions

View File

@@ -69,5 +69,5 @@ def complexQuadraticFunc(prob_type=0, max_range=10):
return problem, solution
complex_quadratic = Generator("complex Quadratic Equation", 91, "Find the roots of given Quadratic Equation ",
complex_quadratic = Generator("complex Quadratic Equation", 100, "Find the roots of given Quadratic Equation ",
"simplified solution : (x1, x2), generalized solution : ((-b + sqrt(d))/2a, (-b - sqrt(d))/2a) or ((-b + sqrt(d)i)/2a, (-b - sqrt(d)i)/2a)", complexQuadraticFunc)

View File

@@ -10,4 +10,4 @@ for item in list:
print(item[2])
# print(mathgen.getGenList())
print(mathgen.genById(99))
print(mathgen.genById(100))