If a component is missing (zero), treat it as zero in the addition.
Subtraction is component-wise: a−b=(a<em>x−b</em>x)i^+(a<em>y−b</em>y)j^=a+(−b).
Dot product (2D and 3D)
For 2D vectors a=a<em>xi^+a</em>yj^,b=b<em>xi^+b</em>yj^, a⋅b=a<em>xb</em>x+a<em>yb</em>y.
In 3D, with a=a<em>xi^+a</em>yj^+a<em>zk^,b=b</em>xi^+b<em>yj^+b</em>zk^, the dot product is a⋅b=a<em>xb</em>x+a<em>yb</em>y+a<em>zb</em>z.
Basis dot products (important for intuition):
i^⋅i^=1,j^⋅j^=1,i^⋅j^=0.
Geometric interpretation: a⋅b=∣a∣∣b∣cosθ, where θ is the angle between the vectors.
Therefore, cosθ=∣a∣∣b∣a⋅b.
Projections: the component of b along a satisfies ∣b∣cosθ=∣a∣a⋅b.
Magnitude of a vector
∣a∣=a<em>x2+a</em>y2+az2.
In 2D, this becomes ∣a∣=a<em>x2+a</em>y2.
Cross product (3D) and its relation to 2D
For 3D vectors, a×b=i^amp;j^amp;k^a<em>xamp;a</em>yamp;a<em>zb</em>xamp;b<em>yamp;b</em>z which yields a vector perpendicular to both a and b.
Key component relations: i^×j^=k^,j^×i^=−k^.
In 2D problems, the cross product is often discussed via its z-component: a<em>xb</em>y−a<em>yb</em>x, which equals the magnitude of the 2D parallelogram area and points in the ±z direction.
Orthogonality check: i^×i^=0,j^×j^=0.
Note from transcript: cross product is “opposite” in behavior to the dot product: dot product uses parallel alignment (cos θ), cross product uses perpendicular orientation (sin θ) for magnitude.
Worked example 1: dot product and magnitudes (A = 3i + 2j, B = 0i + 8j)
Projection of b onto a: ∣b∣cosθ=∣a∣a⋅b=1316≈4.441.
Cross product (magnitude, 3D viewpoint): ∣a×b∣=∣a∣∣b∣sinθ=(13)(8)sin(56.0∘)≈24, and in 3D this would be the vector a×b=(0,0,24).
Common pitfall noted in transcript corrections: the speaker incorrectly stated some magnitudes (e.g., claiming |a| = 5). The correct magnitude is 13≈3.606.
Worked example 2: quick cross-check from a common 2D setup (A = 2i + 1j, B = 2i + 1j or similar)
General method: add components to get the resultant, or apply dot/cross as needed.
Takeaway: addition is component-wise, dot product uses component-wise multiplication, and cross product in 3D gives a vector perpendicular with magnitude |a||b|sinθ.
Key takeaways and practical implications
Always treat vectors via their components; add/subtract component-wise: cx = ax ± bx, cy = ay ± by, etc.
Dot product provides a measure of how aligned two vectors are: if θ = 0°, a · b = |a||b|; if θ = 90°, a · b = 0.
The dot product is a scalar; the cross product is a vector (in 3D) perpendicular to the plane of the inputs.
The magnitude and angle relationships are linked: a · b = |a||b| cosθ and |a × b| = |a||b| sinθ (in 3D, with cross product vector direction given by the right-hand rule).
Projections are derived from the dot product; one common form is the component of b along a: ∣b∣cosθ=∣a∣a⋅b.
The speaker mixed several concepts and sometimes produced incorrect numerical results (e.g., misidentifying magnitudes). The formulas and workflows above reflect standard vector algebra and correct values for the examples shown. If you’re ever unsure about a computed magnitude or angle, recalculate from the definitions above using the components.
Vector Representation
A vector a can be written as components: a=a<em>xi^+a</em>yj^+a∗zk^.
Vector addition/subtraction is component-wise: c=a±b⇒c<em>x=a</em>x±b<em>x,c</em>y=a<em>y±b</em>y.
Dot Product
Scalar product for 2D vectors a⋅b=a<em>xb</em>x+a<em>yb</em>y, and for 3D a⋅b=a<em>xb</em>x+a<em>yb</em>y+a<em>zb</em>z.
Geometric interpretation: a⋅b=∣a∣b∣cosθ, where heta is the angle between vectors. It measures alignment.
Used to find the angle between vectors: cosθ=∣a∣b∣a⋅b.
Projections: the component of b along a is ∣a∣a⋅b.
Magnitude of a Vector
The length of a vector a is |a∣=a<em>x2+a</em>y2+az2 (for 3D) or |a∣=a<em>x2+a</em>y2 (for 2D).
Cross Product (primarily 3D)
a×b yields a vector perpendicular to both a and b (in 3D).
Calculated using a determinant: a×b=i^amp;j^amp;k^a<em>xamp;a</em>yamp;a<em>zb</em>xamp;b<em>yamp;b</em>z.
In 2D, the cross product's magnitude (z-component) is a<em>xb</em>y−a<em>yb</em>x, representing the area of the parallelogram formed by the vectors.
The cross product's magnitude is related by |a×b∣=∣a∣b∣sinθ.
Key Principles
Vector operations (addition, subtraction, dot product) are performed component-wise.
The dot product results in a scalar, while the cross product (in 3D) results in a vector.
Dot product indicates vector alignment (parallels), cross product indicates perpendicular orientation (magnitude related to sine).