Zum Inhalt springen

English:Vectors in Two and Three Dimensions

Aus MOOCsWiki Staging
Version vom 28. August 2026, 08:54 Uhr von Glanz (Diskussion | Beiträge) (aiMOOC über GPT aiMOOC Action erstellt)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
aiMOOC-Siegel

Vectors in Two and Three Dimensions



Introduction

Vectors give you a compact way to describe quantities that have both magnitude and direction. In two dimensions, a vector can model a displacement across a map or a velocity on a flat surface. In three dimensions, vectors can describe the motion of an aircraft, the force on a structure, the direction of a ray in computer graphics, or the orientation of an object in space.

In this aiMOOC for Grades 11–13, you will move between geometric pictures and coordinate calculations. You will learn how to represent vectors, combine them, measure them, compare their directions, and use them to describe lines and planes. You will also meet the dot product and the cross product, two operations that connect algebra with geometry.

The diagram above shows vector addition geometrically. The same sum can be found by adding coordinates component by component.

As you watch, focus on the three viewpoints of a vector: an arrow in space, a list of coordinates, and an object that can be added or scaled.


Learning Goals

By the end of this course, you should be able to explain and apply the following ideas:

  1. Vector: Interpret vectors geometrically and in coordinate form in two and three dimensions.
  2. Vector addition: Add, subtract, and scale vectors and connect the calculations to geometric constructions.
  3. Magnitude: Compute vector lengths and construct unit vectors.
  4. Dot product: Use the dot product to test perpendicularity, determine angles, and calculate projections.
  5. Cross product: Compute a three-dimensional vector perpendicular to two given vectors and interpret its magnitude as an area.
  6. Line: Describe lines parametrically with a position vector and a direction vector.
  7. Plane: Describe planes using points and normal vectors and solve line–plane intersection problems.
  8. Mathematical modelling: Apply vectors to motion, forces, work, torque, geometry, and spatial reasoning.


Foundations: Points, Scalars, and Vectors


Scalars and Vectors

A scalar is described by magnitude alone. Examples include mass, temperature, time, and energy. A vector has magnitude and direction. Examples include displacement, velocity, acceleration, and force.

A vector is often written as a. In two-dimensional Cartesian coordinates, a=(a1,a2). In three dimensions, a=(a1,a2,a3).

Coordinates tell you how much of the vector points along each coordinate axis. Two vectors are equal when their corresponding components are equal, even if the arrows are drawn at different positions.


Position Vectors and Displacement Vectors

A point and a vector are related but are not the same object. The point P=(x,y,z) identifies a location. Its position vector is the vector from the origin to that point: OP=(x,y,z).

If A=(a1,a2,a3) and B=(b1,b2,b3), then the displacement from A to B is AB=BA=(b1a1,b2a2,b3a3).

This subtraction rule is one of the most useful ideas in analytic geometry: final position minus initial position gives the displacement vector.


Vector Operations in Two Dimensions


Addition and Subtraction

For a=(a1,a2) and b=(b1,b2), a+b=(a1+b1,a2+b2) and ab=(a1b1,a2b2).

Geometrically, addition can be carried out by the head-to-tail rule or the parallelogram rule. Subtraction can be understood as addition of the opposite vector: ab=a+(b).

When you read a vector diagram, distinguish carefully between the coordinates of a point and the components of an arrow.


Scalar Multiplication

For a scalar k and a vector a, ka=(ka1,ka2) in two dimensions and ka=(ka1,ka2,ka3) in three dimensions.

If k>1, the vector becomes longer. If 0<k<1, it becomes shorter. If k<0, the direction reverses as well as the magnitude changing. Scalar multiplication therefore stretches, shrinks, or reverses a vector while keeping it parallel to the original.


Components, Magnitude, and Unit Vectors

For a=(a1,a2), the magnitude follows from the Pythagorean theorem: |a|=a12+a22.

For a=(a1,a2,a3), |a|=a12+a22+a32.

If a0, the unit vector in the direction of a is a^=a|a|. A unit vector has magnitude 1.

The component picture is especially useful when a vector is given by a magnitude and an angle. In two dimensions, a vector of magnitude r making an angle θ with the positive x-axis has components (rcosθ,rsinθ).


Worked Example: A Displacement in Two Dimensions

Let A=(1,2) and B=(3,5). Then AB=(3(1),52)=(4,3).

Its magnitude is |AB|=42+32=5.

A unit vector from A toward B is AB|AB|=(45,35).

Notice the chain of reasoning: identify two points, subtract to find displacement, use the Pythagorean theorem for magnitude, then divide by the magnitude to normalize the vector.


Vectors in Three Dimensions


The Three-Dimensional Coordinate System

Three-dimensional Cartesian space uses three mutually perpendicular axes, usually called x, y, and z. A point P=(x,y,z) is located by three coordinates, and a vector v=(vx,vy,vz) records its components along the same axes.

Fehler beim Erstellen des Vorschaubildes:

A drawing of three-dimensional axes on a flat page uses perspective, so lengths and angles in the picture may not look exact. The coordinates, not the appearance of the sketch, determine the mathematics.

Fehler beim Erstellen des Vorschaubildes:

This decomposition shows how one spatial vector can be resolved into components parallel to the coordinate axes.


Distance and Direction in Space

For points P=(x1,y1,z1) and Q=(x2,y2,z2), the displacement vector is PQ=(x2x1,y2y1,z2z1).

The distance between the points is the magnitude of this displacement: PQ=(x2x1)2+(y2y1)2+(z2z1)2.

The same vector operations used in two dimensions extend naturally to three dimensions because components are still added, subtracted, and scaled one coordinate at a time.


The Dot Product


Algebraic and Geometric Definitions

For a=(a1,a2,a3) and b=(b1,b2,b3), the dot product is ab=a1b1+a2b2+a3b3.

Geometrically, ab=|a||b|cosθ, where θ is the angle between the two nonzero vectors.

Therefore, cosθ=ab|a||b|.

If the dot product of two nonzero vectors is positive, the angle between them is acute. If it is zero, the vectors are perpendicular. If it is negative, the angle is obtuse.

Datei:Scalar-product-dot-product.svg

The diagram connects the dot product to projection: one vector contributes according to how much of it lies in the direction of the other.

While watching, compare the coordinate formula with the geometric idea of projection.


Projection

The vector projection of a onto a nonzero vector b is projba=abbbb.

This result is parallel to b. Projection is useful for splitting a vector into a component parallel to a chosen direction and a component perpendicular to it.

Datei:Scalar vector projection.svg

In physics, work done by a constant force F over a displacement s is W=Fs. Only the component of force in the direction of motion contributes to this dot product.


Worked Example: Angle Between Two Spatial Vectors

Let a=(2,1,3) and b=(1,4,2). Their dot product is ab=246=8.

Their magnitudes are |a|=14 and |b|=21. Hence cosθ=81421=8294.

Because the cosine is negative, the angle is obtuse. This conclusion can be made even before calculating the angle numerically.


The Cross Product in Three Dimensions


Definition and Direction

For three-dimensional vectors a=(a1,a2,a3) and b=(b1,b2,b3), the cross product is a×b=(a2b3a3b2, a3b1a1b3, a1b2a2b1).

The vector a×b is perpendicular to both a and b. Its direction follows the right-hand rule.

Datei:Cross-product-right-hand rule.svg

Its magnitude is |a×b|=|a||b|sinθ. This equals the area of the parallelogram spanned by the two vectors. Half of that magnitude gives the area of the triangle determined by the same two side vectors.

The cross product is not commutative: a×b=(b×a).

Use the video to connect the coordinate formula, perpendicular direction, and oriented area.

This second explanation gives practice calculating both dot and cross products with unit-vector notation.


Worked Example: A Perpendicular Vector

Using a=(2,1,3) and b=(1,4,2), we obtain a×b=(10,7,9).

Check perpendicularity: (10,7,9)(2,1,3)=207+27=0, and (10,7,9)(1,4,2)=10+2818=0.

Both dot products are zero, confirming that the cross product is perpendicular to each original vector.


Lines in Two and Three Dimensions


Vector Equation of a Line

A line through a point with position vector p and nonzero direction vector d can be written r=p+td, where t is a real parameter.

