A parabola lies completely in the first quadrant and is tangent to the line y = 3 x at ( 2 , 2 3 ) and to the x-axis at ( 4 , 0 ) . Find the distance between the vertex of the parabola and its focus.
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.
Let (h, k) be the vertex of the parabola. Since the lines y=0 and y=x√3 are the tangents to it, it's axis has the slope √ 3 1 . Therefore it's equation is [√3(y-k)-(x-h) ]^2=8a[√3(x-h)+(y-k)], where a is the required distance. Since the line y=0 is the tangent to the curve at (4,0), we have 4√3a=4, or a= √ 3 1 =0.57735...
Let P 0 be the vertex location, and let u 1 and u 2 be orthogonal unit vectors which effectively define a new coordinate system. Define tangent points ( x 1 , y 1 ) = ( 2 , 2 3 ) and ( x 2 , y 2 ) = ( 4 , 0 ) . The coordinates of a point on the parabola are:
P = P 0 + α u 1 + a α 2 u 2 x = x 0 + α u 1 x + a α 2 u 2 x y = y 0 + α u 1 y + a α 2 u 2 y u 1 = ( cos θ , sin θ ) u 2 = ( sin θ , − cos θ )
Each point of tangency has an associated α value. So the six unknowns are ( x 0 , y 0 , θ , a , α 1 , α 2 ) . We need to solve six equations for the six unknowns. The first four have to do with the coordinates of the two tangency points.
x 1 = x 0 + α 1 u 1 x + a α 1 2 u 2 x y 1 = y 0 + α 1 u 1 y + a α 1 2 u 2 y x 2 = x 0 + α 2 u 1 x + a α 2 2 u 2 x y 2 = y 0 + α 2 u 1 y + a α 2 2 u 2 y
Consider the tangential intersection with the x axis. For y = 0 , there should only be one corresponding α value. The quadratic equation for α (given y = 0 ) should only have one solution. This gives us the fifth equation.
0 = y 0 + α u 1 y + a α 2 u 2 y A = a u 2 y B = u 1 y C = y 0 B 2 − 4 A C = 0
We can do the same thing for the tangential intersection with the line y = 3 x , yielding the sixth equation.
y = 3 x y 0 + α u 1 y + a α 2 u 2 y = 3 x 0 + 3 α u 1 x + 3 a α 2 u 2 x A ′ = a u 2 y − 3 a u 2 x B ′ = u 1 y − 3 u 1 x C ′ = y 0 − 3 x 0 B ′ 2 − 4 A ′ C ′ = 0
Solving using iteration or search yields the parameters. I used a minimization routine which gave a pretty good result, although not quite as good as a multi-variate Newton-Raphson would give. The focal length is equal to 4 a 1 , and it turns out to be about 0 . 5 8 .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
Problem Loading...
Note Loading...
Set Loading...
The given points ( 2 , 2 3 ) and ( 4 , 0 ) and the intersection of the two tangent lines ( 0 , 0 ) are points of an equilateral triangle with sides of 4 . Therefore, the whole system can be rotated counterclockwise 6 0 ° so that the parabola has a vertical axis, and then shifted so that it has a vertex at the origin, for an equation of y = a x 2 , while still preserving its distance between the vertex and its focus.
Since the equilateral triangle had sides of 4 , the new parabola y = a x 2 will have a slope of m = 3 at x = 2 . Since its slope is m = 2 a x , 3 = 2 ⋅ a ⋅ 2 , which solve to a = 4 3 , for an equation of y = 4 3 x 2 . Therefore, the distance between the vertex and focus is p = 4 ⋅ 4 3 1 = 3 1 ≈ 0 . 5 7 7 3 .