You are given two circles C 1 and C 2 . Circle C 1 has a radius of 5 0 and its center is at ( 5 0 , 2 5 , 0 ) . It plane has a unit normal vector given by n 1 = ( sin θ 1 cos ϕ 1 , sin θ 1 sin ϕ 1 , cos θ 1 ) , where θ 1 = 7 0 ∘ and ϕ 1 = 6 0 ∘ .
Circle C 2 has a radius of 7 0 and its center is at ( 2 5 , 5 0 , 0 ) . Its plane has a unit normal vector given by n 2 = ( sin θ 2 cos ϕ 2 , sin θ 2 sin ϕ 2 , cos θ 2 ) , where θ 2 = 5 0 ∘ and ϕ 2 = 1 8 0 ∘ .
A plane passing through the origin and having a normal vector n p = ( 1 , − 2 , 6 ) passes through the two circles, intersecting each in two points. Construct the convex quadrilateral from these four points, and find its perimeter and area.
Find the sum of the perimeter and the area.
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.
Consider:
n ^ 1 = ( n 1 x , n 1 y , n 1 z ) n ^ 2 = ( n 2 x , n 2 y , n 2 z )
The equations of the planes on which each of the circles lies are:
P 1 : ( ( x − 5 0 ) , ( y − 2 5 ) , z ) ⋅ n ^ 1 = 0 P 2 : ( ( x − 2 5 ) , ( y − 5 0 ) , z ) ⋅ n ^ 2 = 0
Having found the equations of these planes, the next step is to find a pair of perpendicular unit vectors on each plane to parameterise the circles. A point that lies of P 1 and P 2 respectively are:
R P 1 = ( 0 , 0 , n 1 z 5 0 n 1 x + 2 5 n 1 y ) R P 2 = ( 0 , 0 , n 2 z 2 5 n 2 x + 5 0 n 2 y )
Therefore: a unit vector on the plane P 1 is:
n ^ 1 1 = ∣ R P 1 − R C 1 ∣ R P 1 − R C 1 n ^ 1 2 = n ^ 1 × n ^ 1 1
A unit vector on the plane P 2 is:
n ^ 2 1 = ∣ R P 2 − R C 2 ∣ R P 2 − R C 2 n ^ 2 2 = n ^ 2 × n ^ 2 1
Here R C 1 and R C 2 are the position vectors of the circles' centers.
Finally, the parametric equations of each circle are:
r C 1 = R C 1 + R 1 cos α n ^ 1 1 + R 1 sin α n ^ 1 2 r C 2 = R C 2 + R 2 cos β n ^ 2 1 + R 2 sin β n ^ 2 2
This parameterization allows us to 3D plot the circles. The equation of the intersecting plane is given by:
x − 2 y + 6 z = 0
The next step to finding the points of intersection of the plane with the circles was carried out numerically. What I did was compute the following quantity:
D 1 = r C 1 x − 2 r C 1 y + 6 r C 1 z D 2 = r C 2 x − 2 r C 2 y + 6 r C 2 z
Here, r C 1 x , y , z are the x, y and z components of r C 1 . Similar convention applies to the second circle as well. To see if the point lies on the plane, I swept around both circles iteratively (a programming for loop) and checked if:
∣ D 1 ∣ ≤ ϵ ∣ D 2 ∣ ≤ ϵ
Where ϵ is a small number like 1 0 − 3 for instance. The points of intersection are the following:
P 1 = ⎣ ⎡ 9 3 . 9 5 . 4 6 5 9 − 1 3 . 8 2 7 9 ⎦ ⎤ P 2 = ⎣ ⎡ 6 . 1 4 4 . 5 3 4 0 1 3 . 8 2 8 1 ⎦ ⎤ P 3 = ⎣ ⎡ 1 7 . 2 7 9 8 − 1 8 . 9 6 1 9 − 9 . 2 0 0 6 ⎦ ⎤ P 4 = ⎣ ⎡ 4 8 . 7 8 3 1 1 0 9 . 4 2 2 3 2 8 . 3 4 3 6 ⎦ ⎤
P 1 and P 2 are points of intersection of C 1 and P 3 and P 4 are points of intersection of C 2 .
Now, having found these points, it is easy to visualise the geometry. P 1 is in red, P 2 is in blue, P 3 is in green, and P 4 is in magenta. The diagram is as follows:
The area of the triangle with P 1 , P 2 and P 3 are:
V 1 3 = P 1 − P 3 V 2 3 = P 2 − P 3
A 1 2 3 = 0 . 5 ∣ V 1 3 × V 2 3 ∣
The area of the triangle with P 1 , P 2 and P 4 are:
V 1 4 = P 1 − P 4 V 2 4 = P 2 − P 4
A 1 2 4 = 0 . 5 ∣ V 1 4 × V 2 4 ∣
The total area of the convex quadrilateral is:
A = A 1 2 3 + A 1 2 4
The perimeter of the quadrilateral is:
P = ∣ V 1 4 ∣ + ∣ V 2 4 ∣ + ∣ V 1 3 ∣ + ∣ V 2 3 ∣
Hi! I found my mistake. I wrongly wrote ϕ 1 = 8 0 ∘ . I got lucky to have got this problem correct.
Log in to reply
Thanks for sharing your solution.
Log in to reply
Hello, I have updated my solution. I have used a computational tool to perform all the calculations. In case you have solved this analytically, please share your approach as well.
Also, I find your geometry problems very difficult in general, and I have got many of them wrong in the past. It felt good to solve this difficult one correctly. Thank you for sharing this problem.
Log in to reply
@Karan Chatrath – You'e welcome. I got the same P 3 and P 4 from the second circle. However for P 1 and P 2 , from the first circle, I got,
P 1 = ( 6 . 1 0 0 0 4 0 5 7 5 , 4 4 . 5 3 4 0 6 2 3 3 , 1 3 . 8 2 8 0 1 4 0 1 ) and
P 2 = ( 9 3 . 8 9 9 9 5 9 4 3 , 5 . 4 6 5 9 3 7 6 7 5 , − 1 3 . 8 2 8 0 1 4 0 1 .
I've double checked that these two points lie on the first circle and on the plane.
I've also double checked your P 1 and P 2 and found that they lie on the given plane but they do not lie on the first circle. They lie on a sphere of radius 5 0 with the same center as the given circle.
Log in to reply
@Hosam Hajjir – Thanks for the clarification. I have updated my solution. The reason for the disparity in points of intersection with the first circle is because I wrongly defined the quantity given in the question ϕ 1 = 8 0 ∘ instead of 6 0 ∘ . That is why, the points I found lie on the plane, but they actually lie on a different circle
Problem Loading...
Note Loading...
Set Loading...
The two points on circle C 1 are on the intersection of the two planes with normal vectors n 1 and n p , and also 5 0 units away from its center ( 5 0 , 2 5 , 0 ) . Therefore:
sin 7 0 ° cos 6 0 ° x + sin 7 0 ° sin 6 0 ° y + cos 7 0 ° z = 5 0 sin 7 0 ° cos 6 0 ° + 2 5 sin 7 0 ° sin 6 0 ° + 0 cos 7 0 °
x − 2 y + 6 z = 0 − 2 ⋅ 0 + 6 ⋅ 0
( x − 5 0 ) 2 + ( y − 2 5 ) 2 + ( z − 0 ) 2 = 5 0 2
which solves numerically to A ( 6 . 1 0 0 0 , 4 4 . 5 3 4 1 , 1 3 . 8 2 8 0 ) and B ( 9 3 . 9 0 0 0 , 5 . 4 6 5 9 , − 1 3 . 8 2 8 0 ) .
Similarly, two points on circle C 2 are on the intersection of the two planes with normal vectors n 2 and n p , and also 7 0 units away from its center ( 2 5 , 5 0 , 0 ) . So:
sin 5 0 ° cos 1 8 0 ° x + sin 5 0 ° sin 1 8 0 ° y + cos 5 0 ° z = 2 5 sin 5 0 ° cos 1 8 0 ° + 5 0 sin 5 0 ° sin 1 8 0 ° + 0 cos 5 0 °
x − 2 y + 6 z = 0 − 2 ⋅ 0 + 6 ⋅ 0
( x − 2 5 ) 2 + ( y − 5 0 ) 2 + ( z − 0 ) 2 = 7 0 2
which solves numerically to C ( 1 7 . 2 7 9 8 , − 1 8 . 9 6 1 9 , − 9 . 2 0 0 6 ) and D ( 4 8 . 7 8 3 1 , 1 0 9 . 4 2 2 0 , 2 8 . 3 4 3 6 ) .
By the distance equation, A B = 1 0 0 , A C = 6 8 . 4 6 2 0 , A D = 7 9 . 0 1 2 6 , B C = 8 0 . 5 5 3 0 , B D = 1 2 0 . 9 1 6 7 , and C D = 1 3 7 . 4 2 0 7 .
C D is the longest, so that is one of the diagonals, which makes A B the other diagonal.
That means the perimeter of the quadrilateral is A C + A D + B C + B D = 3 4 8 . 9 4 4 2 .
And the area of the quadrilateral is the combined areas of △ A C D and △ B C D , which by Heron's formula calculates to 1 8 3 3 . 2 3 2 + 4 8 3 8 . 2 2 2 2 = 6 6 7 1 . 4 5 4 2 .
Therefore, the sum of the perimeter and area is 3 4 8 . 9 4 4 2 + 6 6 7 1 . 4 5 4 2 = 7 0 2 0 . 4 .