Dot Product (Scalar Product) - Introduction to Vectors
Welcome, JEE aspirants! The dot product, also known as the scalar product, is a fundamental operation in vector algebra and 3D geometry. Mastering the dot product is crucial for solving a wide range of problems in JEE Main, from finding angles between lines and planes to determining work done by a force. Let's dive in!
Conceptual Explanation and Intuition
The dot product provides a way to multiply two vectors and obtain a scalar (a single number) as the result. Intuitively, it measures the "alignment" or "projection" of one vector onto another. Think of it as how much one vector "contributes" in the direction of the other. If the vectors point in the same direction, the dot product is positive; if they point in opposite directions, it's negative; and if they are perpendicular, it's zero.
Definition: a · b = |a||b|cos θ
The most fundamental definition of the dot product is given by:
a⋅b=∣a∣∣b∣cosθ
where:
a and b are the two vectors.
∣a∣ and ∣b∣ are the magnitudes (lengths) of the vectors.
θ is the angle between the two vectors.
This formula directly relates the dot product to the magnitudes of the vectors and the angle between them. If a and b are unit vectors (magnitude 1), then a⋅b is simply cosθ.
Example: Consider a and b with magnitudes 5 and 8 respectively, and the angle between them is 60°. Then, a⋅b=5⋅8⋅cos60°=5⋅8⋅(1/2)=20.
Component Form: a · b = a₁b₁ + a₂b₂ + a₃b₃
In many problems, vectors are given in component form. The dot product can then be calculated as follows:
a⋅b=a1b1+a2b2+a3b3
where:
a=a1i^+a2j^+a3k^
b=b1i^+b2j^+b3k^
i^, j^, and k^ are the unit vectors along the x, y, and z axes, respectively.
This formula is extremely useful for quickly calculating the dot product when the vectors are given in component form.
Example: If a=2i^−3j^+k^ and b=−i^+j^−2k^, then a⋅b=(2)(−1)+(−3)(1)+(1)(−2)=−2−3−2=−7.
Angle Between Vectors using Dot Product
Rearranging the definition formula, we can find the angle between two vectors:
cosθ=∣a∣∣b∣a⋅b
This is a powerful tool for finding angles between vectors, lines, and planes. Remember that θ is always the acute angle between the vectors.
Example: Find the angle between a=i^+j^ and b=i^−j^. First, a⋅b=(1)(1)+(1)(−1)=0. Also, ∣a∣=12+12=2 and ∣b∣=12+(−1)2=2. Therefore, cosθ=0/(2⋅2)=0, which means θ=90°.
Properties of Dot Product
The dot product has several important properties:
Commutative:a⋅b=b⋅a
Distributive:a⋅(b+c)=a⋅b+a⋅c
Scalar Multiplication:(ka)⋅b=k(a⋅b)=a⋅(kb) where k is a scalar.
Important Formulas and Derivations
a · a = |a|²
This follows directly from the definition: a⋅a=∣a∣∣a∣cos0°=∣a∣2⋅1=∣a∣2. It is a useful shortcut for calculating the square of the magnitude of a vector.
a⋅a=∣a∣2
i · i = j · j = k · k = 1
Since i^, j^, and k^ are unit vectors and the angle between each of them and themselves is 0°, i^⋅i^=∣i^∣∣i^∣cos0°=1⋅1⋅1=1 (and similarly for j^ and k^).
i^⋅i^=j^⋅j^=k^⋅k^=1
i · j = j · k = k · i = 0
The unit vectors i^, j^, and k^ are mutually perpendicular. Therefore, the angle between them is 90°. Since cos90°=0, we have i^⋅j^=∣i^∣∣j^∣cos90°=1⋅1⋅0=0 (and similarly for j^⋅k^ and k^⋅i^).
i^⋅j^=j^⋅k^=k^⋅i^=0
(a + b) · c = a · c + b · c
This is the distributive property. This can be easily proved using the component form of the dot product.
Let a=a1i^+a2j^+a3k^, b=b1i^+b2j^+b3k^, and c=c1i^+c2j^+c3k^.
Then a+b=(a1+b1)i^+(a2+b2)j^+(a3+b3)k^.
So, (a+b)⋅c=(a1+b1)c1+(a2+b2)c2+(a3+b3)c3=a1c1+b1c1+a2c2+b2c2+a3c3+b3c3=(a1c1+a2c2+a3c3)+(b1c1+b2c2+b3c3)=a⋅c+b⋅c.
(a+b)⋅c=a⋅c+b⋅c
Perpendicular (Orthogonal) Vectors: a · b = 0
Two vectors are perpendicular (orthogonal) if and only if their dot product is zero. This is a direct consequence of the definition, since cos90°=0.
a⋅b=0⟺a⊥b
This is a very important concept for JEE, often used to find conditions for lines and planes to be perpendicular.
Example: Determine if a=2i^+j^−k^ and b=i^−j^+k^ are perpendicular. a⋅b=(2)(1)+(1)(−1)+(−1)(1)=2−1−1=0. Therefore, the vectors are perpendicular.
Tip: When solving problems involving perpendicularity, always start by setting the dot product to zero. This will often lead to a simple equation that you can solve.
Common Mistake: Forgetting that the dot product results in a scalar, not a vector. Also, be careful with signs when using the component form.
JEE-Specific Tricks
Trick 1: Using Dot Product to Find Projections
The projection of vector a onto vector b is given by:
projba=∣b∣2a⋅bb
The magnitude of the projection is:
∣projba∣=∣b∣∣a⋅b∣
Trick 2: Using Dot Product with Cross Product
Sometimes, JEE problems involve a combination of dot products and cross products. Remember that a⋅(b×c) gives the volume of the parallelepiped formed by the three vectors.
Example (JEE Main level): Let a=i^+j^+k^, b=i^−j^, and c=i^+2j^+k^. Find the volume of the parallelepiped formed by these vectors. You would calculate the scalar triple product a⋅(b×c).