How do you find the integral #int_1^(3)12(1+5x)^5dx# ?

1 Answer
Sep 7, 2014

There are a couple of ways, but the usual way to do this is by using the change-of-variable rule:
let #u=1+5x => (du)/dx = 5#,
then #int_1^3(12(1+5x)^5)dx = 12int_1^3(1+5x)^5*5*1/5dx#
#=12int_1^3u^5*1/5(du)/dxdx#
#=12/5int_6^16u^5du#
and integrating normally from there.

However, if one isn't yet familiar with the change of variable rule, one can just as easily integrate this particular function rather easily (albeit slightly more prone to error) by expanding the brackets and integrating a particularly long function.

#(1+5x)^5 = 3125x^5+3125x^4+1250x^3+250x^2+25x+1# (this can be easily verified)

#=>12int_1^3(1+5x)^5dx#
#=12[(3125x^6)/6+(3125x^5)/5+(1250x^4)/4+(250x^3)/3+(25x)/2+x]_1^3#

The plus side of the second method is that it's easy, and it can be used to check that you have your change-of-variable rule method correct.
The minus side is that it's more prone to errors, and takes up more time (which is valuable in tests and exams).