Vectors: Real-World Scenarios (10)

easy 3 min read

Question

A drone is flying over Bengaluru, monitoring traffic. Its position relative to a control tower is given by r(t)=(3t)i^+(4t)j^+(505t)k^\vec{r}(t) = (3t)\hat{i} + (4t)\hat{j} + (50 - 5t)\hat{k} where tt is in seconds and distances in metres. (a) Find the drone’s velocity vector. (b) Find its speed. (c) Find the time at which the drone is closest to the tower. (d) Find the minimum distance.

Solution — Step by Step

v(t)=drdt=3i^+4j^5k^\vec{v}(t) = \frac{d\vec{r}}{dt} = 3\hat{i} + 4\hat{j} - 5\hat{k}

The velocity is constant — drone moves with uniform velocity.

v=32+42+(5)2=9+16+25=50=52 m/s|\vec{v}| = \sqrt{3^2 + 4^2 + (-5)^2} = \sqrt{9 + 16 + 25} = \sqrt{50} = 5\sqrt{2} \text{ m/s}

Distance squared: r(t)2=(3t)2+(4t)2+(505t)2=9t2+16t2+2500500t+25t2|\vec{r}(t)|^2 = (3t)^2 + (4t)^2 + (50-5t)^2 = 9t^2 + 16t^2 + 2500 - 500t + 25t^2

=50t2500t+2500= 50t^2 - 500t + 2500

Differentiate and set to zero: 100t500=0    t=5100t - 500 = 0 \implies t = 5 s.

Minimum distance: 50255005+2500=12502500+2500=1250=252\sqrt{50 \cdot 25 - 500 \cdot 5 + 2500} = \sqrt{1250 - 2500 + 2500} = \sqrt{1250} = 25\sqrt{2} m.

(a) v=3i^+4j^5k^\vec{v} = 3\hat{i} + 4\hat{j} - 5\hat{k}, (b) speed =52= 5\sqrt{2} m/s, (c) at t=5t = 5 s, (d) minimum distance = 25225\sqrt{2} m.

Why This Works

For a particle moving in a straight line with constant velocity, the closest approach to a fixed point happens when the position vector is perpendicular to the velocity vector. Equivalently, ddtr2=0\frac{d}{dt}|\vec{r}|^2 = 0.

You can verify the perpendicularity: r(5)=(15,20,25)\vec{r}(5) = (15, 20, 25) and v=(3,4,5)\vec{v} = (3, 4, -5). Dot product: 153+204+25(5)=45+80125=015 \cdot 3 + 20 \cdot 4 + 25 \cdot (-5) = 45 + 80 - 125 = 0. Confirmed.

For “minimum distance” or “closest approach” problems, always set ddtr2=0\frac{d}{dt}|\vec{r}|^2 = 0 instead of ddtr=0\frac{d}{dt}|\vec{r}| = 0. Squared distance avoids the square root and makes differentiation cleaner.

Alternative Method

Geometric approach: foot of perpendicular from the origin onto the line. The line has direction v=(3,4,5)\vec{v} = (3, 4, -5) and passes through (0,0,50)(0, 0, 50) at t=0t = 0. The closest point: r0+t(v)\vec{r}_0 + t(\vec{v}) where t=r0v/v2=(0,0,50)(3,4,5)/50=250/50=5t = -\vec{r}_0 \cdot \vec{v}/|\vec{v}|^2 = -(0, 0, 50) \cdot (3, 4, -5)/50 = 250/50 = 5. Same answer: t=5t = 5 s.

Common Mistake

Students compute r|\vec{r}| first and try to differentiate the square root. Always work with r2|\vec{r}|^2 for minimization — the same tt minimizes both, and the algebra is cleaner.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next