I'm currently taking Calculus II as an undergrad, and I am having a lot of issues understanding solids of revolution. Unfortunately neither my professor or my textbook has been much help and I'm feeling very "black boxed"--that is, when the formula doesn't work I am completely lost as to how to fix it.
The current problem I am having difficulty with is the following:
The area bounded by the y-axis and the curves $x=1+(y-2)^2$ and $x=2$ is rotated about the x-axis. Find the volume of the solid created by using the method of cylindrical shells.
I have attempted this problem and got the following integral: $ \int_1^2 (2 \pi)(y)(1+(y-2)^2dx $, which evaluates to $\frac{23 \pi}{6}$. The textbook gives the answer as $\frac{16 \pi }{3} $ with no explanation for this answer. I am completely lost and could really use an explanation of why my integral isn't working and what will work.

For this problem, the region is in the first quadrant, and it is bounded on the left by part of a parabola opening to the right, and on the right by a vertical line. Its bottom tip is the point $(2,1)$, its top tip is the point $(2,3)$, and its left-most point is $(1,2)$.
Since it's being revolved around the $x$-axis, we could either use a $dx$ integral with the "washers" method, or else a $dy$ integral with the "shells" method. The first option would have us cut up the region into vertical slices, expressing the edges as functions of $x$, which seems annoying. The second option allows us to use the fact that we already have the left and right edges expressed as functions of $y$.
We need to integrate from bottom to top, i.e., from $y=1$ to $y=3$. The integrand, with the shell method, is given by the cylindrical lateral area formula: $A=2\pi r h$. We have $r=y$, and $h=2-(1+(y-2)^2)$, because that's the right edge, minus the left edge. Putting that together, we get:
$$\begin{align} \int_1^3 2\pi\cdot y\cdot(2-(1+(y-2)^2) \,dy &= 2\pi\int_1^3 y(2-(1+y^2-4y+4))\,dy\\ &=2\pi\int_1^3 y(-3+4y-y^2)\,dy\\ &=-2\pi\int_1^3 y^3-4y^2+3y\,dy\\ &=-2\pi\left[\frac{y^4}{4}-\frac{4y^3}{3}+\frac{3y^2}{2}\right]_1^3\\ &=\frac{16\pi}{3} \end{align}$$
Does this help?