--- title: "Real Projective Spaces and 3x3 Rotation Matrices" author: "Glenn Davis" date: "`r Sys.Date()`" header-includes: # - \usepackage{tikz} - \newcommand{\RP}{\mathbb{R}\text{P}} - \newcommand{\SOthree}{\text{SO(3)}} output: rmarkdown::html_vignette: toc: true toc_depth: 1 number_sections: false bibliography: bibliography.bib csl: personal.csl # csl: iso690-numeric-brackets-cs.csl # csl: institute-of-mathematical-statistics.csl # csl: transactions-on-mathematical-software.csl vignette: > %\VignetteIndexEntry{Real Projective Spaces and 3x3 Rotation Matrices} %\VignetteEngine{knitr::rmarkdown} --- ```{css, echo=FALSE} body { max-width: 725px; /* make wider, default is 700px */ } h1{ font-size: 20pt; /* make the level 1 headers smaller */ } ``` ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) old_opt = options( width=144 ) ```

# Introduction ```{r, echo=TRUE, message=FALSE} library(polarzonoid) ``` In this vignette, we define some configuration spaces of an even number of points on the circle, and show that they are homeomorphic to real projective spaces $\RP^n$. Since $\RP^3$ is homeomorphic to the group of 3x3 rotation matrices $\SOthree$, we also have a homeomorphism with that space. A prerequisite to understanding this vignette is the section on spaces of arcs $A_n$ in the [User Guide](../doc/polarzonoid-guide.html) vignette. The current vignette is illustrated with some animated GIFS showing paths in the space of 2 or 4 points on the circle. The GIF plots are made with help of the package **gifski** and this function: ```{r, echo=TRUE, message=FALSE} GIFfromrotationlist <- function( rotationlist, index=1L, fps=4, vpsize=c(480,512) ) { require( 'gifski' ) # make temp folder pathtemp = tempdir() # "./figs" ; if( ! file.exists(pathtemp) ) dir.create(pathtemp) count = length( rotationlist ) namevec = names( rotationlist ) for( k in 1:count ) { filename = sprintf( "%s/plot%03d.png", pathtemp, k ) png( filename=filename, width=vpsize[1], height=vpsize[2], units = "px" ) rotation3x3 = rotationlist[[k]] arcmat = arcsfromrotation( rotation3x3, tol=1.e-7 ) plotarcs( arcmat, labels=FALSE, main=namevec[k], lwd=NA, cex=3, col='blue' ) rect( -0.83, -0.4, 0.83, 0.4, col='white', border='black' ) matlabel = sprintf( "%+.4f", rotation3x3 ) matlabel = gsub( '[+]', ' ', matlabel ) dim(matlabel) = c(3,3) matlabel = capture.output( print(matlabel,quote=FALSE) ) matlabel = matlabel[-1] # ignore the column labels matlabel = substr( matlabel, 5, 1000 ) # ignore the row labels text( 0, c(0.3,0,-0.3), matlabel, adj=c(0.51,0.5), cex=1.5, family='mono' ) dev.off() } pathvec = dir( pathtemp, pattern="png$", full=T ) gif_file = sprintf( "%s/animation%g.gif", pathtemp, index ) out = gifski( pathvec, gif_file=gif_file, delay=1/fps, progress=F, width=vpsize[1], height=vpsize[2] ) res = file.remove( pathvec ) # cleanup the .PNG files, leaving just the .GIF return(out) } ```

# Two Natural Involutions The sphere $\mathbb{S}^{2n}$ has natural involution, the antipodal map, given by $\alpha(u) = -u$. The space of arcs $A_n$ has a natural involution $\gamma$, which is the complementation operation, given by $\gamma(V) = \operatorname{Cl}(\mathbb{S}^1 - V)$. The closure $\operatorname{Cl}$ is only necessary to create closed arcs. Note that $\gamma()$ has the important property that it leaves the arc endpoints fixed. It is easy to show that the homeomorphism $A_n ~ \longleftrightarrow ~ \mathbb{S}^{2n}$ conjugates these 2 involutions. We have a commutative diagram: ```{tikz, tikz-ex, echo=FALSE, message=TRUE, scale=0.5, fig.align='center', fig.cap = "the involutions are conjugate", fig.ext='png', cache=TRUE} \usetikzlibrary{arrows} \begin{tikzpicture}[node distance=2cm, auto,>=latex', thin, scale=0.5] \node (P) {$A_n$}; \node (B) [right of=P] {$S^{2n}$}; \node (A) [below of=P] {$A_n$}; \node (C) [below of=B] {$S^{2n}$}; \draw[<->] (P) to node {} (B); \draw[->] (P) to node [swap] {$\gamma$} (A); \draw[<->] (A) to node [swap] {} (C); \draw[->] (B) to node {$\alpha$} (C); \end{tikzpicture} ``` If we identify pairs of points for both spaces with the equivalence relation $\sim$, we get an induced homeomorphism $A_n/\sim ~ \longleftrightarrow ~ \mathbb{S}^{2n}/\sim$. The latter space is real projective space $\RP^{2n}$. Since $\gamma$ leaves the arc endpoints fixed, we can view a point in $A_n/\sim$ as simply the endpoints of the arcs; this is justified in the next section.

