A cuboid measures 2 × 3 × 5 . A three dimensional solid results when it is rotated about its space diagonal (a space diagonal is a line segment connecting two opposite vertices such that the center of the cuboid bisects it). Find the perimeter of the cross section of this solid when it is cut by a plane that contains the axis of rotation. The use of a programming environment is highly recommended.
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.
Thanks for sharing this great solution. Happy New Year 2019 !!
This one makes use of much of the machinery of the previous problems. Here is my process:
Let the space diagonal be between points ( 0 , 0 , 0 ) and ( 2 , 3 , 5 ) . Let u be a unit vector along the space diagonal, and let u 1 and u 2 be unit vectors perpendicular to u .
Let the parameter α be the distance along the space diagonal. Let the value σ be the perpendicular distance from a point on the space diagonal to some place on the cuboid. Let θ be an angular parameter.
u 3 = c o s θ u 1 + s i n θ u 2 Point on Cuboid Surface = α u + σ u 3
Now, the tricky part is that for each α , θ varies continuously between 0 and 2 π . Consequently, there are infinitely many σ values for each α . The processing is as follows:
1)
For every
α
between
0
and the length of the space diagonal (in small steps), sweep
θ
from
0
to
2
π
in small steps.
2)
For every
θ
, form
u
3
and determine a
σ
value corresponding to the intersection with the infinite plane containing each cuboid face. There will be six
σ
calculations in total.
3)
The intersection point with the cuboid corresponds to the smallest positive
σ
value. Call this
σ
i
n
t
e
r
s
e
c
t
4)
For each
α
, as
θ
is swept, keep track of the largest value of
σ
i
n
t
e
r
s
e
c
t
. Call this
σ
m
a
x
5)
As
α
increments, calculate the new value of
σ
m
a
x
and memorize the old value (call it
σ
m
a
x
−
s
t
o
r
e
) .
5)
The infinitesimal change in perimeter of the intersection of the plane with the volume of revolution is
2
(
σ
m
a
x
−
σ
m
a
x
−
s
t
o
r
e
)
2
+
d
α
2
6)
Adding up all of the infinitesimal perimeter portions yields a total cross sectional area of of about
2
0
.
9
6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
|
Thanks for a great solution. Happy New Year to you.
Problem Loading...
Note Loading...
Set Loading...
Using the following code, the result for a = 2 , b = 3 , and c = 5 is P ≈ 2 0 . 9 6 7 .