NCERTCh 4Free

Vector Algebra

🎓 Class 12📖 Mathematics Part-II📖 9 notes🧠 15 Q&A⏱️ ~14 min

Vector AlgebraStudy Notes

NCERT-aligned · 9 notes · 3 shown free

Introduction

Explanation

Introduction

Vector Algebra is a fundamental branch of mathematics that deals with vectors, which are quantities characterized by both magnitude and direction. Unlike scalars, which have only magnitude (such as mass, temperature, or speed), vectors provide more comprehensive information by incorporating direction. This makes vectors essential in describing physical quantities like displacement, velocity, acceleration, and force. The study of vectors involves understanding their representation, types, and algebraic operations such as addition, subtraction, and multiplication. Vector Algebra forms the basis for many applications in physics, engineering, and computer science, enabling the analysis and solution of problems involving directional quantities. This chapter introduces the concept of vectors, their types, and the algebraic operations that can be performed on them, laying the groundwork for advanced mathematical and physical studies.

  • Vectors have both magnitude and direction, unlike scalars which have only magnitude.
  • Vector Algebra studies operations on vectors such as addition, subtraction, and multiplication.
  • Vectors are essential in representing physical quantities like displacement, velocity, and force.
  • Understanding vectors is crucial for applications in physics, engineering, and computer graphics.
  • The chapter introduces vector representation, types, and algebraic operations.
  • Vector Algebra provides tools to analyze quantities with direction and magnitude.
  • 📌 Vector: A quantity having both magnitude and direction.
  • 📌 Scalar: A quantity having only magnitude.

Types of Vectors

Explanation

Types of Vectors

Vectors can be classified into several types based on their properties and the context in which they are used. The NCERT textbook identifies key types of vectors such as free vectors, position vectors, equal vectors, unit vectors, zero vectors, and co-initial vectors. A free vector is one that is not fixed to any particular point in space and can be moved parallel to itself without changing its properties. Position vectors represent the position of a point relative to an origin. Equal vectors have the same magnitude and direction but may have different initial points. Unit vectors are vectors of magnitude one and are used to indicate direction. The zero vector has zero magnitude and no specific direction. Co-initial vectors share the same initial point. Understanding these types helps in visualizing and manipulating vectors effectively in various mathematical and physical contexts.

  • Free vectors can be moved anywhere in space without changing their properties.
  • Position vectors represent the location of a point relative to the origin.
  • Equal vectors have the same magnitude and direction but may differ in position.
  • Unit vectors have magnitude one and indicate direction.
  • Zero vector has zero magnitude and no direction.
  • Co-initial vectors have the same initial point.
  • 📌 Free Vector: A vector that can be moved parallel to itself anywhere in space.
  • 📌 Position Vector: A vector representing the position of a point relative to the origin.
  • 📌 Unit Vector: A vector of magnitude one used to specify direction.

Algebra of Vectors

Explanation

Algebra of Vectors

The algebra of vectors involves operations such as addition, subtraction, and scalar multiplication. Vector addition is fundamental and can be performed geometrically or algebraically. Geometrically, vector addition is done using the triangle or para

Practice QuestionsVector Algebra

Includes NCERT exercise questions with answers

Q1.Exercise 4.1 1. Represent graphically the following vectors in the Cartesian plane: (i) a = 2i + 3j (ii) b = -i + 4j (iii) c = 3i - 2j

Answer:

To represent the vectors graphically: (i) a = 2i + 3j This vector starts from the origin (0,0) and ends at the point (2,3). Draw an arrow from (0,0) to (2,3). (ii) b = -i + 4j This vector starts from the origin and ends at (-1,4). Draw an arrow from (0,0) to (-1,4). (iii) c = 3i - 2j This vector starts from the origin and ends at (3,-2). Draw an arrow from (0,0) to (3,-2).

Explanation:

Each vector is written in terms of i and j, which represent the x and y axes respectively. The coefficients give the coordinates of the terminal point when the vector starts at the origin.

EasyNCERT
Q2.Exercise 4.1 2. Write each of the following vectors in terms of i, j, k: (i) The vector from A(1, 2, 3) to B(4, 6, 8) (ii) The vector from P(-2, 0, 5) to Q(3, -4, 7)