In three dimensions, if p=(p1,p2,p3) and d=(d1,d2,d3), then (x,y,z)=(p1,p2,p3)+t(d1,d2,d3).

This gives the parametric equations x=p1+td1, y=p2+td2, and z=p3+td3.

Two lines with parallel direction vectors are parallel or coincident. In three dimensions, nonparallel lines may intersect, but they may also be skew: they pass through different parts of space without meeting.


Line Segments and Midpoints

A line segment from point A to point B can be parametrized by r(t)=A+t(BA) for 0t1.

At t=0, the point is A. At t=1, it is B. At t=12, the point is the midpoint: M=A+B2.

This form is widely used in animation, computer graphics, and numerical modelling because varying the parameter smoothly traces the segment.


Planes in Three Dimensions


Normal-Vector Form

A plane is determined by a point P0 and a nonzero normal vector n perpendicular to the plane. A point with position vector r lies on the plane exactly when n(rr0)=0.

If n=(a,b,c), this can be rearranged to ax+by+cz=d for a suitable constant d.

Two planes with parallel normal vectors are parallel or identical. If their normals are not parallel, the planes intersect in a line.


Finding a Plane from Three Points

Suppose three noncollinear points are A, B, and C. Form two direction vectors in the plane: AB=BA and AC=CA.

Then n=AB×AC is perpendicular to the plane. Use this as the normal vector in n(rA)=0.

This method shows how subtraction, cross products, and dot products work together in three-dimensional geometry.


Worked Example: Line–Plane Intersection

Consider the line r=(1,2,0)+t(2,1,3) and the plane x+2yz=8.

Substitute the line coordinates into the plane: (1+2t)+2(2t)3t=8.

After simplification, 53t=8, so t=1.

The intersection point is therefore (1,2,0)(2,1,3)=(1,3,3). Checking gives 1+23(3)=8, so the point lies on the plane.


Areas, Volumes, and Orientation


Area from a Cross Product

If adjacent sides of a parallelogram are represented by a and b, its area is |a×b|.

If those vectors form two sides of a triangle from the same vertex, the triangle area is 12|a×b|.

In two dimensions, a closely related determinant a1b2a2b1 gives a signed area and encodes orientation.


Volume from a Scalar Triple Product

For three three-dimensional vectors a, b, and c, the scalar triple product a(b×c) has absolute value equal to the volume of the parallelepiped spanned by the vectors.

If the scalar triple product is zero, the three vectors are coplanar. This gives an efficient algebraic test for whether three directions lie in the same plane.


Applications and Mathematical Modelling


Motion and Navigation

A position vector can vary with time: r(t). In calculus, its derivative is the velocity vector and the derivative of velocity is acceleration. Even before calculus, displacement vectors can be added to model successive stages of a journey.

In navigation, you must distinguish between a vehicle's velocity relative to the surrounding medium and the velocity of the medium itself. Adding vectors can model the combined effect of a boat and current or an aircraft and wind.


Forces, Work, and Torque

Forces combine by vector addition. If several forces act on an object, their vector sum is the resultant force.

The dot product models work: W=Fs.

The cross product models torque: τ=r×F, where r points from the pivot to the point where the force is applied. The torque direction is perpendicular to the plane containing r and F.


Computer Graphics and Spatial Technology

Three-dimensional graphics use position vectors, direction vectors, normal vectors, and transformations. Surface normals help determine how light interacts with a surface. Rays can be described by parametric line equations. Interpolation along segments creates smooth motion between positions.

Robotics and engineering use vectors to describe positions, orientations, velocities, and forces. A good vector model always begins by defining a coordinate system and interpreting the meaning and units of each component.


Problem-Solving Strategy


A Reliable Workflow

When solving a vector problem, you can use this sequence:

  1. Coordinate system: Define axes, positive directions, units, and the meaning of each coordinate.
  2. Diagram: Sketch the geometry and label points, vectors, angles, and known lengths.
  3. Representation: Convert the geometric information into points, components, or vector equations.
  4. Operation: Choose addition, subtraction, scalar multiplication, dot product, cross product, or a parametric equation according to the goal.
  5. Verification: Check dimensions, signs, magnitudes, perpendicularity, and whether your result satisfies the original conditions.


