The point M = ( a , b , c ) is in the first octant in the 3d-coordinate system. A plane passes trough this point and makes a tetrahedron with the planes x = 0 , y = 0 and z = 0 . Find the minimum possible volume of this tetrahedron in terms of a , b and c .
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.
In the image above we have a representation of the problem. We have some plane that cut the coordinate axes at points A , B and C . It forms a "right" tetrahedron O A B C . The point M = ( a , b , c ) is in that plane.
The equation of this plane can be written as α x + β y + γ z = 1 . The volume of the tetrahedron O A B C is given by 6 α β γ .
If the point M is in the plane, we can write the plane equation as α a + β b + γ c = 1 .
Now our problem is to optimize the volume function giving the plane equation as a constraint.
We can use Lagrange Multipliers .
Setting g ( α , β , γ ) = α a + β b + γ c = 1 and f ( α , β , γ ) = 6 α β γ , we have:
∇ f = ( 6 β γ , 6 α γ , 6 α β )
∇ g = ( − α 2 a , − β 2 b , − γ 2 c )
We need ∇ f = λ ∇ g , so:
( 6 β γ , 6 α γ , 6 α β ) = λ ( − α 2 a , − β 2 b , − γ 2 c )
Finally, we need to solve the following system of equations:
⎩ ⎪ ⎪ ⎪ ⎪ ⎨ ⎪ ⎪ ⎪ ⎪ ⎧ α a + β b + γ c = 1 ( 1 ) 6 β γ = − α 2 − λ a ( 2 ) 6 α γ = − β 2 λ c ( 3 ) 6 α β = − γ 2 λ c ( 4 )
Multiplying equations ( 2 ) , ( 3 ) and ( 4 ) by α , β and γ respectively:
( 2 ) ′ 6 α β γ = − α λ a
( 3 ) ′ 6 α β γ = − β λ b
( 4 ) ′ 6 α β γ = − γ λ c
Adding up these equations and using the equation ( 1 ) we will get:
2 α β γ = − λ ( α a + β b + γ c )
λ = − 2 α β γ
Using this result back on the equations ( 2 ) , ( 3 ) and ( 4 ) we will get:
( 2 ) :
6 β γ = 2 α 2 a α β γ
6 2 α = a
α = 3 a
( 3 ) :
6 α γ = 2 β 2 b α β γ
6 2 β = b
β = 3 b
( 4 ) :
6 α β = 2 γ 2 c α β γ
6 2 γ = c
γ = 3 c
These results tell us that the volume of the tetrahedron will be optimal when the equation of the plane is 3 a x + 3 b y + 3 b z = 1 . The volume of the tetrahedron will be 6 3 a 3 b 3 c = 2 9 a b c .
The reason that this volume is minimum can be observed imagining a plane that is parallel to the plane z = 0 . The volume would be infinity. The this plane is tilted until it becomes parallel to the Z axis. The volume is still infinity. So, this solution must be point of minimum.
Problem Loading...
Note Loading...
Set Loading...
If the normal to the new plane is u , where all three components of u are positive, then the equation of the new plane is r ⋅ u = u 1 a + u 2 b + u 3 c , and to the intercepts of the new plane with the x -, y - and z -axes are ( u 1 u 1 a + u 2 b + u 3 c , 0 , 0 ) , ( 0 , u 2 u 1 a + u 2 b + u 3 c , 0 ) and ( 0 , 0 , u 3 u 1 a + u 2 b + u 3 c ) , and so the volume of the tetrahedron is V = 6 u 1 u 2 u 3 ( u 1 a + u 2 b + u 3 c ) 3 Using the Arithmetic-Geometric Mean Inequality, we have 3 u 1 a + u 2 b + u 3 c ≥ 3 u 1 u 2 u 3 a b c and hence u 1 u 2 u 3 ( u 1 a + u 2 b + u 3 c ) 3 ≥ 2 7 a b c and hence V ≥ 2 9 a b c , with equality when u is parallel to a − 1 i + b − 1 j + c − 1 k .