From 1d1a6f274056d851ba56a221e3edf42bc96ae31d Mon Sep 17 00:00:00 2001 From: helplessThor <66440538+helplessThor@users.noreply.github.com> Date: Tue, 20 Oct 2020 12:30:04 +0530 Subject: [PATCH] Update definiteIntegralFunc.py fixed presentation error --- mathgenerator/funcs/definiteIntegralFunc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mathgenerator/funcs/definiteIntegralFunc.py b/mathgenerator/funcs/definiteIntegralFunc.py index b029ccb..b0e502c 100644 --- a/mathgenerator/funcs/definiteIntegralFunc.py +++ b/mathgenerator/funcs/definiteIntegralFunc.py @@ -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)