Unit 1: Vector Algebra and Matrices

Table of Contents

Vector Products

Scalar (Dot) Product

The scalar product of two vectors A and B is a scalar quantity defined as:

A · B = |A| |B| cos(θ)

where |A| and |B| are the magnitudes of the vectors and θ is the angle between them.

Vector (Cross) Product

The vector product of two vectors A and B is a vector quantity C defined as:

A × B = |A| |B| sin(θ) n̂

where n̂ is a unit vector perpendicular to the plane containing A and B, given by the Right-Hand Rule.

  • Properties:
  • Physical Interpretation: The magnitude |A × B| is equal to the area of the parallelogram formed by vectors A and B.
  • Physical Application: Torque (τ) is τ = r × F, where r is the position vector and F is the force. Angular momentum (L) is L = r × p.

  • Scalar and Vector Triple Products

    Scalar Triple Product (Box Product)

    It is defined as the dot product of one vector with the cross product of the other two: A · (B × C).

    Vector Triple Product

    It is defined as the cross product of one vector with the cross product of the other two: A × (B × C).

    Common Mistake: Confusing the scalar and vector triple products. Remember:

    Properties and Applications of Vectors

    This is a summary of the applications discussed above.

    S
    Concept Formula Physical Application
    Scalar Product W = F · d Calculating Work Done by a force.
    Scalar Product P = F · v Calculating instantaneous Power.
    Scalar Product ΦB = B · A Calculating Magnetic Flux through an area A.
    Vector Product τ = r × F Calculating Torque.
    Vector Product L = r × p Calculating Angular Momentum.
    Vector Product Fm = q(v × B)Calculating Lorentz Force on a charge in a B-field.
    Scalar Triple Product V = |A · (B × C)| Finding the Volume of a parallelepiped.

    Scalar and Vector Fields

    A field is a physical quantity that has a value for each point in space and time.


    Matrices: Types and Properties

    Different Types of Matrices

    Symmetric and Antisymmetric Matrices

    Hermitian and Anti-Hermitian Matrices

    These are the complex-number equivalents of symmetric and antisymmetric matrices.

    Key Property: Any square matrix A can be written as the sum of a symmetric (S) and an antisymmetric (K) matrix: A = S + K
    where S = (1/2)(A + Aᵀ) and K = (1/2)(A - Aᵀ).
    Similarly, any square matrix A can be written as the sum of a Hermitian (H) and an anti-Hermitian (S) matrix: A = H + S
    where H = (1/2)(A + A†) and S = (1/2)(A - A†).

    Matrix Operations: Inverse and Transpose

    Transpose of a Matrix (Aᵀ)

    As defined earlier, (Aᵀ)ij = Aji.

    Inverse of a Matrix (A⁻¹)

    The inverse of a square matrix A is a matrix A⁻¹ such that A A⁻¹ = A⁻¹ A = I (the identity matrix).


    Solution of Simultaneous Linear Equations

    A system of linear equations can be written in matrix form as AX = B.

        [ a₁₁ a₁₂ ... a₁n ] [ x₁ ]   [ b₁ ]
        [ a₂₁ a₂₂ ... a₂n ] [ x₂ ] = [ b₂ ]
        [ ... ... ... ... ] [ .. ]   [ .. ]
        [ aₘ₁ aₘ₂ ... aₘn ] [ xn ]   [ bₘ ]
            

    Homogeneous Equations (AX = 0)

    This is when B is a null vector (all bi = 0).

    Non-Homogeneous Equations (AX = B)

    This is when B is not a null vector.

    Methods of Solution:

    1. Matrix Inverse Method:
    2. Gauss-Jordan Elimination (Row Reduction):
    3. Cramer's Rule:

    Eigenvalues and Eigenvectors of a Matrix

    Definition

    For a given square matrix A, a non-zero vector X is an eigenvector of A if it satisfies the following equation for some scalar λ:

    AX = λX

    The scalar λ is called the eigenvalue corresponding to the eigenvector X. This means that when matrix A "acts" on its eigenvector X, it only scales it by a factor λ, without changing its direction.

    How to Find Eigenvalues and Eigenvectors

    1. Step 1: Find the Eigenvalues (λ)
    2. Step 2: Find the Eigenvectors (X)
    Properties of Eigenvalues: