What does vector normalization preserve?	It preserves direction and changes the length to 1, assuming the vector is not zero length.	topicladder math math
Why draw a vector before coding it?	The drawing exposes the start point, direction, length, and units before syntax hides the idea.	topicladder math math
What does the 'Draw the arrow' step prove?	A vector should start as a visual thing: from here to there, with a direction and a size. Check: You can point to the start, direction, and length before naming coordinates.	topicladder math math
What does the 'Name the components' step prove?	The x, y, and z numbers describe how far the arrow moves along each axis. Check: You can explain why changing one component changes the drawing.	topicladder math math
What does the 'Separate direction from length' step prove?	Normalization keeps direction while changing length to one, which helps movement and sensors stay consistent. Check: A unit vector points the same way but has length 1.	topicladder math math
What does the 'Attach units to the problem' step prove?	A game velocity, wiring offset, load direction, and shop measurement can all use vectors, but the units decide what the numbers mean. Check: Your note says pixels, meters, volts-per-reading, pounds, or inches where needed.	topicladder math math
When would you use `direction = target_position - current_position`?	Use it to find the arrow from one point to another. Expected signal: The result points from the current position toward the target	topicladder math command
When would you use `unit_direction = direction.normalized()`?	Use it to keep direction but remove distance. Expected signal: The vector length becomes 1 while the heading stays the same	topicladder math command
When would you use `force_arrow = magnitude * unit_direction`?	Use it to turn a known direction and known size into one vector. Expected signal: The vector now has the desired length in the chosen units	topicladder math command
Where can you review the full Vectors for Maker Projects context?	Use the TopicLadder page for the text lesson, examples, downloads, and practice task: https://topicladder.com/learn/vectors-for-maker-projects/	topicladder math math source
