Spherical-esque Coordiante System

  • Thread starter Thread starter LeBrad
  • Start date Start date
  • Tags Tags
    System
AI Thread Summary
The discussion focuses on generalizing spherical coordinates to N-dimensions, emphasizing the need to define angles for each additional dimension. To compute the angle for the Nth dimension, the approach involves projecting the distance onto the existing (N-1) dimensional space using cosine functions. For example, in transitioning from 3D to 4D, the angle omega is defined as the angle between the 3D space and the 4th dimension, with the projection calculated using cos(omega). This method allows for a systematic way to express coordinates in higher dimensions by prepending the cosine of the new angle to the existing coordinate equations. The conversation concludes that this generalization effectively extends the spherical coordinate system into higher dimensions.
LeBrad
Messages
214
Reaction score
0
Is there a generalization of the 2D or 3D spherical coordinate system to N-dimensions? I want to represent points in the space as a distance r from something, and then a bunch of angles. If this works for arbitrary dimensions, what's the rule for defining the newest angle each time I add a dimension?

In case that's not clear, what I want to know is, if I have a point in 3D (x,y,z) I can also call it (r,phi,theta). But if I have a point in 4D (x,y,z,w), and I want to call it (r,phi,theta,omega), how do I compute omega?
 
Mathematics news on Phys.org
I don't exactly know for what application you need that, but to define an angle you have to first define a function between two axes. If what you mean is "convert" something N-1 D to N D coordinates, I think you take it as if the added value can be arbitrary.
 
Use the dot product.
 
LeBrad said:
But if I have a point in 4D (x,y,z,w), and I want to call it (r,phi,theta,omega), how do I compute omega?

This is one of doing it:

x=r cos(phi)
y=r sin(phi) cos(theta)
z=r sin(phi) sin(theta) cos(omega)
w=r sin(phi) sin(theta) sin(omega)
 
Ok I think I can see how it generalizes now. If I have a coordinate system for (N-1) D, I can just define an angle between (N-1) space and the Nth dimension, and then project into (N-1) space and then use the (N-1) coordinate system with the projection prepended.

So in 2D we have
x = r*cos(phi)
y = r*sin(phi).
Then when I add a third dimension, I define theta as the angle between the 2D space and the new dimension, then project r onto the 2D space with cos(theta), and get
x = r*cos(theta)*cos(phi)
y = r*cos(theta)*sin(phi). Then project onto the 3rd D to get the final piece,
z = r*sin(theta).

So for 4D I would define omega as the angle between 3D and the 4th D, and let the projection be cos(omega) into 3D to get
x = r*cos(omega)*cos(theta)*cos(phi)
y = r*cos(omega)*cos(theta)*sin(phi)
z = r*cos(omega)*sin(theta)
w = r*sin(omega)
where all I did was prepend cos(omega) to the (N-1) projections and then define the new coordinate as r*sin(omega).
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Back
Top