Problem Statement

One can throw a rock at a velocity of 10 m/s at any angle from a 5 meter high cliff. What is the farthest the rock can reach?

Mathematical Model

For a projectile launched from a height with initial velocity at an angle , the horizontal distance traveled is given by:

Where:

  • is the initial velocity (10 m/s in this problem)
  • is the launch angle
  • is the height of the cliff (5 m in this problem)
  • is the gravitational acceleration (9.81 m/s²)

Optimisation Setup

Design Variable

  • = launch angle (scalar, 1-dimensional problem)

Objective Function

We want to maximize the distance , which is equivalent to minimizing :

Special Case: H = 0

When the height is zero (throwing from ground level), the equation simplifies to:

In this special case, the maximum range occurs at (or radians).

Solution Approach

To find the optimal angle for maximum range from a height, we need to:

  1. Take the derivative of the objective function with respect to
  2. Set this derivative equal to zero:
  3. Solve for

For the case with height (), the optimal angle will be less than 45°, as gravity has more time to accelerate the projectile downward.

Derivation of the Model

The projectile motion model comes from the equations of motion in physics:

Basic Equations

  • Acceleration: 0 in x-direction, in y-direction
  • Velocity components at time :
    • (constant)
  • Position components at time :

Time of Flight

The time of flight is when the projectile hits the ground, i.e., when :

Solving this quadratic equation:

Horizontal Distance

The horizontal distance traveled is:

This can be rewritten as:

Numerical Solution

For our specific problem ( m/s, m, m/s²), we can solve this numerically.

The optimal angle can be found by:

  1. Visualizing the objective function over a range of angles (e.g., 0° to 90°)
  2. Using numerical optimization methods like gradient descent or Newton’s method
  3. Starting with an initial guess (e.g., 45°) and iterating until convergence

The optimal angle would be approximately 36.5°, giving a maximum range of about 11.46 meters.

Key Insights

  1. The optimal launch angle depends on the initial height
  2. When launching from a height, the optimal angle is less than 45°
  3. This problem demonstrates the importance of applying calculus to optimize a physical model
  4. The solution approach illustrates the general pattern for optimization problems: identify design variables, formulate the objective function, and find where the derivative equals zero