Answer:

(i) The vector from A(1, 2, 3) to B(4, 6, 8) is given by: AB = (4 - 1)i + (6 - 2)j + (8 - 3)k = 3i + 4j + 5k (ii) The vector from P(-2, 0, 5) to Q(3, -4, 7) is: PQ = (3 - (-2))i + (-4 - 0)j + (7 - 5)k = 5i - 4j + 2k

Explanation:

The vector from point A(x1, y1, z1) to B(x2, y2, z2) is (x2 - x1)i + (y2 - y1)j + (z2 - z1)k.

EasyNCERT
Q3.Exercise 4.1 3. Find the magnitude of the following vectors: (i) a = 2i + 3j + 6k (ii) b = -i + 4j - 2k

Answer:

(i) |a| = sqrt(2^2 + 3^2 + 6^2) = sqrt(4 + 9 + 36) = sqrt(49) = 7 (ii) |b| = sqrt((-1)^2 + 4^2 + (-2)^2) = sqrt(1 + 16 + 4) = sqrt(21)

Explanation:

The magnitude of a vector a = ai + bj + ck is |a| = sqrt(a^2 + b^2 + c^2). Substitute the values and simplify.

EasyNCERT
Q4.Exercise 4.1 4. If a = 2i - j + k and b = i + 2j - 3k, find a + b and a - b.

Answer:

a + b = (2i - j + k) + (i + 2j - 3k) = (2+1)i + (-1+2)j + (1-3)k = 3i + j - 2k a - b = (2i - j + k) - (i + 2j - 3k) = (2-1)i + (-1-2)j + (1-(-3))k = i - 3j + 4k

Explanation:

Add and subtract the corresponding components of the vectors.

EasyNCERT
Q5.Exercise 4.1 5. Find a unit vector in the direction of the vector a = 3i - 4j + k.

Answer:

First, find the magnitude of a: |a| = sqrt(3^2 + (-4)^2 + 1^2) = sqrt(9 + 16 + 1) = sqrt(26) Unit vector in the direction of a is: \hat{a} = (1/|a|) * a = (1/sqrt(26)) * (3i - 4j + k)

Explanation:

A unit vector in the direction of a vector a is given by a/|a|.

EasyNCERT
Q6.Exercise 4.1 6. If a = 2i + 3j - k and b = -i + 4j + 2k, find the scalar product a · b.

Answer:

a · b = (2i + 3j - k) · (-i + 4j + 2k) = (2)(-1) + (3)(4) + (-1)(2) = -2 + 12 - 2 = 8

Explanation:

The scalar (dot) product is calculated by multiplying corresponding components and adding: a · b = a1b1 + a2b2 + a3b3.

EasyNCERT
Q7.Exercise 4.1 7. Find the angle between the vectors a = i + 2j + 2k and b = 2i + j + k.

Answer:

Let θ be the angle between a and b. First, compute a · b: a · b = (1)(2) + (2)(1) + (2)(1) = 2 + 2 + 2 = 6 |a| = sqrt(1^2 + 2^2 + 2^2) = sqrt(1 + 4 + 4) = sqrt(9) = 3 |b| = sqrt(2^2 + 1^2 + 1^2) = sqrt(4 + 1 + 1) = sqrt(6) cosθ = (a · b)/(|a||b|) = 6/(3*sqrt(6)) = 2/sqrt(6) = sqrt(6)/3 θ = cos^{-1}(sqrt(6)/3)

Explanation:

The angle θ between two vectors is given by cosθ = (a · b)/(|a||b|). Calculate dot product and magnitudes, then use inverse cosine.

MediumNCERT
Q8.Exercise 4.1 8. Find the vector product of the vectors a = i + j + k and b = 2i - j + k.

Answer:

a × b = |i j k| |1 1 1| |2 -1 1| = i[(1)(1) - (1)(-1)] - j[(1)(1) - (1)(2)] + k[(1)(-1) - (1)(2)] = i[1 + 1] - j[1 - 2] + k[-1 - 2] = 2i + j - 3k

Explanation:

The cross product is calculated using the determinant of a 3x3 matrix with unit vectors and the components of the two vectors.

MediumNCERT