library(caracas)
A problem was posted by the Danish newspaper, Ingeniøren, and it goes like this:
You are in the middle of a dense forest located at A. You need to get to C in the fastest way possible, and you can only change direction once. You can walk directly via AB to the dedicated walking path BC where you can walk fast, you can take the direct path through the forest (AC) where you have to walk slower, or cross through the forest to the dedicated walking path (AD and then DC).
We parameterise with k=|BD|, the distance between B and D. That is, how much to walk on fast walking path before crossing into the forest.
Formulating using caracas
:
<- as_sym('300')
AB
AB#> [caracas]: 300
<- as_sym('1000')
AC
AC#> [caracas]: 1000
<- sqrt(AC^2 - AB^2)
BC
BC#> [caracas]: 100⋅√91
<- symbol('k') # |BD|
k <- BC - k
DC <- sqrt(AB^2 + k^2)
AD
AD#> [caracas]: ____________
#> ╱ 2
#> ╲╱ k + 90000
So for a distance of |AD|, you travel by 5 m/s, and then for a distance of −k+100√91 you travel by 2 m/s. Thus it takes √k2+900002 to travel AD and −k5+20√91 to travel DC.
The question is: What is the fastest way to get from A to C?
First, the total duration of the route is:
<- AD/2 + DC/5
l
l#> [caracas]: ____________
#> ╱ 2
#> k ╲╱ k + 90000
#> - ─ + ─────────────── + 20⋅√91
#> 5 2
<- as_expr(l)
lfun
lfun#> expression(-k/5 + sqrt(k^2 + 90000)/2 + 20 * sqrt(91))
<- seq(0, as_expr(AC), length.out = 100)
ks <- eval(lfun, list(k = ks))
ls plot(ks, ls, type = "l", xlab = "k", ylab = "Time A to C")
It looks like a minimum around k=150.
We find the analytical solution by first finding critical points:
<- der(l, k)
dl
dl#> [caracas]: k 1
#> ───────────────── - ─
#> ____________ 5
#> ╱ 2
#> 2⋅╲╱ k + 90000
<- solve_sys(dl, k)
crit_points
crit_points#> Solution 1:
#> k = 200⋅√21
#> ───────
#> 7
<- crit_points[[1]]$k
best_k
best_k#> [caracas]: 200⋅√21
#> ───────
#> 7
The type of the critical point is found by considering the Hessian:
eval(as_expr(der(dl, k)), list(k = as_expr(best_k)))
#> [1] 0.001283121
Thus the critical point is indeed a minimum as suggested by the plot.
The fastest route is thus obtained for k=200√217≈130.93. It has a length of (in meters)
<- BC - best_k
DC_best <- sqrt(AB^2 + best_k^2)
AD_best
AD_best#> [caracas]: 500⋅√21
#> ───────
#> 7
<- AD_best + DC_best
best_route
best_route#> [caracas]: 300⋅√21
#> ─────── + 100⋅√91
#> 7
as_expr(best_route)
#> [1] 1150.335
300√217+100√91≈1150.34 and takes (in seconds)
<- subs(l, "k", best_k)
best_l
best_l#> [caracas]: 30⋅√21 + 20⋅√91
as_expr(best_l)
#> [1] 328.2651
30√21+20√91≈328.27
The best route can be illustrated, too: