Path Pilot Slides Path Pilot
Vector-Valued Functions & Collision Avoidance
The Mission
You are an Air Traffic Controller for a fleet of logistics drones.
"Two drones are crossing a busy urban intersection. Their paths will cross, but will they collide?"
1
Define the paths as \(\vec{r}(t)\)
2
Distinguish Intersection vs. Collision
3
Calculate the Minimum Separation
Vector-Valued Functions
Position Vector \(\vec{r}(t)\)
A function that maps a real number (time) to a vector (position in space).
\(\vec{r}(t) = \langle x(t), y(t), z(t) \rangle\)
Each component is a scalar function representing the coordinate at time \(t\).
Why use vectors?
Handles multi-dimensional motion easily
Calculates velocity and acceleration instantly
Allows for independent component analysis
The Danger Zone
1. Intersection
The paths cross the same point in space, but potentially at different times .
\(\vec{r}_1(t_1) = \vec{r}_2(t_2)\)
Solve for \(t_1\) and \(t_2\)
2. Collision
The objects occupy the same point in space at the exact same time .
\(\vec{r}_1(t) = \vec{r}_2(t)\)
The same variable \(t\)!
Proximity Monitoring
How close do they get? We use the distance formula between two vector-valued functions.
\(D(t) = \|\vec{r}_1(t) - \vec{r}_2(t)\|\)
To find the closest point, minimize \(D(t)\) or \(D^2(t)\).
Safety Buffer > 5m
Advisory 1m - 5m
Collision < 1m
Drone Intersection Challenge Worksheet Drone Intersection Challenge
Clearance Level: Air Traffic Controller Tier 1
System Time:
Operator ID:
Mission Briefing
Two autonomous cargo drones, AERO-1 and BETA-4 , are approaching a central hub. You must determine if their flight paths result in an intersection (geometric overlap) or a collision (simultaneous occupancy).
1
Geometric Intersection Analysis
Drone AERO-1 follows \(\vec{r}_1(t) = \langle 2t, t^2, 5 \rangle\). Drone BETA-4 follows \(\vec{r}_2(s) = \langle 4s-4, 2s+2, 5 \rangle\). Note that the drones may reach the same point at different values of their parameters (\(t\) and \(s\)).
A) Set up and solve the system of equations to find the intersection point \((x, y, z)\) and the parameter values \(t\) and \(s\) at that point.
B) Based on your findings, do the paths of the two drones intersect geometrically? If so, at what coordinate?
2
Temporal Collision Detection
Now consider the drones moving simultaneously through time \(t\). Path A: \(\vec{r}_A(t) = \langle t+1, 2t, 3 \rangle\). Path B: \(\vec{r}_B(t) = \langle 2t-1, t+2, 3 \rangle\).
A) Is there a time \(t\) where the drones occupy the exact same location? Show your mathematical evidence.
B) If you discovered a collision, propose a simple shift in one drone's start time (e.g., \(\vec{r}_A(t-k)\)) that would avoid the collision while maintaining the same geometric path.
3
Minimum Separation Analysis
In engineering, we often define a "safety bubble." Suppose the separation distance function between two drones is given by \(f(t) = \|\vec{r}_1(t) - \vec{r}_2(t)\|^2 = 2t^2 - 12t + 20\).
Calculate the time \(t\) at which the drones are closest to each other, and find that minimum distance. (Remember: minimize the square of the distance for easier calculation).
© 2026 Path Optimization Engineering Division
Document Ref: CALCULUS-VVF-L1-WS
Collision Lab Teacher Guide Collision Lab Guide
Teacher Facilitation Resource • Lesson 1
SESSION 1/5
DURATION: 60-90 MIN
Instructional Objective
Students will define position vectors using vector-valued functions and mathematically differentiate between the geometric intersection of paths and temporal collisions of objects moving along those paths.
Key Skills
System of equations with multiple parameters (\(t, s, u\))
Parametric to Vector conversion
Distance formula in 3D space
Finding extrema of distance-squared functions
Required Materials
Path Pilot Slides
Intersection Worksheet
Graphing Calculator / Desmos
Teaching Strategies
1
The "Hook" Discussion
Begin by showing the intro slide of the drone intersection. Ask: "If two cars pass through the same crossroads, do they always crash?" Use this to draw out the distinction between space (the crossroad) and time (when they arrive).
2
The Parameter Pitfall
When solving for intersections , students must use different variables (e.g., \(t\) and \(s\)). If they use \(t\) for both, they are solving for a collision . Emphasize that the paths exist as "ghost trails" until we consider the timing.
3
Distance Minimization
Show students why we minimize \(D^2(t)\) instead of \(D(t)\). It eliminates the square root, making the derivative calculation significantly cleaner without changing the location of the minimum.
Answer Key: Drone Challenge
Problem 1: Intersection
Set \(\vec{r}_1(t) = \vec{r}_2(s)\):
\(2t = 4s - 4\) (1)
\(t^2 = 2s + 2\) (2)
From (1), \(t = 2s - 2\). Substitute into (2):
\((2s-2)^2 = 2s + 2 \rightarrow 4s^2 - 10s + 2 = 0\)
\(s = 2, t = 2\). Coordinate: (4, 4, 5).
Problem 2: Collision
Check if \(\vec{r}_A(t) = \vec{r}_B(t)\):
\(t+1 = 2t-1 \rightarrow t=2\)
Check y: \(2(2) = 2+2 \rightarrow 4=4\).
Check z: \(3=3\).
Collision Detected at t=2!
Problem 3: Minimum Distance
\(f(t) = 2t^2 - 12t + 20\)
\(f'(t) = 4t - 12\). Set to zero: \(t = 3\).
Minimum Distance: \(f(3) = 2(9) - 12(3) + 20 = 2\).
The minimum distance is \(\sqrt{2} \approx 1.41\) units.
Extension (Advanced)
Challenge students to find the 3D distance between two skew lines defined by vector functions.
Smooth Ride Slides Smooth Ride
Differentiability in Piecewise Vector Functions
The Snap
Problem
In roller coaster design, tracks are built in segments. If segments don't match up mathematically , the ride is physically impossible or dangerous.
Mechanical Snap:
A sudden change in direction or speed that causes extreme structural stress or injury.
Discontinuity
Track segments don't even touch.
Non-Differentiable
A sharp corner (kink) in the track.
Level 0: Continuity (\(C^0\))
The two segments must share the same physical endpoint at the transition time \(t = k\).
\(\lim_{t \to k^-} \vec{r}_1(t) = \lim_{t \to k^+} \vec{r}_2(t)\)
Translation: "The track is one continuous piece of metal."
Position Match Required
Level 1: Smoothness (\(C^1\))
The velocity vectors (tangents) must also match at the transition point.
\(\vec{r}_1'(k) = \vec{r}_2'(k)\)
Directional Match
The car doesn't "jump" to a new heading.
Speed Match
The car doesn't instantly speed up or slow down.
Engineering Checklist
1
Set Continuity
Ensure the coordinate functions are equal at \(t = k\).
2
Verify Smoothness
Match the first derivatives (velocity components).
3
Optimize Safety
Check higher derivatives for comfort (acceleration match).
Track Connector Worksheet Structural Integrity Protocol
Track Connector Challenge
DESIGNER:
DATE:
"The transition from a lift hill to the first drop is the most critical point for rider safety. If the velocity vectors don't match, the track will experience a 'snap' that could shear the structural bolts. Your task: mathematically certify the transition."
1
The Lift Hill Connection
A lift hill is modeled by \(\vec{r}_1(t) = \langle 2t, 2t, 0 \rangle\) for \(0 \leq t \leq 10\). The descent begins at \(t = 10\) with \(\vec{r}_2(t) = \langle 2t, -t^2 + 22t - 100, 0 \rangle\).
A) Prove that the track is continuous at the transition point \(t = 10\).
B) Determine if the track is differentiable at \(t = 10\). Will riders feel a 'snap'?
2
The Spline Solver
You are designing a transition between a horizontal stretch \(\vec{r}_H(t) = \langle t, 5, 0 \rangle\) and a curved segment \(\vec{r}_C(t) = \langle t, at^2 + bt + c, 0 \rangle\). The transition happens at \(t = 2\). The curved segment must pass through the point \((4, 1, 0)\).
A) Write a system of 3 equations to find \(a, b,\) and \(c\) such that the track is both continuous and differentiable at \(t=2\), and passes through \((4, 1, 0)\).
B) Solve for the coefficients \(a, b,\) and \(c\).
3
Comfort and G-Force (Preview)
If a track is \(C^1\) (smooth velocity), riders are safe. If it is \(C^2\) (smooth acceleration), the ride is comfortable.
Calculate the acceleration vector \(\vec{a}(t) = \vec{r}''(t)\) for the two segments in Problem 1 at \(t=10\). Is the acceleration continuous?
Safety Division: Roller Coaster Dynamics
Document Ref: CALC-VVF-L2-WS
Safety Specs Answer Key Safety Specs Answer Key
Teacher Solution Manual • Lesson 2
1 The Lift Hill Transition
Part A: Continuity at t=10
\(\vec{r}_1(10) = \langle 2(10), 2(10), 0 \rangle = \langle 20, 20, 0 \rangle\)
\(\vec{r}_2(10) = \langle 2(10), -(10)^2 + 22(10) - 100, 0 \rangle\)
\(\vec{r}_2(10) = \langle 20, -100 + 220 - 100, 0 \rangle = \langle 20, 20, 0 \rangle\)
Positions match. Continuous.
Part B: Differentiability
\(\vec{r}_1'(t) = \langle 2, 2, 0 \rangle \rightarrow \vec{r}_1'(10) = \langle 2, 2, 0 \rangle\)
\(\vec{r}_2'(t) = \langle 2, -2t + 22, 0 \rangle\)
\(\vec{r}_2'(10) = \langle 2, -20 + 22, 0 \rangle = \langle 2, 2, 0 \rangle\)
Velocities match. Differentiable (C¹). No snap.
2 The Spline Solver
Equations for Continuity and Differentiability at t=2:
Continuity: \(a(2)^2 + b(2) + c = 5 \rightarrow 4a + 2b + c = 5\)
Differentiability: \(2a(2) + b = 0 \rightarrow 4a + b = 0\) (since slope of 5 is 0)
Endpoint: \(a(4)^2 + b(4) + c = 1 \rightarrow 16a + 4b + c = 1\)
Solving the System:
Subtract (1) from (3): \(12a + 2b = -4 \rightarrow 6a + b = -2\)
Use (2): \(b = -4a\). Substitute into above: \(6a - 4a = -2 \rightarrow 2a = -2 \rightarrow \mathbf{a = -1}\).
Then \(\mathbf{b = 4}\).
Substitute into (1): \(4(-1) + 2(4) + c = 5 \rightarrow -4 + 8 + c = 5 \rightarrow \mathbf{c = 1}\).
y = -t² + 4t + 1
3 Acceleration Analysis
\(\vec{r}_1''(t) = \langle 0, 0, 0 \rangle \rightarrow \vec{r}_1''(10) = \langle 0, 0, 0 \rangle\)
\(\vec{r}_2''(t) = \langle 0, -2, 0 \rangle \rightarrow \vec{r}_2''(10) = \langle 0, -2, 0 \rangle\)
Acceleration is NOT continuous at t=10.
Riders will feel a sudden change in force (jerk), though the velocity is smooth.
Facilitation Tips
Visualizing Continuity
Have students sketch the transition in Problem 1. Even though the slopes match, the sudden change in concavity in Problem 3 is a great conversation starter about "comfort" vs "safety".
Matrix Integration
Encourage advanced students to use a matrix equation (AX = B) to solve the spline coefficients for larger systems.
G-Force Peak Slides G-Force Peak
Optimizing Space Curves for Human Survival
DANGER ZONE THRESHOLD
Physics of Curves
Acceleration (\(\vec{a}\))
Not just speed change! Acceleration occurs whenever the direction changes.
G-Force
The magnitude of acceleration felt by the pilot, usually measured relative to gravity (\(g = 9.8 \, m/s^2\)).
Total Acceleration Components
\(a_T\)
Tangential: Change in speed.
\(a_N\)
Normal: Change in direction.
\(\|\vec{a}\| = \sqrt{a_T^2 + a_N^2}\)
Curvature (\(\kappa\))
Curvature measures how quickly a curve changes direction per unit of arc length.
\(\kappa = \frac{\|\vec{r}'(t) \times \vec{r}''(t)\|}{\|\vec{r}'(t)\|^3}\)
The "Tightness" of the turn.
Large Radius
Low Curvature \(\kappa\)
Small Radius
High Curvature \(\kappa\)
Normal Acceleration
For most flight maneuvers, the most dangerous force is the Normal Acceleration caused by high-speed turning.
\(a_N = \kappa \cdot v^2\)
Acceleration = Curvature \(\times\) Speed Squared
Double the Speed?
4x the G-Force
Double the Curvature?
2x the G-Force
Optimization Goal
Your challenge is to find the maximum value of \(a_N\) on a specific trajectory.
Safety Constraints:
Trained Pilot: 9g Limit
Structural Failure: 12g+
Warning
Exceeding 9g
results in
GLOC
(G-induced Loss Of Consciousness)
The High-G Maneuver Worksheet Telemetry Report: Operation Sky-High
SQUADRON ANALYTICS • FLIGHT PATH L-3
PILOT ID: ________________
MISSION TIME: JAN-17-2026
Maneuver Profile: "The Helix Climb"
A fighter jet follows the space curve \(\vec{r}(t) = \langle \cos(t), \sin(t), t^2 \rangle\) where distances are in km and time is in minutes. We must assess the structural and pilot stress during the first 2 minutes of the climb (\(0 \leq t \leq 2\)).
\(\vec{r}(t) = \cos(t)\hat{i} + \sin(t)\hat{j} + t^2\hat{k}\)
Safety Limits
CURVATURE (\(\kappa\)):
ANALYZE PEAKS
MAX G-FORCE:
9.0 g
MIN G-FORCE:
1.0 g
1
Velocity and Acceleration Vectors
A) Find \(\vec{v}(t)\) and \(\vec{a}(t)\).
B) Find the speed function \(v(t) = \|\vec{v}(t)\|\).
2
Curvature Analysis
Calculate the curvature function \(\kappa(t)\). Hint: Use \(\kappa(t) = \frac{\|\vec{v} \times \vec{a}\|}{v^3}\).
3
Maximum Normal Acceleration
Note: The normal acceleration \(a_N = \kappa \cdot v^2\). This is the primary component of "G-force" felt by the pilot.
A) Derive the expression for \(a_N(t)\). Simplify where possible.
B) Find the time \(t\) in the interval \([0, 2]\) where \(a_N\) is maximized. Show your optimization work (derivatives and critical points).
Final Safety Verdict
Based on your maximum value of \(a_N\), will the pilot survive this maneuver? (Assume 1 unit of acceleration = 1g for this simulation).
// SCANNING SECTOR 7G // END OF TRANSMISSION //
MANEUVER-OPT-V03
Optimization Reference Sheet Vector Dynamics Reference
ENGINEERING FORMULARY • VERSION 4.0
Fundamental Vectors
<table class="w-full text-sm"><tbody><tr class="border-b border-slate-50"><td class="py-3 font-bold text-slate-500">Position</td><td class="py-3 font-mono text-right">\(\vec{r}(t) = \langle x, y, z \rangle\)</td></tr><tr class="border-b border-slate-50"><td class="py-3 font-bold text-slate-500">Velocity</td><td class="py-3 font-mono text-right">\(\vec{v}(t) = \vec{r}'(t)\)</td></tr><tr class="border-b border-slate-50"><td class="py-3 font-bold text-slate-500">Acceleration</td><td class="py-3 font-mono text-right">\(\vec{a}(t) = \vec{r}''(t)\)</td></tr><tr><td class="py-3 font-bold text-slate-500">Speed (Scalar)</td><td class="py-3 font-mono text-right">\(v(t) = \|\vec{r}'(t)\|\)</td></tr></tbody></table>
Unit Vectors & Tangents
Unit Tangent Vector \(\vec{T}(t) = \frac{\vec{r}'(t)}{\|\vec{r}'(t)\|}\)
Unit Normal Vector \(\vec{N}(t) = \frac{\vec{T}'(t)}{\|\vec{T}'(t)\|}\)
Arc Length (Material Use)
Used for 3D printing and structural material estimates.
\(s = \int_a^b \|\vec{r}'(t)\| \, dt\)
Curvature Formulae
General Space Curves:
\(\kappa = \frac{\|\vec{r}'(t) \times \vec{r}''(t)\|}{\|\vec{r}'(t)\|^3}\)
Parametric in 2D:
\(\kappa = \frac{|x'y'' - y'x''|}{(x'^2 + y'^2)^{3/2}}\)
Decomposition of Acceleration
\(\vec{a} = a_T \vec{T} + a_N \vec{N}\)
Tangential \(a_T\) \(v'(t) = \frac{\vec{r}' \cdot \vec{r}''}{\|\vec{r}'\|}\)
Normal \(a_N\) \(\kappa \cdot v^2 = \frac{\|\vec{r}' \times \vec{r}''\|}{\|\vec{r}'\|}\)
Engineering Limits
Comfort
1-3 g
Human Max
9 g
Structural Failure
12 g +
[ INTERNAL DISTRIBUTION ONLY // DATA SUBJECT TO CALCULUS II VERIFICATION ]
G-Code Curves Slides G-Code Curves
Arc Length & Variable Speed Analysis
Nozzle Pathing
Extrusion Rates
From Math
to Machine
A 3D printer doesn't just "print." It follows a set of vector instructions called G-code .
"Go to point (X, Y, Z) while pushing out E amount of plastic at speed F."
The Calculation Challenge
Material: How much plastic (arc length) is needed for this layer?
Time: How long will the layer take if the speed isn't constant?
Arc Length (\(s\))
\(s = \int_a^b \|\vec{r}'(t)\| \, dt\)
Total Filament Length
We integrate the speed over time to get the distance traveled.
Step-by-Step Workflow
1
Differentiate \(\vec{r}(t)\) to find \(\vec{v}(t)\).
2
Find the magnitude \(\|\vec{v}(t)\|\).
3
Integrate over the time interval \([a, b]\).
The Speed Factor
Printers slow down at tight corners to maintain quality and avoid "ringing."
Rule of Thumb
High Curvature (\(\kappa\)) Low Speed
Low Curvature (\(\kappa\)) High Speed
Print Time Calculation:
\(T = \int_0^L \frac{1}{v(s)} \, ds\)
Where \(v(s)\) is the speed relative to the path position.
Today's Simulation
You are given a complex vector path for a decorative vase layer. You must calculate the exact amount of filament needed and predict the print time to within 5 seconds.
Crunch the Math
Simulate the Build
Material Estimate Worksheet Material Estimate Report
Additive Manufacturing Division • Unit 4.1
BATCH NO: 88-ALPHA
ENGINEER:
Production Job: Layer #142
The printer is extruding a specialized carbon-fiber filament. To ensure structural integrity, the total filament used must be calculated within a 1.5% margin of error. Your task is to calculate the total path length (arc length) for the following trajectories.
1
Support Column Helix
A support column follows the helix \(\vec{r}(t) = \langle 5\cos(t), 5\sin(t), 2t \rangle\) for \(0 \leq t \leq 4\pi\). All units are in millimeters.
Calculate the total arc length of the support filament used in this segment.
2
Variable Speed Extrusion
A printer nozzle follows the path \(\vec{r}(t) = \langle t^2, \frac{2}{3}t^3, t \rangle\) from \(t = 0\) to \(t = 2\). The speed of the nozzle is not constant, which affects cooling time.
A) Setup the integral for the arc length \(s\) of this path.
B) Evaluate the integral. (Hint: Look for a perfect square under the radical).
?
Print Time Prediction
If the printer moves at a constant speed of \(15 \, mm/s\), how long will it take to complete the path in Problem 2? (Show your calculation).
© 2026 CALCULUS-INTEGRATION-VVF
MANUFACTURING-TOLERANCE: +/- 0.05 MM
Variable Speed Lab Guide Variable Speed Lab Guide
Teacher Resource • Lesson 4
Instructional Context
This lesson bridges the gap between theoretical integration and industrial application. Students often see integration as an abstract area-finding tool; here, it becomes a literal measurement of material and time.
Calculus Focus
Arc Length Integrals for Vector Functions
Integrating speed magnitudes
Numerical vs. Analytical integration
Units and conversion (mm, s, mm/s)
Engineering Focus
G-code interpretation
Resource estimation (material waste)
Print time prediction
Tolerance and error margins
Answer Key: Material Estimate
Problem 1: Helix Arc Length
\(\vec{r}'(t) = \langle -5\sin(t), 5\cos(t), 2 \rangle\)
Speed \(v(t) = \sqrt{(-5\sin t)^2 + (5\cos t)^2 + 2^2} = \sqrt{25(\sin^2 t + \cos^2 t) + 4} = \sqrt{29}\)
Arc Length \(s = \int_0^{4\pi} \sqrt{29} \, dt = 4\pi\sqrt{29} \approx 67.67 \, mm\).
Problem 2: Complex Base
\(\vec{r}'(t) = \langle 2t, 2t^2, 1 \rangle\)
Speed \(v(t) = \sqrt{4t^2 + 4t^4 + 1} = \sqrt{(2t^2 + 1)^2} = 2t^2 + 1\)
Arc Length \(s = \int_0^2 (2t^2 + 1) \, dt = [\frac{2}{3}t^3 + t]_0^2 = \frac{16}{3} + 2 = \frac{22}{3} \approx 7.33 \, mm\).
Problem 3: Time Prediction
Time \(T = \text{Distance} / \text{Speed} = (22/3) / 15 \approx 0.489 \, \text{seconds}\).
Lab Facilitation Tips
Scaffolding
The integral in Problem 2 is carefully chosen to be a perfect square trinomial under the radical. If students get stuck at the square root, encourage them to expand \((at^2 + b)^2\) and see if it matches their radicand.
Extension
Ask students: "What happens to the arc length if the radius of the helix in Problem 1 is doubled?" Most will say it doubles. Have them prove it using the integral to show the relationship between geometry and calculus.
Document: CALC-L4-TEACHER
Additive Manufacturing Module
The Engineering Pitch Slides The Engineering Pitch
Synthesizing Calculus into Trajectory Design
The Board
is Waiting
Your final task is to pitch your Engineered Trajectory to a board of senior engineers.
Key Question:
"Can you prove mathematically that your design is safe, efficient, and feasible?"
Project Options
Roller Coaster Loop
Drone Delivery Flight
Robotic Arm Trajectory
Spacecraft Slingshot
Required Evidence
1
Geometry
The Vector Function \(\vec{r}(t)\). Piecewise segments must be continuous and differentiable.
2
Physics
Safety Analysis: Maximum Curvature (\(\kappa\)) and Normal Acceleration (\(a_N\)).
3
Resources
Material Estimates: Arc Length (\(s\)) integration and total print/build time.
Technical Storytelling
Visual clarity
Use Desmos or GeoGebra to show your path in 3D space.
Justify with Data
Don't just say it's safe—show the \(a_N\) peak calculation.
Pro-Tip:
"Engineers don't sell ideas; they sell reliability. Focus on the mathematical proof that your design won't fail."
Clearance
Granted
Assemble your portfolio. Verify your integrals. The Board convenes in the next session.
Portfolio Ready
Slides Checked
Math Verified
Design Portfolio Template Trajectory Portfolio
Calculus Engineering Design Project
PROJECT LEAD:
SUBMISSION DATE:
1
Mission Overview
Project Selection:
Coaster Drone Robotics Other
Brief Description:
Describe the goal of your trajectory...
Visual Concept
Paste or sketch a 3D visualization of your path below.
2
The Vector Function
\(\vec{r}(t) = \langle \phantom{XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX} \rangle\)
Primary Trajectory Definition
First Derivative \(\vec{r}'(t)\)
Second Derivative \(\vec{r}''(t)\)
3
Safety & Curvature Profile
Curvature \(\kappa(t)\) Calculation Formula: \(\frac{\|\vec{r}' \times \vec{r}''\|}{\|\vec{r}'\|^3}\)
Peak Normal Acceleration \(a_N\)
PEAK: _______ g
Structural Safety Limit
LIMIT: _______ g
4
Resource Estimation
Arc Length Integration
\(s = \int_a^b \|\vec{r}'(t)\| \, dt\)
Show your definite integral setup and evaluation:
Total Path Length
_______ units
Build/Print Time
_______ seconds
Design Justification
Why is this trajectory the most efficient for your specific mission?
Document Ref: ENG-PORTFOLIO-V2.1
Calculus Applied Modeling Sequence
Trajectory Mastery Rubric Trajectory Mastery Rubric
Summative Assessment • Capstone Project
/ 100
Engineer Name:
Design Path:
Criteria Level 4 (Mastery) Level 3 (Proficient) Level 2 (Developing) Mathematical Rigor
Vector functions, derivatives, and integration.
| All vector functions and derivatives are flawless. Arc length integral is correctly set up and evaluated. | Vector functions are correct with minor arithmetic errors in derivatives. Integration is largely correct. | Major errors in vector derivation or integration. Limits of integration are missing or incorrect. |
|
Safety &
Curvature
Normal acceleration and safety limits.
| Precisely identifies peak \(a_N\). Clearly justifies safety based on pilot/structural g-limits. | Calculates curvature and \(a_N\) with minor errors. Identifies safety limits but lacks detail in proof. | Curvature formula is misapplied. No clear connection between math and safety constraints. |
|
Engineering
Justification
Design choices and efficiency.
| Compelling evidence for design choices. Arc length and time data are used to prove efficiency. | Logical justification for the path. Some data used, but links to efficiency are weak. | Design seems arbitrary. Lacks evidence from arc length or time calculations. |
|
Technical
Pitch
Visuals, HUD/Graphs, and Delivery.
| Professional HUD/Telemetry style. Visuals (Desmos/3D) are clear and directly support the math. | Technical visuals are included but not always clear. Good communication of core concepts. | Visuals are missing or confusing. Delivery lacks technical terminology or clarity. |
Board of Engineers Feedback
Review notes on technical feasibility and math accuracy...
Final Verdict
Deployment Ready Revision Required Grounded
GRADE: ____
Document: ASSESSMENT-CAPSTONE-V3
Engineering Mastery Protocol