Difference between revisions of "Linear Algebra"
(→Vector Cross Product) |
m (→Vector Dot Product) |
||
Line 45: | Line 45: | ||
where <var>θ</var> is the angle between the vectors '''a''' and '''b'''. | where <var>θ</var> is the angle between the vectors '''a''' and '''b'''. | ||
− | For more information on the dot product | + | For more information on the dot product, see [http://en.wikipedia.org/wiki/Dot_product wikipedia's article]. |
==== Thought examples ==== | ==== Thought examples ==== | ||
Line 60: | Line 60: | ||
* What if the rocket were going at a 45° angle? | * What if the rocket were going at a 45° angle? | ||
: Our intuition tells us that the shadow will appear to move, but it will not be moving as fast as the rocket is moving. Mathematically, we have <math>v_s = \vec{R}\cdot\vec{s} = |\vec{R}| |\vec{s}| \cos(45^\circ) = 500\sqrt{2} = 707.1 \, \textrm{mph}</math>. | : Our intuition tells us that the shadow will appear to move, but it will not be moving as fast as the rocket is moving. Mathematically, we have <math>v_s = \vec{R}\cdot\vec{s} = |\vec{R}| |\vec{s}| \cos(45^\circ) = 500\sqrt{2} = 707.1 \, \textrm{mph}</math>. | ||
− | |||
=== Vector Cross Product === | === Vector Cross Product === |
Revision as of 10:47, 25 August 2008
Contents
Basics
Let's first make some definitions:
- Vector
- A one-dimensional collection of numbers. Examples:
- Matrix
- A two-dimensional collection of numbers. Examples:
- Array
- An n-dimensional collection of numbers. A vector is a 1-dimensional array while a matrix is a 2-dimensional array.
- Transpose
- An operation that involves interchanging the rows and columns of an array. It is indicated by a superscript. For example:
- Vector Magnitude,
- A measure of the length of a vector,
- Example:
- Example:
Matrix & Vector Algebra
There are many common operations involving matrices and vectors including:
These are each discussed in the following sub-sections.
Vector Dot Product
The dot product of two vectors produces a scalar. Physically, the dot product of a and b represents the projection of a onto b.
Given two vectors a and b, their dot product is formed as
where and are the components in vectors a and b respectively. This is most useful when we know the components of the vectors a and b.
Occasionally we know the magnitude of the two vectors and the angle between them. In this case, we can calculate the dot product as
where θ is the angle between the vectors a and b.
For more information on the dot product, see wikipedia's article.
Thought examples
Consider the cartoon shown to the right.- At noon, when the sun is directly overhead, a rocket is launched directly toward the sun at 1000 mph. How fast is its shadow moving?
- Define the rocket's velocity as .
- Define the unit normal on the ground (i.e. the direction of the rocket's shadow on the ground) as , where .
- Intuition tells us that if the it is moving directly toward the sun, then its shadow does not appear to move at all. : The dot product since cos(90°)=0.
- Consider the same rocket going parallel to the earth's surface. How fast is its shadow moving?
- If the rocket is going parallel to the earth's surface, our intuition tells us that is shadow is moving at the same speed. This is confirmed by the mathematics, since the angle between the rocket's path and the ground is 0. Therefore, since cos(0°)=1.
- What if the rocket were going at a 45° angle?
- Our intuition tells us that the shadow will appear to move, but it will not be moving as fast as the rocket is moving. Mathematically, we have .
Vector Cross Product
The cross product of two vectors produces a vector perpendicular to the original two. The common right-hand rule is used to determine the direction of the resulting vector.
Assume that we have vectors a and b defined as
where , , and represent the unit-normal vectors in the x, y, and z directions, respectively. The cross product of a and b is then defined as
If we know the magnitude of a and b and the angle between them (θ), then the cross-product is given as
where n is the unit-normal vector perpendicular to the plane defined by the vectors a and b.
For more information, see wikipedia's article on the cross product.
Matrix-Vector Product
Matrix-Matrix Product
Linear Systems of Equations
Solving Linear Systems of Equations
|
Direct Solvers
Gaussian Elimination
The Thomas Algorithm (Tridiagonal Systems)
Iterative Solvers
Jacobi Method
Gauss-Seidel Method
Other Methods
- Conjugate-Gradient
- GMRES