At noon, ship A is 10 nautical miles due west of ship B. Ship A is sailing west at 21 knots
(nautical miles per hour) and ship B is sailing north at 25 knots. How fast is the distance
between the ships changing at 7 p.m.?
This is what I have:
let h = hour
I create a right-angle triangle of sides \(\displaystyle a = 21(h) + 10\,\,\,\, b = 25(h)\,\,\) with hypotenuse length d
By Pythagorean theorem: \(\displaystyle d = \sqrt{ (21(h) + 10)^2 + (25(h))^2}\)
\(\displaystyle \frac{dd}{dh} = \frac{\sqrt{2}(533h + 105)}{\sqrt{533h^2 + 210h + 50}}\)
Therefore at h = 7 hours: \(\displaystyle \frac{dd}{dh} = \frac{\sqrt{2}(533(7) + 105)}{\sqrt{533(7)^2 + 210(7) + 50}}\)
Did I do that right?