Update definiteIntegralFunc.py

fixed presentation error
This commit is contained in:
helplessThor
2020-10-20 12:30:04 +05:30
committed by GitHub
parent 2f6c9b0eb7
commit 1d1a6f2740

View File

@@ -12,14 +12,14 @@ def definiteIntegralFunc(max_coeff=100):
b = random.randint(0, max_coeff)
c = random.randint(0, max_coeff)
I = quad(integrand, 0, 1, args=(a, b, c))[0]
S = round(I, 4)
result = quad(integrand, 0, 1, args=(a, b, c))[0]
S = round(result, 4)
problem = "The definite integral within limits 0 to 1 of the equation " + str(a) + "x^2 + "+ str(b) +"x + " + str(c) + " is = "
problem = "The definite integral within limits 0 to 1 of the equation " + str(a) + "x^2 + " + str(b) + "x + " + str(c) + " is = "
solution = str(S)
return problem, solution
definiteIntegral = Generator("Definite Integral of Quadratic Equation", 110, "The definite integral within limits 0 to 1 of quadratic equation ax^2+bx+c is = ", "I", definiteIntegralFunc)
definiteIntegral = Generator("Definite Integral of Quadratic Equation", 110, "The definite integral within limits 0 to 1 of quadratic equation ax^2+bx+c is = ", "S", definiteIntegralFunc)