AeroVectors Slides AEROVECTORS
3D Navigation & Vector Displacement
v1.0 // PHYSICS-3D
Warm-Up: Drone Navigation
05:00 MIN
Think about a delivery drone moving through a city. To get from a warehouse to your balcony, it can't just follow roads.
DISCUSSION PROMPT
"How does adding altitude (z) change the way we calculate navigation compared to just latitude (x) and longitude (y)?"
Visualizing 3D Space
10:00 MIN
Embedded media
0:36
Introduction to the 3D Distance Formula
2:43
Visual plotting on X, Y, and Z axes
8:15
The geometric derivation from Pythagoras
The 3D Distance Formula
\[ D = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2 + (z_2-z_1)^2} \]
Δx
Horizontal Shift
Δy
Lateral Shift
Δz
Altitude Shift
Geometric Intuition
The "Double Pythagoras"
1 Find the diagonal of the floor footprint using \(x^2 + y^2 = L^2\).
2 Use that diagonal as the base of a vertical triangle.
3 Apply Pythagoras again: \(L^2 + z^2 = D^2\).
Key Triple Example
3 - 4 - 12 → 13
Pro Tip
Visualizing the "transparent box" helps you see the right triangles inside the cube.
Project: Flight Path Planning
25:00 MIN
Coordinate Lock
Identify start (rooftop) and end (landing pad) coordinates on the grid.
Direct Distance
Calculate the "as-the-drone-flies" vector magnitude using the 3D formula.
Obstacle Check
Verify your straight-line path doesn't intersect with the mid-grid building.
Closure: Final Reflection
05:00 MIN
Taxicab vs. Euclidean
Taxicab Geometry: Distances measured along a grid (streets). \(d = |x_2-x_1| + |y_2-y_1|\).
Euclidean Geometry: The shortest distance "crow flies" (drone path).
EXIT QUESTION
"Why is the Euclidean distance in 3D always less than or equal to the sum of the X, Y, and Z steps?"
Urban Airspace Map Handout URBAN AIRSPACE MAP
Mission: Flight Path Planning (AeroVectors)
Pilot:
Date:
Mission Objective
Calculate the exact vector magnitude (3D distance) for a delivery drone traveling from the Tech Hub to the Skyline Landing Pad. You must avoid the Obstacle Zone at (5, 5).
Urban Grid [Units in Meters]
HUB
Alt: 0m
SKYLINE PAD
Alt: 120m
OBSTACLE
Alt: 150m
0246810 (x)
0246810 (y)
Scale: 1 Grid Unit = 10 Meters. Altitude (z) is provided in Meters.
Phase 1: Coordinate Identification
P1: Tech Hub (Start)
(
,
,
)
Format: (x, y, z)
P2: Skyline Pad (End)
(
,
,
)
Phase 2: Euclidean Calculation
1. Calculate the ground displacement (footprint diagonal, L):
\( L = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2} \)
2. Calculate the final 3D distance (vector magnitude, D):
Total Flight Distance: ________________ meters
Flight Analysis Reflection
If you were a "taxicab" delivery driver restricted to the grid streets and an elevator, how many total meters would you travel? How does this compare to the drone distance?
Flight Path Rubric Flight Safety Rubric
Drone Navigation Assessment // PHY-3D
/ 20
Criteria Skilled (5 pts) Progressing (3 pts) Emerging (1 pt)
Coordinate Lock
Accuracy of (x,y,z) identification from the map.
| All coordinates for Tech Hub and Skyline Pad are identified correctly including altitude. | Coordinates are mostly correct; minor error in scaling or altitude interpretation. | Incorrect coordinate system logic; fundamental misunderstanding of 3D axes. |
|
Vector Math
Application of the 3D distance formula.
| Correct use of Δx, Δy, and Δz. Calculations are flawless and units are included. | Formula is set up correctly but contains a calculation error (e.g., squaring or square root error). | Formula is missing or applied incorrectly (e.g., adding coordinates instead of squaring differences). |
|
Flight Safety
Collision analysis and path logic.
| Clearly explains if the drone clears the obstacle zone based on altitude comparison. | Identifies the obstacle but fails to provide a convincing mathematical reason for clearance/collision. | Does not mention the obstacle or safety parameters. |
|
Conceptual Shift
Taxicab vs. Euclidean reflection.
| Articulate explanation of why drone travel is more efficient; uses "Euclidean" correctly. | Explains that the drone path is shorter but lacks the geometric terminology or depth. | Reflection is incomplete or doesn't address the difference between grid and direct travel. |
Instructor Comments
Skill Mastery
3D Spatial Reasoning
Pythagorean Derivation
Vector Magnitude Application
Designed for AeroVectors: 3D Navigation Displacement Module.
Vector Navigator Teacher Guide Teacher Guide
AeroVectors: 3D Navigation Displacement
GRADE: 11-12
SUBJECT: PHYSICS
Lesson Objectives
Identify coordinates in a 3D cartesian system using real-world urban maps.
Apply the 3D distance formula to find vector magnitudes.
Differentiate between taxicab (rectilinear) and Euclidean (direct) geometry.
Analyze obstacle clearance based on altitude gradients.
Pacing Guide
Warm-Up 05m
Video & Proof 10m
Map Project 25m
Reflection 05m
Key Discussion Prompts
Video Pause [5:36]
"Before drawing the triangles, look at the two points. How many unique 'right triangles' could we build to connect these? Is there only one path?"
Geometric Concept
"Why do we square the differences? What would happen if we just added the differences \((x_2-x_1) + (y_2-y_1)\)? (Connects back to vector direction/magnitude)."
MAP HANDOUT ANSWER KEY
Phase 1: Coordinates
Tech Hub (Start): (2, 3, 0)
Skyline Pad (End): (8, 9, 120)
Obstacle Center: (5, 5, 150)
Phase 2: Euclidean Math
Step 1 (Ground):
\(\Delta x = 60m\), \(\Delta y = 60m\)
\(L = \sqrt{60^2 + 60^2} \approx 84.85m\)
Step 2 (3D):
\(\Delta z = 120m\)
\(D = \sqrt{84.85^2 + 120^2} = \sqrt{7200 + 14400} = \sqrt{21600}\)
Distance \(\approx 146.97m\)
Obstacle Analysis
The drone path mid-point is (5, 6) at Altitude 60m. The building at (5, 5) is 150m tall. While the drone doesn't hit the center, its safety corridor is very close. (Discussion point: Lateral clearance vs. vertical clearance).
Common Misconceptions
Z-Axis Direction: Students may forget if "altitude" is positive or negative. Remind them that ground level is usually z=0 in this context.
Squaring Negatives: When calculating \((z_2-z_1)^2\), students often mistakenly keep the negative sign if they don't use parentheses in calculators. Emphasize that distance is always a positive magnitude.