Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mathematics for Quantum Physics
lectures
Merge requests
!3
Add lecture notes for coordinates
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add lecture notes for coordinates
coordinates
into
master
Overview
0
Commits
21
Pipelines
13
Changes
11
Merged
Michael Wimmer
requested to merge
coordinates
into
master
5 years ago
Overview
0
Commits
21
Pipelines
13
Changes
2
Expand
0
0
Merge request reports
Compare
version 2
version 12
80d712ed
5 years ago
version 11
74c42e0c
5 years ago
version 10
be7850ec
5 years ago
version 9
6b7e9ee6
5 years ago
version 8
ea6e722e
5 years ago
version 7
dc650409
5 years ago
version 6
d0a2c689
5 years ago
version 5
6559471a
5 years ago
version 4
38e8e0fa
5 years ago
version 3
ce08526f
5 years ago
version 2
a38d153e
5 years ago
version 1
bf08b110
5 years ago
master (base)
and
version 4
latest version
0fb9db4f
21 commits,
5 years ago
version 12
80d712ed
14 commits,
5 years ago
version 11
74c42e0c
13 commits,
5 years ago
version 10
be7850ec
12 commits,
5 years ago
version 9
6b7e9ee6
11 commits,
5 years ago
version 8
ea6e722e
10 commits,
5 years ago
version 7
dc650409
9 commits,
5 years ago
version 6
d0a2c689
8 commits,
5 years ago
version 5
6559471a
5 commits,
5 years ago
version 4
38e8e0fa
4 commits,
5 years ago
version 3
ce08526f
3 commits,
5 years ago
version 2
a38d153e
2 commits,
5 years ago
version 1
bf08b110
1 commit,
5 years ago
Show latest version
2 files
+
27
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/coordinates.md
+
26
−
6
Options
@@ -10,13 +10,33 @@ title: Coordinates
The most common coordinates are
*Cartesian coordinates*
, where we use a
number $n$ of perpendicular axes. The coordinates corresponding to these
axes are $x_j$ where $j=1,
\l
dots, n$. The distance $
\D
elta s$ between
two points $(x_1, x_2,
\l
dots, x_n)$ and $(x'_1, x'_2,
\l
dots, x'_n)$ is
given by
axes are $x_j$ where $j=1,
\l
dots, n$.
Cartesian coordinates are simple, as the coordinate axis are simply
straight lines and perpendicular to each other. Due to this, it is
very easy to do calculations in Cartesian coordinates. For example,
the distance $
\D
elta s$ between two points $(x_1, x_2,
\l
dots, x_n)$
and $(x'_1, x'_2,
\l
dots, x'_n)$ is easily computed as
$$
\D
elta s^2 = (x'_1 - x_1)^2 + (x'_2 - x_2)^2 +
\l
dots + (x'_n - x_n)^2.$$
The expression on the right hand side can be written using a summation
sign $
\s
um$: $$
\D
elta s^2 =
\s
um_{i=1}^n (x'_i - x_i)^2.$$ A space with
such a distance definition is called a
*Euclidean space*
.
(A space with such a distance definition is called a
*
Euclidean
space
*
.)
In mathematics, we are often dealing with so-called
*infinitesimally*
small
distances, for example in the definition of derivatives and integrals.
In Cartesion coordinates the expressions for infinitesimal distances $ds$ and
infinitesimal volumes $dV$ are given as
$$ds =
\s
qrt{dx_1^2 + dx_2^2 +
\l
dots + dx_n^2}$$
and
$$dV = dx_1 dx_2
\l
dots dx_N.$$
The formula for $dV$ also indicates that in Cartesian coordinates, the integral
over a volume can be expressed as individual integrals over all coordinate directions:
$
\i
nt dV =
\i
dotsint dx_1 dx_2
\l
dots dx_N$.
Cartesian coordinates are used a lot. They are particularly suitable for
infinite spaces or for rectangular volumes.
Loading