here's your mess of an answer....
I did this really quick so I don't know if it's right.
Let I = 4*Pi*x*sq[1-(x-2)^2])
1) Int(I,1,3) :problem
2) Let u = x-2 so u+2 = x and du = dx
3) Int(4*Pi*(u+2)*sq(1-u^2),1,3) :substitute
4) 4*Pi*Int(u*sq(1-u^2),1,3) + 8*Pi*Int(sq(1-u^2),1,3) :seperate
5) Let v = u^2 so dv = 2u*du
6) 2*Pi*Int(sq(1-v),1,3) + 8*Pi*Int(sq(1-u^2),1,3) :substitute
The rest is simple integration techniques
the first integral is basic and the second is a bit more
complicated but there are integration tables for these.
Code:
Int(I, 1, 3) = (4*Pi/3)*[1-(x-2)^2]^3 + 4*Pi*[ (x-2)*sq[1-(x-2)^2]+asin(x-2) ]
Like i said, I did it quick, but it should be right