A vase maker decides to construct a vase whose contour is a cubic polynomial according to the following specifications:
∙
The vase is 4 feet tall.
∙
The vase is 4 feet in diameter at its widest (which occurs 1 foot from the base).
∙
The vase is 2 feet in diameter at its narrowest (which occurs 1 foot from the top).
∙
The vase has a flat circular bottom.
Rounded to 3 decimal places, what is the volume of the vase in cubic feet?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
*not an easy polynomial to integrate, took help from Wolfram Alpha
Log in to reply
agree.. I guess everyone would be lazy enough to solve system of 4 equation and quadrating a cubic polynomial, taking the integral of it, and then plugging bunch of numbers in the same question
Slight variation on Miloje Đukanović's approach.
The contour of the vase must have the points ( 1 , 2 ) and ( 3 , 1 ) as extrema. Since the contour is a cubic, this means that its derivative must have roots at x = 1 , 3 . That is, P ′ ( x ) = a ( x − 1 ) ( x − 3 ) . Integrating we have, P ( x ) = a ( 3 1 x 3 − 2 x 2 + 3 x ) + c , where a , c are real constants. The turning points of this cubic are at the required x-coordinates, but we still need to ensure that they are at the required y-coordinates. Evaluating at x = 3 gives P ( 3 ) = a ( 9 − 1 8 + 9 ) + c = c = 1 . Evaluating at x = 1 gives P ( 1 ) = a ( 3 1 − 2 + 3 ) + 1 = 3 4 a + 1 = 2 , which solves to a = 4 3 . Therefore, the contour function for the vase is P ( x ) = 4 1 x 3 − 2 3 x 2 + 4 9 x + 1 This can then be integrated to find the required volume.
Sorry, this problem is actually wrong itself to propose. I graphed both of these equations on desmos and they don’t graph it right. One needs 4 points to uniquely define a cubic equation. The processes behind these are totally what I did at first and all but I ended up getting different equations every time since 2 points themselves are not enough information to deduce a cubic.
Log in to reply
It's not just two points, since the fact that the given points are also local extrema provides us with additional information. The coefficients are determined by a system of equations involving a cubic and a quadratic.
😵so confusing!
Problem Loading...
Note Loading...
Set Loading...
Contour of vase is a cubic polynomial we can write that as:
P ( x ) = a x 3 + b x 2 + c x + d
We know that P ( x ) passes through points ( 1 , 2 ) and ( 3 , 1 ) , we can write this as:
P ( 1 ) = 2
P ( 3 ) = 1
We also know that those points represent widest and narrowest point, meaning that those points are local maximum/minimum, we can write it as:
P ′ ( 1 ) = 0
P ′ ( 3 ) = 0
where:
P ′ ( x ) = d x d P ( x ) = 3 a x 2 + 2 b x + c
By putting the values we get following system of linear equations
∣ ∣ ∣ ∣ ∣ ∣ ∣ ∣ a + b + c + d = 1 2 7 a + 9 b + 3 c + d = 1 3 a + 2 b + c = 0 2 7 a + 6 b + c = 0 ∣ ∣ ∣ ∣ ∣ ∣ ∣ ∣
By solving it we get:
∣ ∣ ∣ ∣ ∣ ∣ ∣ ∣ a = 4 1 b = − 2 3 c = 4 9 d = 1 ∣ ∣ ∣ ∣ ∣ ∣ ∣ ∣
Now when we have found our polynomial to be P ( x ) = 4 1 x 3 − 2 3 x 2 + 4 9 x + 1 . We can find volume of the vase as:
V = ∫ 0 4 π P ( x ) 2 d x
This is an easy polynomial integral and by evaluating it we get:
V = 3 5 3 3 2 π ≈ 2 9 . 8 cubic feet . □