I was doing a few problems involving frustums, specifically right circular frustums, and I kept getting the surface area wrong using a certain method that made sense logically. Here is my method:
Obviously, a frustum is the result of a cone being cut by a plane perpendicular to the base of the cone. Therefore, we can subtract the surface area of the smaller cone formed by this cut from the surface area of the larger cone. However, we need to add the base of the smaller cone back since it is part of the surface of the frustum. I got the answer wrong both times I used this method, but the difference between the correct answer and my answer (correct answer - my answer) was equal to the area of the base of the smaller cone both times.
Here is one of the problems: "A cone with radius 9 and height 12 is cut in two pieces by a plane parallel to the base of the cone such that the plane is 8 units from the base of the cone. Find the total surface area of each piece thus formed."
I found the surface area of the small cone to be $24\pi$, which was correct. Then, I found the surface area of the larger cone to be $216\pi$. Also, the area of the smaller base was $9\pi$, which was correct as well. So, I did $216\pi - 24\pi + 9\pi = 201\pi$. The correct answer was $210\pi = 201\pi + 9\pi$.
Am I supposed to be adding that smaller base area back twice? If so, why?