Envelope of Trajectories

A particle is projected from the origin with speed u = 20 m / s u = 20 \ \mathrm{m/s} , at angle θ \theta to the horizontal. Here, 0 θ 9 0 0^{\circ} \le \theta \ \le 90^{\circ} .

Compute the area A A bounded by the envelope of all trajectories in the given interval of θ \theta , the X axis and the Y axis. The motion of all trajectories is confined to the X-Y plane. The answer is of the form:

A = a b A = \frac{a}{b}

Where a a and b b are positive co-prime integers. Enter your answer as a + b \boxed{a+b}

Note: An ambient gravitational field acts along the negative Y direction throughout space. Acceleration due to gravity g = 10 m / s 2 g = 10 \ \mathrm{m/s^2} .


The answer is 1603.

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.

2 solutions

Steven Chase
Mar 24, 2021

This was a fun one. Suppose the particle is launched with speed u u at angle θ \theta .

Time at which particle gets to horizontal position x x :

x = u cos θ t t = x u cos θ x = u \cos \theta \, t \\ t = \frac{x}{u \cos \theta}

Vertical position at that same time:

y = u sin θ t 1 2 g t 2 = x tan θ g x 2 2 u 2 s e c 2 θ y = u \sin \theta \, t - \frac{1}{2} g t^2 \\ = x \tan \theta - \frac{g x^2}{2 u^2} sec^2 \theta

Differentiate the y y expression with respect to θ \theta and set the resulting expression to zero in order to find the θ \theta value which maximizes y y for a given x x . The result is:

tan θ = u 2 g x \tan \theta = \frac{u^2}{g x}

At this point I got lazy. I swept x from 0 0 to 40 40 , with 40 40 being the horizontal range for θ = π / 4 \theta = \pi/4 . For each x x , I calculated the optimal θ \theta and the resulting maximum y y .

0 40 = y m a x ( x ) d x = 1600 3 \int_0^{40} = y_{max} (x) \, dx = \frac{1600}{3}

 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
import math

dx = 40.0/(10.0**7.0)

u = 20.0
g = 10.0

usq = u**2.0

#######################

A = 0.0

x = dx

while x <= 40.0:

    theta = math.atan(usq/(g*x))

    v0y = u*math.sin(theta)
    t = x/(u*math.cos(theta))

    y = v0y*t - 0.5*g*(t**2.0)

    #print x,y

    dA = y*dx
    A = A + dA

    x = x + dx

#######################

print ""
print ""
print dx
print A
print (3.0*A)

#4e-06
#533.333293313
#1599.99987994
#>>> 

If you go through the trig to eliminate θ \theta (I multiplied up by cos 2 θ \cos^2 \theta first to make the terms a bit nicer), you get the equation of the envelope to be y = 20 x 2 80 y=20-\frac{x^2}{80}

It's really nice that the envelope curve is also a parabola.

Chris Lewis - 2 months, 2 weeks ago
Eric Roberts
May 19, 2021

Begin by forming the the particles vertical position y y as a function of its horizontal position x x from the kinematic relationships:

y = v sin ( θ ) t 1 2 g t 2 Eq1 y = v \sin (\theta) t - \frac{1}{2} g t^2 \quad \quad \text{ Eq1 }

x = v cos ( θ ) t Eq2 x = v \cos (\theta) t \quad \quad \text{ Eq2 }

Eliminate the time parameter:

y = tan ( θ ) x g 2 v 2 cos 2 ( θ ) x 2 Eq3 y = \tan (\theta) x - \frac{g}{2 v^2 \cos^2 (\theta) } x^2 \quad \quad \text{ Eq3 }

x = v 2 g sin ( 2 θ ) Eq4 x = \frac{v^2}{g} \sin ( 2\theta ) \quad \quad \text{ Eq4 }

