Math Problem Statement

One city at point (-3, 4) and another city at point (8,-2) are separated by a river of width w. The two communities want to build a road which links the two cities and a bridge which will cross the river. The bridge should be orthogonal to the two banks of the river. There are no other constraints for the construction of the roads on land. Due to obvious budget issues the cost of this project, and therefore, the length of this road, should be minimal. You should formulate an optimization problem which solves the problem and finds the position of the bridge which minimizes the construction cost. The river has width w = 1 and is centered along the (x, 0).

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Optimization
Geometry
Calculus

Formulas

Distance formula: d = sqrt((x2 - x1)^2 + (y2 - y1)^2)
Total road length: L(x_b) = sqrt((x_b + 3)^2 + (7/2)^2) + sqrt((x_b - 8)^2 + (3/2)^2) + 1

Theorems

Optimization through first derivative test
Distance minimization

Suitable Grade Level

College Level (Calculus and Optimization)