Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2024-06-06 02:16:22
Size: 2837
Comment: Significant content
Revision 4 as of 2025-09-24 16:33:30
Size: 2820
Comment: Simplifying matrix page names
Deletions are marked like this. Additions are marked like this.
Line 15: Line 15:
A [[LinearAlgebra/NullSpaces|null space]] has no basis, but all other spaces have infinitely many possible bases, because the ''only'' requirement on a basis is that it be independent. A [[LinearAlgebra/NullSpace|null space]] has no basis, but all other spaces have infinitely many possible bases, because the ''only'' requirement on a basis is that it be independent.
Line 33: Line 33:
A change of basis has a linear scaling effect on space. The scaling factor is the [[LinearAlgebra/Determinants|determinant]]. A change of basis has a linear scaling effect on space. The scaling factor is the [[LinearAlgebra/Determinant|determinant]].
Line 35: Line 35:
Any matrix that has basis is [[LinearAlgebra/MatrixProperties#Invertible|invertible]], and ergo has a non-zero determinant. Any matrix that has basis is [[LinearAlgebra/Invertibility|invertible]], and ergo has a non-zero determinant.
Line 47: Line 47:
Some differentiation problems are more easily solved in polar coordinates than in Cartesian coordinates. The transformation of points is simple (i.e., ''r = √(x^2^ + y^2^)'', ''x = r*cosθ'', and ''y = r*sinθ''). The transformation of area is less so, and requires the '''Jacobian'''. Generically, the Jacobian is the [[LinearAlgebra/Determinants|determinant]] of the matrix describing the [[Calculus/ChainRule|chain rule]] operations necessary. Some differentiation problems are more easily solved in polar coordinates than in Cartesian coordinates. The transformation of points is simple (i.e., ''r = √(x^2^ + y^2^)'', ''x = r*cosθ'', and ''y = r*sinθ''). The transformation of area is less so, and requires the '''Jacobian'''. Generically, the Jacobian is the [[LinearAlgebra/Determinant|determinant]] of the matrix describing the [[Calculus/ChainRule|chain rule]] operations necessary.

Basis

The bases for a linear space describe the space. Each member basis is independent.


Bases

For any linear space, the bases are independent vectors that can be linearly combined to reach every other vector in the space. If a basis is removed, the space necessarily shrinks.

A null space has no basis, but all other spaces have infinitely many possible bases, because the only requirement on a basis is that it be independent.

A convenient pair of basis vectors for R2 space are [1 0] and [0 1].


Change of Basis

Any two independent vectors can form the basis for an R2 space, but [1 0] and [0 1] are the most convenient bases. A linear space can be linearly transformed to effect a change of basis.

This linear transformation can be expressed with a matrix; the inverse transformation (to return to the old basis) can is the inverse of that same matrix.

Determinants

A change of basis has a linear scaling effect on space. The scaling factor is the determinant.

Any matrix that has basis is invertible, and ergo has a non-zero determinant.

Diagonalization

The primary example of how a change of basis can be used to ease solutions is diagonalization. A matrix is transformed into a diagonal matrix of eigenvalues. Many powerful rules for evaluation apply to diagonal matrices.

Jacobians

Some differentiation problems are more easily solved in polar coordinates than in Cartesian coordinates. The transformation of points is simple (i.e., r = √(x2 + y2), x = r*cosθ, and y = r*sinθ). The transformation of area is less so, and requires the Jacobian. Generically, the Jacobian is the determinant of the matrix describing the chain rule operations necessary.

    | ∂x ∂x |
    | ―― ―― |
    | ∂u ∂v |   ∂x ∂y   ∂x ∂y
det |       | = ―― ―― - ―― ――
    | ∂y ∂y |   ∂u ∂v   ∂v ∂u
    | ―― ―― |
    | ∂u ∂v |

Concretely, for the transformation of 2-dimensional polar coordinates to 2-dimensional Cartesian coordinates, the Jacobian is:

    | ∂x ∂x |       
    | ―― ―― |
    | ∂θ ∂r |       | cosθ -r*sinθ |
det |       | = det | sinθ  r*cosθ | = (cosθ)(r*cosθ) - (-r*sinθ)(sinθ) = r
    | ∂y ∂y |
    | ―― ―― |
    | ∂θ ∂r |

Therefore dxdy = rdrdθ.


CategoryRicottone

LinearAlgebra/Basis (last edited 2026-02-04 02:24:25 by DominicRicottone)