3.11 \(\int (3 a b+3 b^2 x+3 b c x^2+c^2 x^3) \, dx\)

Optimal. Leaf size=32 \[ 3 a b x+\frac {3 b^2 x^2}{2}+b c x^3+\frac {c^2 x^4}{4} \]

[Out]

3*a*b*x+3/2*b^2*x^2+b*c*x^3+1/4*c^2*x^4

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 32, normalized size of antiderivative = 1.00, number of steps used = 1, number of rules used = 0, integrand size = 25, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.000, Rules used = {} \[ 3 a b x+\frac {3 b^2 x^2}{2}+b c x^3+\frac {c^2 x^4}{4} \]

Antiderivative was successfully verified.

[In]

Int[3*a*b + 3*b^2*x + 3*b*c*x^2 + c^2*x^3,x]

[Out]

3*a*b*x + (3*b^2*x^2)/2 + b*c*x^3 + (c^2*x^4)/4

Rubi steps

\begin {align*} \int \left (3 a b+3 b^2 x+3 b c x^2+c^2 x^3\right ) \, dx &=3 a b x+\frac {3 b^2 x^2}{2}+b c x^3+\frac {c^2 x^4}{4}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 32, normalized size = 1.00 \[ 3 a b x+\frac {3 b^2 x^2}{2}+b c x^3+\frac {c^2 x^4}{4} \]

Antiderivative was successfully verified.

[In]

Integrate[3*a*b + 3*b^2*x + 3*b*c*x^2 + c^2*x^3,x]

[Out]

3*a*b*x + (3*b^2*x^2)/2 + b*c*x^3 + (c^2*x^4)/4

________________________________________________________________________________________

fricas [A]  time = 0.60, size = 28, normalized size = 0.88 \[ \frac {1}{4} x^{4} c^{2} + x^{3} c b + \frac {3}{2} x^{2} b^{2} + 3 x b a \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(c^2*x^3+3*b*c*x^2+3*b^2*x+3*a*b,x, algorithm="fricas")

[Out]

1/4*x^4*c^2 + x^3*c*b + 3/2*x^2*b^2 + 3*x*b*a

________________________________________________________________________________________

giac [A]  time = 0.27, size = 28, normalized size = 0.88 \[ \frac {1}{4} \, c^{2} x^{4} + b c x^{3} + \frac {3}{2} \, b^{2} x^{2} + 3 \, a b x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(c^2*x^3+3*b*c*x^2+3*b^2*x+3*a*b,x, algorithm="giac")

[Out]

1/4*c^2*x^4 + b*c*x^3 + 3/2*b^2*x^2 + 3*a*b*x

________________________________________________________________________________________

maple [A]  time = 0.00, size = 29, normalized size = 0.91 \[ \frac {1}{4} c^{2} x^{4}+b c \,x^{3}+\frac {3}{2} b^{2} x^{2}+3 a b x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(c^2*x^3+3*b*c*x^2+3*b^2*x+3*a*b,x)

[Out]

3*a*b*x+3/2*b^2*x^2+b*c*x^3+1/4*c^2*x^4

________________________________________________________________________________________

maxima [A]  time = 0.55, size = 28, normalized size = 0.88 \[ \frac {1}{4} \, c^{2} x^{4} + b c x^{3} + \frac {3}{2} \, b^{2} x^{2} + 3 \, a b x \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(c^2*x^3+3*b*c*x^2+3*b^2*x+3*a*b,x, algorithm="maxima")

[Out]

1/4*c^2*x^4 + b*c*x^3 + 3/2*b^2*x^2 + 3*a*b*x

________________________________________________________________________________________

mupad [B]  time = 0.04, size = 28, normalized size = 0.88 \[ \frac {3\,b^2\,x^2}{2}+b\,c\,x^3+3\,a\,b\,x+\frac {c^2\,x^4}{4} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(3*a*b + 3*b^2*x + c^2*x^3 + 3*b*c*x^2,x)

[Out]

(3*b^2*x^2)/2 + (c^2*x^4)/4 + 3*a*b*x + b*c*x^3

________________________________________________________________________________________

sympy [A]  time = 0.06, size = 31, normalized size = 0.97 \[ 3 a b x + \frac {3 b^{2} x^{2}}{2} + b c x^{3} + \frac {c^{2} x^{4}}{4} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(c**2*x**3+3*b*c*x**2+3*b**2*x+3*a*b,x)

[Out]

3*a*b*x + 3*b**2*x**2/2 + b*c*x**3 + c**2*x**4/4

________________________________________________________________________________________