Facebook Pixel
Mathos
기하학

드론 벡터 투영과 드리프트

드론이 원점에서 방향 벡터 ⟨3, 4⟩를 향해 비행하지만 바람 때문에 (5, 0) 지점에서 멈춥니다. 점곱과 스칼라 투영을 사용하여 의도한 경로를 따라 얼마나 멀리 이동했는지와 얼마나 이탈했는지를 찾습니다.

AI로 수학 마스터하기

문제에 막혔나요? Mathos AI는 모든 수학 개념에 대해 단계별 솔루션, 즉각적인 시각화 및 맞춤형 튜터링을 제공합니다.


학습 리소스

이 콘텐츠는 Mathos AI 오픈 학습 라이브러리의 일부입니다. 학생들이 복잡한 수학 문제를 시각화하고 이해하는 데 도움이 되도록 설계되었습니다.

신뢰 및 인정


투자자

Y Combinator

미디어 보도

Forbes

Problem

A drone starts at the origin, is intended to move in the direction of 3,4\langle 3, 4 \rangle, but actually ends at P=(5,0)P = (5, 0); find how far it traveled along the intended path and how far it drifted off course.

Step 1: Compute the scalar projection onto the direction vector

Let D=3,4D = \langle 3, 4 \rangle and P=5,0P = \langle 5, 0 \rangle. The dot product is

PD=53+04=15.P \cdot D = 5 \cdot 3 + 0 \cdot 4 = 15.

The magnitude of DD is

D=32+42=5.|D| = \sqrt{3^2 + 4^2} = 5.

So the scalar projection of PP onto DD is

PDD=155=3.\dfrac{P \cdot D}{|D|} = \dfrac{15}{5} = 3.

Step 2: Find the perpendicular drift

The drone's total displacement from the origin to PP has length

P=52+02=5.|P| = \sqrt{5^2 + 0^2} = 5.

Using the Pythagorean theorem with the along-path distance 33 and the total distance 55, the drift is

5232=16=4.\sqrt{5^2 - 3^2} = \sqrt{16} = 4.

Answer

The drone traveled 33 units along its intended path and drifted 44 units off course.

개념

Dot Product and Angle Between Vectors

The dot product of two vectors produces a scalar and can be used to find the angle between them. Two vectors are perpendicular if and only if their dot product is zero. Vector projection finds the component of one vector along another.

Vector Applications

Using vectors to solve real-world problems involving forces, velocities, navigation, and displacement. Resultant vectors combine multiple forces or motions acting simultaneously.

더 많은 동영상

© 2026 Mathos. 모든 권리 보유