Common Errors to Avoid

Confusing points with vectors: a point is a location, while a vector represents a displacement or direction.

Reversing a displacement: AB=BA, whereas BA=AB=AB.

Forgetting to normalize: a direction vector is not automatically a unit vector.

Using the dot and cross products interchangeably: the dot product returns a scalar, while the three-dimensional cross product returns a vector.

Ignoring order in a cross product: changing the order reverses the direction.

Trusting a perspective sketch too much: a 3D drawing on paper may distort lengths and angles.

Dividing by a zero magnitude: the zero vector has no defined direction and cannot be normalized.


Interactive Tasks


Quiz: Test Your Knowledge

Which statement best describes a vector? (A quantity with magnitude and direction) (!A quantity with magnitude only) (!A point with no coordinates) (!A number that must be positive)




How do you find the displacement vector from point A to point B? (Subtract the coordinates of A from the coordinates of B) (!Add all coordinates of A and B) (!Subtract the coordinates of B from the coordinates of A) (!Multiply corresponding coordinates)




What does dividing a nonzero vector by its magnitude produce? (A unit vector in the same direction) (!The zero vector) (!A perpendicular vector) (!A scalar equal to one)




When is the dot product of two nonzero vectors equal to zero? (When the vectors are perpendicular) (!When the vectors are parallel) (!When the vectors have equal magnitude) (!When the vectors have opposite components)




What kind of result does a dot product produce? (A scalar) (!A point) (!A plane) (!A three dimensional axis)




What is true about the direction of a three dimensional cross product? (It is perpendicular to both input vectors) (!It is always parallel to the first vector) (!It is always parallel to the second vector) (!It always points toward the origin)




What does the magnitude of a cross product represent geometrically? (The area of the parallelogram spanned by the vectors) (!The perimeter of the parallelogram) (!The angle between the coordinate axes) (!The distance from the origin to a plane)




What does a direction vector specify in a parametric line equation? (The direction in which the line extends) (!The unique midpoint of the line) (!The normal direction of every plane) (!The area enclosed by the line)




Which vector is most useful for describing the orientation of a plane? (A normal vector) (!A zero vector) (!A midpoint vector) (!A scalar vector)




What does a zero scalar triple product show? (The three vectors are coplanar) (!The three vectors all have unit length) (!The three vectors are mutually perpendicular) (!The three vectors point in the same direction)





Memory Game

Vector magnitude Length of a vector
Unit vector Vector with magnitude one
Dot product Scalar measuring directional alignment
Cross product Perpendicular vector determined by two spatial vectors
Position vector Vector from the origin to a point
Direction vector Vector parallel to a line





Drag and Drop

Match the correct terms. Topic
Component addition Combine vectors coordinate by coordinate
Normalization Scale a nonzero vector to unit length
Orthogonality test Use a zero dot product for nonzero vectors
Area calculation Use the magnitude of a cross product
Line parametrization Combine a fixed point with a scaled direction vector




Match each operation with the description that best explains its role in vector geometry.


Crossword Puzzle

Vector What mathematical object has both magnitude and direction?
Scalar What type of result is produced by a dot product?
Orthogonal Which word describes two perpendicular directions?
Projection What operation extracts the component of one vector along another?
Parallelogram Which shape has area equal to the magnitude of a cross product of adjacent side vectors?
Direction What does a nonzero vector specify for a parametric line?





LearningApps


Cloze Text

Complete the text.

A vector has both magnitude and

. The displacement from point A to point B is found by subtracting A from

. A vector with magnitude one is called a

. The dot product of two nonzero perpendicular vectors is

. The geometric dot product contains the cosine of the angle between two

. In three dimensions, the cross product points perpendicular to both input

. The magnitude of a cross product gives a parallelogram

. A plane can be described using a point and a perpendicular

.




Open-Ended Tasks


