This is the question: A man is running through the woods to a check point as fast as possible. He can get there by traveling east along the trail for 300 meters, and then north through the woods for 800 meters. He can run 160 meters per minute along the trail, but only 70 meters per minute through the woods. Running directly through the woods toward the checkpoint minimizes the distance, but he will be going slowly the whole time. He could instead run for a period along the trail before entering the woods, maximizing the total distance but minimizing the time in the woods. Perhaps the fastest route is a combination. Find the path that will get him to the tree in the minimum time.

So I know the equation is
(300-x)/(160) + (square root(800^2 + x^2))/70
- x is the distance of the 300 meter path that is not traveled, so the distance traveled is the 300-x

I did the equation, but i ended up with x equaling greater than 300. Did I not have the right equation can someone help?

as you figured, the time t is

t = (300-x)/(160) + √(800^2 + x^2)/70

dt/dx =

160x - 70√(800^2 + x^2)
-----------------------------
70*160√(800^2 + x^2)

dt/dx=0 when

160x = 70√(800^2 + x^2)
25600x^2 = 56000000 + 4900x^2
x = 389.23

Hmm. Not what I had expected. How about if we let x be the distance run along the trail. Then

t = x/160 + √(800^2 + (300-x)^2)/70
Hmmm. That gives -89.23, the overrun in the above derivation. How strange. I expect the actual solution is

x = 300-89.23 = 210.77, since the distance traveled in the woods is the same, but the trail distance is shorter.

Maybe you can see where the spurious sign change creeps in.

You must have done it correctly, since I also got x = appr 389 m

Since this does not appear to make any real sense, let's investigate the other 2 cases:

1. he runs all the 300 m on the trail then at right angles through the bush
2. he runs all the way through the bush

case1: x = 0 for your equation
Time = 300/160 + 800/70 = 13.3 min
case2: x = 300 in your equation
time = √(300^2 + 800^2) /70 = 12.2 min

suppose we take a route where he runs 200 m along the trail and then through the woods
time = 200/160 + √(100^2 + 800^2)/70 = 12.76 , which is greater than case2

Conclusion: He will not gain any time by doing a partial trail and then angling through the woods.
This is a standard type of question, and in most cases there is a intended solution, but in this case somebody made up the question without really watching the numbers.

To find the path that will get the man to the checkpoint in minimum time, we need to minimize the total time, which is the sum of the time taken along the trail and the time taken through the woods.

Let's break down the problem step by step:

1. Let x represent the distance the man travels along the trail before entering the woods.
Therefore, the distance traveled through the woods is (300 - x).

2. The time taken along the trail can be calculated using the formula: (300 - x) / 160.
Here, we divide the distance traveled along the trail by the speed of 160 meters per minute.

3. The time taken through the woods can be calculated using the formula: √(800^2 + x^2) / 70.
Here, we use the distance formula (√(a^2 + b^2)) to calculate the distance traveled through the woods, and then divide it by the speed of 70 meters per minute.

4. The total time can be obtained by summing up the times taken along the trail and through the woods:
Total time = (300 - x) / 160 + √(800^2 + x^2) / 70.

Now, to find the value of x that minimizes the total time, we need to differentiate the equation with respect to x, set it equal to zero, and solve for x:

d/dx [(300 - x) / 160 + √(800^2 + x^2) / 70] = 0.

Simplifying the equation, we get:

-1/160 + x / (70√(800^2 + x^2)) = 0.

Now, we can solve this equation to find the value of x.

It seems that solving this equation analytically might be challenging due to the square root term. You might consider using numerical methods or approximation techniques (such as Newton's method) to find an approximate value for x that minimizes the total time.

Please note that the final value of x should fall within the range [0, 300], as x represents the distance traveled along the trail, which cannot exceed its entire length of 300 meters.