At any given value of horizontal position x x , we want to find the launch angle θ \theta that maximizes the vertical height y y . We can treat x x as a parameter and differentiate Eq3 \text{ Eq3 } w.r.t θ \theta .

d y d θ = 1 cos 2 ( θ ) x g sin ( θ ) v 2 cos 3 ( θ ) x 2 Eq5 \frac{dy}{d \theta} = \frac{1}{\cos^2 ( \theta ) }x - \frac{g \sin ( \theta ) }{v^2 \cos^3 ( \theta ) } x^2 \quad \quad \text{ Eq5 }

Setting the result equal to 0 0 we find that the tangent of the angle that maximizes the vertical height for a given x x to be:

tan ( θ ) = v 2 g x Eq6 \tan ( \theta ) = \frac{v^2}{g x} \quad \quad \text{ Eq6 }

Using Trigonometric Identity tan 2 ( θ ) + 1 = 1 cos 2 ( θ ) \tan^2 ( \theta ) + 1 = \frac{ 1 }{ \cos^2 (\theta) } we find that:

1 cos 2 ( θ ) = 1 + ( v 2 g x ) 2 Eq7 \frac{ 1 }{ \cos^2 ( \theta) } = 1 + \left( \frac{v^2}{g x} \right)^2 \quad \quad \text{ Eq7 }

Now we can substitute Eq6 & Eq7 \text{ Eq6 \& Eq7 } into Eq3 \text{ Eq3 } . This will be the equation of the "envelope" Y ( x ) Y(x) :

Y ( x ) = v 2 2 g g 2 v 2 x 2 Eq8 Y(x) = \frac{v^2}{2 g} - \frac{g}{2 v^2} x^2 \quad \quad \text{ Eq8 }

Now, we are asked for the area bound by the "envelope" Y ( x ) Y(x) . We are left to determine the limits of integration by finding the maximum possible range x x of the projectile. From Eq4 \text{ Eq4 } we can differentiate w.r.t θ \theta .

d x d θ = 2 v 2 g cos ( 2 θ ) Eq9 \frac{dx}{d \theta} = \frac{2 v^2}{g} \cos ( 2\theta ) \quad \quad \text{ Eq9 }

Equating Eq9 \text{ Eq9 } to 0 0 we find:

cos ( 2 θ ) = 0 2 θ = π 2 θ = π 4 \begin{aligned} \cos ( 2 \theta ) &= 0 \\ & \Updownarrow \\ 2 \theta &= \frac{ \pi }{2} \\ \theta &= \frac{ \pi }{4} \end{aligned}

(This is a a well known result )

From Eq4 \text{Eq4} we have that:

x m a x = v 2 g sin ( 2 π 4 ) = v 2 g \begin{aligned} x_{max} &= \frac{v^2}{g} \sin ( 2 \frac{ \pi }{4}) \\ &= \frac{v^2}{g} \end{aligned}

Finally we integrate Y ( x ) Y(x) from 0 x m a x 0 \to x_{max} and plug in known values:

0 x m a x Y ( x ) d x = v 2 2 g x g 6 v 2 x 3 0 x m a x = v 2 2 g x m a x g 6 v 2 x m a x 3 = 1 3 v 4 g 2 = 1 600 3 m 2 \displaystyle \begin{aligned} \int\limits_0^{x_{max}} Y(x) dx &= \frac{v^2}{2 g}x - \frac{g}{6 v^2} x^3 \bigg|_0^{ x_{max}} \\ \quad \\ &= \frac{v^2}{2 g}x_{max} - \frac{g}{6 v^2} x_{max}^3 \\ \quad \\ &= \frac{1}{3} \frac{v^4}{g^2} \\ \quad \\ &= \SI{\frac{1600}{3}}{m^2} \end{aligned}

Good problem! I had to think about this for a while. First time actually calculating an "envelope" I believe.

Thanks for sharing your solution. I'm glad you enjoyed solving this one.

Karan Chatrath - 3 weeks, 3 days ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...