Easy

  1. Vector Photo Hunt: Find four real situations around your school or home that can be represented by vectors, photograph or sketch them, and label a possible magnitude, direction, and unit for each.
  2. Coordinate Arrow Poster: Create a one-page poster showing a two-dimensional vector, its x- and y-components, its magnitude, and its unit vector.
  3. Human Vector Walk: Mark a coordinate grid on the floor or outdoors, follow a sequence of displacement vectors, and record how vector addition predicts your final location.
  4. Vector Vocabulary Explanation: Write a short explanation for a younger learner that distinguishes a point, scalar, vector, magnitude, and direction using one coherent example.


Standard

  1. Wind and Motion Model: Build a numerical model of an aircraft or boat affected by wind or current, calculate the resultant velocity, and explain the meaning of each component.
  2. Dot Product Investigation: Choose several vector pairs, calculate their dot products and angles, and create a diagram or spreadsheet showing how the sign of the dot product changes with angle.
  3. Three-Dimensional String Model: Construct a physical model of three coordinate axes with string or rods, represent at least three spatial vectors, and explain their components from two viewing angles.
  4. Line Intersection Video: Produce a short tutorial video showing how to decide whether two given lines in two or three dimensions intersect, are parallel, or are skew.


Advanced

  1. Plane Reconstruction Project: Choose three noncollinear points in space, derive the plane through them using a cross product, and verify the equation with all three points.
  2. Torque Experiment: Design a safe lever experiment with measured distances and forces, model the torque vector conceptually, and discuss how changing the angle changes torque magnitude.
  3. Graphics Normal Vector Study: Investigate how surface normal vectors are used in three-dimensional computer graphics, create a simple visual demonstration, and explain the role of dot products in lighting.
  4. Vector Modelling Investigation: Formulate a realistic multi-step problem involving motion, lines, or planes, solve it using vector methods, validate the result, and present the assumptions and limitations of your model.



Learning Assessment

  1. Vector Representation Assessment: Given a geometric situation, define a coordinate system, represent all relevant points and vectors, and justify why your representation is appropriate.
  2. Strategy Selection Assessment: For several problems, decide whether addition, a dot product, a cross product, or a parametric equation is the best tool, and explain each choice before calculating.
  3. Reasoning with Perpendicularity: Use both dot-product calculations and geometric arguments to test claims about perpendicular vectors, then explain why the methods agree.
  4. Line and Plane Transfer Task: Solve a line–plane intersection problem in three dimensions, verify the point algebraically, and interpret the parameter geometrically.
  5. Modelling Critique: Analyse a vector model of wind, force, or motion, identify its assumptions, and propose one realistic refinement.
  6. Error Analysis: Diagnose incorrect solutions involving displacement order, normalization, or cross-product order, correct them, and explain the mathematical consequence of each error.
  7. Synthesis Challenge: Use subtraction, a cross product, and a dot product in one connected solution to determine a plane from points and test whether another point lies on it.




Evidence of Learning

Strong evidence of learning includes:

  1. Knowledge: You can explain vectors, components, magnitude, direction, unit vectors, dot products, cross products, parametric lines, and normal-vector planes in your own words.
  2. Skills: You can move accurately between diagrams, coordinates, equations, and geometric interpretations in two and three dimensions.
  3. Reasoning: You can justify why a chosen vector operation fits a problem and verify results with independent checks such as substitution, magnitude, or perpendicularity.
  4. Products: You can produce clear diagrams, models, written solutions, investigations, videos, or digital visualizations that communicate vector relationships.
  5. Transfer: You can apply vector methods to unfamiliar contexts in physics, engineering, navigation, computer graphics, or spatial geometry.
  6. Reflection: You can identify limitations in a model, explain errors, and improve a solution after checking assumptions and units.




OERs on the Topic

The following embedded English Wikipedia article provides an open reference for the concept of Euclidean vectors and links to related ideas in geometry and linear algebra.

Use this reference to review terminology, compare notations, and follow links to related topics such as Dot product, Cross product, Vector space, and Analytic geometry.



Linked Learning Areas


aiMOOC Projects

MOOCwiki · Deutsch

Nach dem Lernen ist vor dem Lernen

Entdecke direkt den nächsten Lernkurs. Weitere Inhalte erscheinen, wenn Du weiter nach unten scrollst.

Zur MOOCwiki-Hauptseite

Mediathek

Mediathek

Inhalte werden geladen ...

Mediathek wird aus dem Wiki geladen ...