# The Space $P_{2n}$ We define $P_{2n}$ to be the configuration space of $2n$ _or fewer and even_ number of points in the circle $\mathbb{S}^1$. So $P_2$ is the space of 2 points, $P_4$ is the space of 4 or 2 points, etc. We also define $P_0$ to be a single point. We have proper inclusions: \begin{equation} P_0 ~ \subset ~ P_2 ~ \subset ~ P_4 ~ \subset ~ P_6 ~ \subset ~ ... \end{equation} Given $2n$ distinct points in the circle, there are 2 sets of $n$ arcs that have these as endpoints. These 2 sets are complements of each other, which are identified under the above equivalence relation. Therefore $P_{2n}$ and $A_n / \sim$ are bijective as sets. We take the induced topology on $A_n / \sim$ and transfer it to $P_{2n}$. The important thing is that if 2 neighboring points of a configuration in $P_{2n}$ get close to each other, in the limit the point configuration converges to a configuration in $P_{2(n-1)}$ where the 2 points of the configuration "disappear". Depending on how the arcs are selected, either the arc between the points shrinks to nothing, or the gap between two arcs shrinks to nothing and the two arcs are combined. In either case the number of arcs is reduced by 1. We saw in the previous section that there is a homeomorphism $A_n / \sim ~ \longleftrightarrow ~ \RP^{2n}$, and so there is a homeomorphism: \begin{equation} P_{2n} ~ \longleftrightarrow ~ \RP^{2n} \end{equation} **SIDE NOTE:** In particular we have $P_2 ~ \leftrightarrow ~ \RP^2$. There is another configuration space of 2 points on the circle which is the cartesian product of two copies modulo the permutation of the points: $(\mathbb{S}^1 \times \mathbb{S}^1) / \sim$. This is given the quotient topology, so as 2 points converge to each other they become a single point. This configuration space is a Möebius band, with boundary being those single points. If the boundary is collapsed to a point, we get $P_2 ~ \leftrightarrow ~ \RP^2$.

# The Spaces $A_n^\pi$ and $P_{2n}^\pi$ What about odd dimensions ? It turns out we can add a constraint that makes an interesting homeomorphism. Call a configuration of $n$ arcs _balanced_ if and only they have total length $\pi$. Note that if a configuration is balanced then its complement under $\gamma$ is also balanced. Denote the subspace of balanced arc configurations by $A_n^\pi \subset A_n$. Viewed as points in $\partial Z_n ~ \leftrightarrow ~ \mathbb{S}^{2n}$ this corresponds to intersecting the boundary of $Z_n$ with the hyperplane $L = \pi$. The intersection is a sphere of one lower dimension: $\mathbb{S}^{2n-1}$. Similarly, call a configuration of $2n$ points _balanced_ if and only if the generated arcs are balanced. There are 2 ways to choose these arcs, but if one way has total length $\pi$ then so does the other. Denote the subspace of balanced point configurations by $P^\pi_{2n} \subset P_{2n}$. We have homeomorphisms \begin{equation} A_n^\pi ~ \longleftrightarrow ~ \mathbb{S}^{2n-1} \hspace{20pt} \text{and} \hspace{20pt} P_{2n}^\pi ~ \longleftrightarrow ~ \RP^{2n-1} \end{equation} In particular when $n=2$ we have \begin{equation} P_{4}^\pi ~ \longleftrightarrow ~ \RP^{3} ~ \longleftrightarrow ~ \SOthree \end{equation} The second homeomorphism is well-known and is defined using the standard mapping from unit quaternions to 3x3 rotation matrices. In the following animations we generate a loop of rotations around a fixed axis, map the 3x3 rotation matrices to balanced configurations of 4 or 2 points in the circle, and plot them. The loop of rotations are generated with this function: ```{r, echo=TRUE, message=FALSE} circleofrotations <- function( axis, count=72+1 ) { out = vector( count, mode='list' ) namevec = character( count ) for( i in 1:count ) { theta_deg = 360 * (i-1)/(count-1) theta = pi/180 * theta_deg # theta is in radians, starting at 0 out[[i]] = rotationaroundaxis( axis, theta ) namevec[i] = sprintf( "rotation around axis [%g,%g,%g]\ntheta=%g deg", axis[1], axis[2], axis[3], theta_deg ) } names(out) = namevec return( out ) } ``` **SIDE NOTE:** The above-mentioned configuration space for 3 points, using the quotient topology on $\mathbb{S}^1 {\times} \mathbb{S}^1 {\times} \mathbb{S}^1$, was shown to be homemorphic to $\mathbb{S}^3$ in @Bott1952.

