When solving the following problem, I could not understand why my reasoning came up with an answer that's different than the one on the solution's manual.
Question: Consider $(x,y,z)$ such that $x^2+y^2<1, x>0, 0 \le z \le 5$. This describes one half of a cylinder (a split log). Chop out a wedge out of the log along $z=2x$. Find the volume of the wedge.
My reasoning:
Wedge Volume $=$ (half the volume of the cylinder of height 2) $-$ (volume of solid of revolution found revolving the curve $x=z/2$, from 0 to 2, over the z axis).
Half Cylinder Volume: $(\pi r^2h)/2 = \pi/2 \int_0^2 (1)^2 dz = \pi$
(Volume of solid of revolution found revolving the curve x=z/2, from 0 to 2, over the z axis): $(\pi r^2h)/2 = \pi/2 \int_0^2 (z/2)^2 dz = \pi/3$
Wedge Volume: $\pi - \pi/3 = 2\pi/3$
However, the solution's manual answer is $4/3$ and it displays a different reasoning:
The slice perpendicular to the $xz$-plane are right triangles with base of length $x$ and height $z=2x$. Therefore the area of a slice is $x^2$. The volume is:
$$\int_{-1}^1 x^2 dy = \int_{-1}^1 (1-y^2) dy = 4/3.$$
While I understand the solution's manual reasoning and even find it simpler than mine, I still cannot understand why the two approaches results in different answers. What am I missing?