PERKALIAN VEKTOR (Perkalian dot product dan cross product) - CONTOH SOAL & PEMBAHASAN

3 min read 2 hours ago
Published on Sep 11, 2025 This response is partially generated with the help of AI. It may contain inaccuracies.

Table of Contents

Introduction

This tutorial focuses on vector multiplication, specifically the dot product and the cross product. Understanding these operations is essential in fields such as physics and mathematics, where they are used to calculate forces, torques, angles, and more. By the end of this guide, you'll be familiar with how to perform these calculations and their applications.

Step 1: Understanding Vector Basics

Before delving into multiplication, ensure you understand the following concepts:

  • Vector Definition: A vector is a quantity with both magnitude and direction, represented as an arrow in space.
  • Notation: Vectors are often denoted in bold (e.g., A) or with an arrow above the letter (e.g., →A).

Key Points

  • Vectors can be represented in components, for example, A = (Ax, Ay, Az).
  • The magnitude of a vector is calculated using the formula: [ |A| = \sqrt{Ax^2 + Ay^2 + Az^2} ]

Step 2: Performing the Dot Product

The dot product results in a scalar quantity and is calculated as follows:

Formula

[ A \cdot B = Ax * Bx + Ay * By + Az * Bz ]

Steps to Calculate

  1. Identify Components: Write down the components of both vectors A and B.
  2. Multiply Corresponding Components: Multiply each corresponding component of the vectors.
  3. Sum the Products: Add the results of the multiplications to get the final scalar value.

Practical Tip

  • The dot product can also be calculated using the angle between the vectors: [ A \cdot B = |A| * |B| * cos(θ) ] where θ is the angle between the two vectors.

Step 3: Performing the Cross Product

The cross product results in a new vector that is perpendicular to the plane formed by the initial vectors.

Formula

[ A \times B = (Ay * Bz - Az * By, Az * Bx - Ax * Bz, Ax * By - Ay * Bx) ]

Steps to Calculate

  1. Identify Components: Write down the components of vectors A and B.
  2. Use the Formula: Substitute the components into the cross product formula.
  3. Calculate Each Component: Perform the arithmetic for each component to find the resulting vector.

Common Pitfalls

  • Make sure to follow the correct order of operations to avoid sign mistakes.
  • Remember that the cross product is not commutative (A × BB × A).

Step 4: Applications of Dot and Cross Products

  • Dot Product Applications:

    • Used to find the angle between vectors.
    • Useful in physics for work calculations: Work = Force · Displacement.
  • Cross Product Applications:

    • Determines torque and rotational motion.
    • Calculates the area of parallelograms formed by two vectors.

Conclusion

Vector multiplication, including dot and cross products, is fundamental in various scientific fields. By mastering these concepts, you can effectively analyze and solve problems involving forces, motion, and geometry. As a next step, practice calculating the dot and cross products with different vectors to reinforce your understanding.