# A Circle of Rotations around Axis [0,0,1] This animation start at the trivial identity matrix, which maps to the antipodal points $(0,\pm1)$. Then a circle of rotations around [0,0,1] are generated which return back to the identity again. The corresponding balanced configuration of points on the circle are plotted in blue. ```{r, echo=TRUE, message=FALSE, warning=TRUE, fig.cap='caption', fig.keep='last', fig.show='hide', cache=FALSE } circle = circleofrotations( c(0,0,1), count=72+1 ) gif_file = GIFfromrotationlist( circle, index=1, vpsize=c(480,480) ) ```
![circle of rotations around Axis [0,0,1]](`r gif_file`){width=80%}
```{r, echo=FALSE, message=TRUE, warning=TRUE } unlink( dirname(gif_file) ) ```

# A Circle of Rotations around Axis [0,1,0] This animation start at the trivial identity matrix, and then a circle of rotations around [0,1,0] are generated which return back to the identity again. The corresponding balanced configuration of points on the circle are plotted in blue. ```{r, echo=TRUE, message=FALSE, warning=TRUE, fig.cap='caption', fig.keep='last', fig.show='hide', cache=FALSE } circle = circleofrotations( c(0,1,0), count=72+1 ) gif_file = GIFfromrotationlist( circle, index=2, vpsize=c(480,480) ) ```
![circle of rotations around Axis [0,1,0]](`r gif_file`){width=80%}
```{r, echo=FALSE, message=TRUE, warning=TRUE } unlink( dirname(gif_file) ) ```

# A Circle of Rotations around Axis [1,0,0] This animation start at the trivial identity matrix, and then a circle of rotations around [1,0,0] are generated which return back to the identity again. The corresponding balanced configuration of points on the circle are plotted in blue. ```{r, echo=TRUE, message=FALSE, warning=TRUE, fig.cap='caption', fig.keep='last', fig.show='hide', cache=FALSE } circle = circleofrotations( c(1,0,0), count=72+1 ) gif_file = GIFfromrotationlist( circle, index=3, vpsize=c(480,480) ) ```
![circle of rotations around Axis [1,0,0]](`r gif_file`){width=80%}
```{r, echo=FALSE, message=TRUE, warning=TRUE } unlink( dirname(gif_file) ) ``` This case is different. There are only 2 antipodal points, and all these balanced point configurations are in $P_2^\pi \subset P_4^\pi$.

# A Circle of Rotations around a Random Axis This animation start at the trivial identity matrix, and then a random axis is generated, and then a loop of rotations around that axis is generated which return back to the identity again. The corresponding balanced configuration of points on the circle are plotted in blue. ```{r, echo=TRUE, message=FALSE, warning=TRUE, fig.cap='caption', fig.keep='last', fig.show='hide', cache=FALSE } set.seed(0) axis = rnorm(3) axis = axis / sqrt( sum(axis^2) ) circle = circleofrotations( axis, count=72+1 ) gif_file = GIFfromrotationlist( circle, index=4, vpsize=c(480,480) ) ```
![circle of rotations around Axis [1,0,0]](`r gif_file`){width=80%}
```{r, echo=FALSE, message=TRUE, warning=TRUE } unlink( dirname(gif_file) ) ```

# References


# Session Information This document was prepared `r format(Sys.Date(), "%a %b %d, %Y")` with the following configuration:
```{r, echo=FALSE, results='asis'}
options(old_opt)
sessionInfo()
```